:root {
  --primary: #0b8ec9;
  --primary-dark: #00588a;
  --primary-light: #e8f6fc;
  --accent: #ea580c;
  --accent-soft: #fff4e6;
  --success: #059669;
  --bg: #ffffff;
  --bg-muted: #f4f7fb;
  --text: #111827;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --header-height: 76px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 48px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-dark);
}

.brand-text span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: #334155;
  margin-left: 18px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.15s ease;
}

nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white !important;
  margin-left: 0 !important;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: white !important;
}

.language-toggle {
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: white;
  transition: all 0.15s ease;
  font-size: 13px;
  white-space: nowrap;
}

.language-toggle:hover,
.language-toggle.active {
  color: white;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero {
  min-height: auto;
  background:
    radial-gradient(circle at top right, rgba(11, 142, 201, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  display: block;
  text-align: left;
  padding: calc(var(--header-height) + 48px) 48px 72px;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 560px;
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-tagline {
  font-size: 16px;
  color: #475569;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-features {
  display: flex;
  gap: 28px;
  margin: 0 0 32px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  min-width: auto;
}

.feature span:first-child {
  font-size: 24px;
}

.feature span:last-child {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 14px;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.hero-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.hero-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-align: left;
}

.hero-checklist {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #334155;
}

.hero-checklist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d1fae5;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.button.primary {
  background-color: var(--primary);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
  text-transform: none;
  border: none;
  font-size: 15px;
}

.button.primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button.secondary {
  background-color: white;
  color: var(--primary-dark);
  padding: 14px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s ease;
  text-transform: none;
  font-size: 15px;
}

.button.secondary:hover {
  background-color: var(--bg-muted);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.button.accent {
  background: var(--accent);
  color: white;
}

.button.accent:hover {
  background: #c2410c;
}

.alert-banner {
  background: var(--accent-soft);
  color: var(--text);
  padding: 28px 48px;
  text-align: center;
  border-top: 1px solid #fde6c8;
  border-bottom: 1px solid #fde6c8;
}

.alert-banner h2 {
  color: var(--text);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.alert-banner p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.alert-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

section {
  padding: 88px 48px;
  text-align: center;
}

section.section-muted {
  background-color: var(--bg-muted);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

section p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
  margin-top: 16px;
  text-align: left;
}

.about-text {
  text-align: left;
}

.about-intro {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text);
}

.about-text h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin: 28px 0 12px;
  font-weight: 700;
}

.about-text ul {
  margin: 0 0 20px;
  padding-left: 22px;
  line-height: 1.8;
  color: #334155;
}

.about-text p {
  margin: 0 0 16px;
  text-align: left;
  max-width: none;
  color: #334155;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  text-align: left;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 800;
}

.stat p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.image-placeholder {
  width: 100%;
  min-height: 360px;
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
  padding: 32px;
}

.image-placeholder span {
  font-size: 72px;
  margin-bottom: 16px;
}

.image-placeholder p {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: white;
}

.leadership-grid {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.leader-card {
  display: flex;
  gap: 28px;
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  max-width: 920px;
  text-align: left;
  align-items: flex-start;
  border: 1px solid var(--border);
}

.leader-avatar {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1px;
}

.leader-info h3 {
  color: var(--text);
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 800;
}

.leader-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px !important;
  margin-bottom: 16px !important;
}

.leader-bio {
  color: #475569;
  line-height: 1.8;
  font-size: 15px !important;
  margin: 0 0 18px 0 !important;
  max-width: none !important;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leader-tags span {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.secureguard-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.secureguard-feature {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.secureguard-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.secureguard-feature h3 {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.secureguard-feature p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
  text-align: left;
}

.button {
  display: inline-block;
  margin-top: 0;
  padding: 12px 20px;
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-transform: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.product-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
}

.product-cta .button {
  width: auto;
  max-width: none;
}

.button:hover {
  background-color: var(--primary-dark);
}

.platform-diagram {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  color: var(--primary-dark);
}

.platform-diagram .title {
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}

.platform-diagram .subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.platform-diagram .divider {
  margin: 16px 0;
  color: #cbd5e1;
}

.platform-columns {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.platform-columns strong {
  display: block;
  font-size: 16px;
  color: var(--text);
}

.platform-columns small {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 6px;
}

.trust-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.trust-card h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.testimonial-card {
  border-left: 4px solid var(--primary);
}

.testimonial-content {
  font-style: italic;
  color: #334155;
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 15px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.testimonial-location {
  color: var(--text-muted);
  font-size: 13px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 72px 48px;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.cta-section .button.primary {
  background: white;
  color: var(--primary-dark);
}

.cta-section .button.primary:hover {
  background: #f8fafc;
}

#contact {
  background: var(--bg-muted);
}

.contact-desc {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
}

footer {
  background-color: var(--bg-muted);
  padding: 56px 48px 24px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  text-align: left;
}

.footer-column h3 {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  text-align: center;
  margin-bottom: 24px;
}

.footer-section h3 {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.15s ease;
  background-color: white;
  border: 1px solid var(--border);
  font-size: 14px;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.social-link span {
  font-size: 18px;
}

.social-link.email:hover { background-color: #ea4335; color: white; border-color: #ea4335; }
.social-link.whatsapp:hover { background-color: #25D366; color: white; border-color: #25D366; }
.social-link.telegram:hover { background-color: #0088cc; color: white; border-color: #0088cc; }
.social-link.facebook:hover { background-color: #1877f2; color: white; border-color: #1877f2; }
.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-color: transparent;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--primary-dark);
  text-decoration: none;
}

.report-actions {
  margin-top: 28px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.report-actions .button {
  display: inline-block;
  margin-bottom: 16px;
}

.report-help {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.report-help a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.report-help a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  text-decoration: none;
}

.button-container {
  text-align: center;
  margin-top: 32px;
}

.subsection-title {
  color: var(--primary-dark);
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 992px) {
  .hero-grid,
  .about-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    text-align: center;
  }

  .hero-buttons,
  .hero-features,
  .hero-stats {
    justify-content: center;
  }

  .feature,
  .product-cta,
  .secureguard-feature,
  .about-text,
  .about-text p,
  .stat p {
    text-align: center;
    align-items: center;
  }

  .product-cta {
    align-items: center;
  }
}

.services-page {
  background: var(--bg-muted);
}

.services-page .site-header {
  position: sticky;
}

.services-page .back-link {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.services-page .back-link:hover {
  color: var(--primary);
}

.services-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.services-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.02em;
}

.services-page .intro-text {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.services-page .service-category {
  margin-bottom: 56px;
}

.services-page .service-category h2 {
  color: var(--text);
  font-size: 1.75rem;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 800;
  border-bottom: none;
  padding-bottom: 0;
}

.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.services-page .service-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.services-page .service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.services-page .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.services-page .service-card h3 {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
}

.services-page .service-card p,
.services-page .service-card li {
  color: var(--text-muted);
  font-size: 15px;
}

.services-page .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.services-page .service-features li {
  padding: 8px 0 8px 22px;
  position: relative;
}

.services-page .service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.services-page .pricing-info {
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}

.services-page .pricing-info h4 {
  color: var(--primary-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.services-page .pricing-info p {
  font-size: 13px;
  margin: 0;
}

.services-page .service-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}

.services-page .service-cta a:hover {
  background: var(--primary-dark);
}

.services-page .contact-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.services-page .contact-section h2 {
  color: var(--text);
  margin-bottom: 12px;
}

.services-page .contact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.services-page .contact-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  background: var(--primary);
  color: white;
}

.services-page .contact-buttons a:last-child {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.services-page footer {
  margin-top: 0;
}

@media (max-width: 768px) {

  .brand-text span {
    display: none;
  }

  section,
  .hero,
  .alert-banner,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 48px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leader-tags {
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .button-container a {
    margin-left: 0 !important;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
