/* ============================================================
   Litefeather WordPress theme styles
   Self-contained, no Tailwind required.
   ============================================================ */

:root {
  --color-primary: #1F2E88;
  --color-secondary: #D32027;
  --color-accent: #3385D7;
  --color-text: #161922;
  --color-text-light: #5F5F5F;
  --color-background: #FFFFFF;
  --color-background-alt: #F7F7F7;
  --color-dark: #101015;

  --color-brand-navy: #1F2E88;
  --color-brand-red: #D32027;
  --color-brand-sky: #3385D7;
  --color-accent-gold: #F2A341;
  --color-accent-mint: #34D399;
  --color-accent-plum: #7C3AED;
  --color-accent-coral: #FB7185;
  --color-whatsapp: #25D366;

  --font-heading: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Roboto", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;

  --shadow-card: 0 4px 16px rgba(31,46,136,0.06), 0 1px 3px rgba(31,46,136,0.04);
  --shadow-card-hover: 0 16px 48px rgba(31,46,136,0.12), 0 4px 12px rgba(31,46,136,0.06);
  --shadow-deep: 0 24px 64px rgba(16,16,21,0.18), 0 6px 16px rgba(16,16,21,0.10);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 999px;

  --container: 1280px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand-sky); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-brand-navy); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { padding-left: 0; list-style: none; margin: 0; }
p { margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0;
  color: var(--color-text);
  text-transform: none;
}
h1 { font-size: clamp(2.25rem, 4vw + 0.5rem, 4rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 2.5vw + 0.5rem, 2.75rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 1vw + 0.75rem, 1.5rem); font-weight: 600; line-height: 1.25; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }

::selection { background: var(--color-primary); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--color-background-alt); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  border: 2px solid var(--color-background-alt);
  border-radius: 999px;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.section {
  position: relative;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.section--alt { background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%); }
.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(51,133,215,0.30), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(211,32,39,0.18), transparent 55%),
    #0c0d18;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(31,46,136,0.08);
  color: var(--color-brand-navy);
  padding: 0.4rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-eyebrow--red { background: rgba(211,32,39,0.10); color: var(--color-secondary); }
.section-eyebrow--white { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(12px); }

.section-heading { font-family: var(--font-display); font-weight: 700; }
.section-intro { color: var(--color-text-light); font-size: 1.125rem; line-height: 1.7; }
.section--dark .section-intro { color: rgba(255,255,255,0.70); }

.section-head {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .section-heading { margin-top: 1rem; }
.section-head .section-intro { margin-top: 1.25rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn .icon { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn-primary {
  background: var(--color-brand-navy);
  color: #fff;
  box-shadow: 0 16px 40px rgba(31,46,136,0.30);
}
.btn-primary:hover { background: #172375; color: #fff; box-shadow: 0 20px 48px rgba(31,46,136,0.38); }

.btn-secondary {
  background: #fff;
  color: var(--color-brand-navy);
  border-color: rgba(31,46,136,0.15);
}
.btn-secondary:hover { border-color: rgba(31,46,136,0.30); color: var(--color-brand-navy); }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1ebc5a; color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,0.45); }

.btn-ghost-light {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.50); color: #fff; }

.btn-outline {
  background: #fff;
  color: var(--color-brand-navy);
  border-color: rgba(31,46,136,0.15);
}
.btn-outline:hover { background: var(--color-brand-navy); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--color-brand-navy);
  box-shadow: 0 16px 40px rgba(255,255,255,0.18);
}
.btn-light:hover { color: var(--color-brand-navy); box-shadow: 0 20px 48px rgba(255,255,255,0.28); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand-navy);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(31,46,136,0.15);
  background: #fff;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}
.btn-link:hover { background: var(--color-brand-navy); color: #fff; }
.btn-link--dark { color: rgba(255,255,255,0.80); border: 0; background: transparent; padding: 0.5rem; }
.btn-link--dark:hover { color: #fff; background: transparent; text-decoration: underline; }

/* ============================================================
   Site header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 20px rgba(31,46,136,0.06);
  border-bottom-color: rgba(31,46,136,0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 640px) { .site-header__inner { padding: 1rem 1.5rem; } }
@media (min-width: 1024px) { .site-header__inner { padding: 1rem 2rem; } }

.site-logo { display: inline-flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.site-logo img { height: 36px; width: auto; }
@media (min-width: 640px) { .site-logo img { height: 42px; } }

.site-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(22,25,34,0.80);
  border-radius: 999px;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--color-brand-navy); }
.site-nav a.is-active { color: var(--color-brand-navy); }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0.25rem;
  width: 1.5rem; height: 3px;
  margin-left: -0.75rem;
  border-radius: 999px;
  background: var(--color-brand-red);
}
.site-nav .menu, .site-nav ul { display: flex; gap: 0.25rem; align-items: center; }
.site-nav .sub-menu { display: none; } /* keep things simple, hide nested */

.site-header__cta { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .site-header__cta { display: flex; } }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31,46,136,0.15);
  color: var(--color-brand-navy);
  transition: all 0.2s ease;
  background: #fff;
}
.icon-btn:hover { background: var(--color-brand-navy); color: #fff; }
.icon-btn .icon { width: 1rem; height: 1rem; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31,46,136,0.15);
  color: var(--color-brand-navy);
  background: #fff;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(16,16,21,0.40);
  backdrop-filter: blur(4px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu {
  position: fixed; top: 0; right: 0;
  height: 100vh;
  width: 88%;
  max-width: 380px;
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-deep);
}
body.menu-open .mobile-menu-overlay { opacity: 1; pointer-events: auto; }
body.menu-open .mobile-menu { transform: translateX(0); }
body.menu-open { overflow: hidden; }

.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(31,46,136,0.06);
}
.mobile-menu__head img { height: 36px; }
.mobile-menu__nav { display: flex; flex-direction: column; padding: 1.25rem; gap: 0.25rem; }
.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-text);
  transition: background 0.2s ease;
}
.mobile-menu__nav a:hover { background: var(--color-background-alt); }
.mobile-menu__nav a.is-active { background: rgba(31,46,136,0.06); color: var(--color-brand-navy); font-weight: 600; }
.mobile-menu__cta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(31,46,136,0.06);
}

/* Header spacer */
.header-spacer { height: 64px; }
@media (min-width: 640px) { .header-spacer { height: 80px; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(51,133,215,0.45), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(211,32,39,0.30), transparent 60%),
    linear-gradient(135deg, #0a0a14 0%, #1F2E88 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero__inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .hero__inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: 2rem;
    padding-top: 6rem;
    padding-bottom: 8rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
.hero__eyebrow .icon { width: 14px; height: 14px; color: var(--color-accent-gold); }
.hero h1 { margin-top: 1.5rem; font-size: clamp(2.25rem, 5.6vw + 0.5rem, 5rem); }
.hero__sub {
  margin-top: 1.5rem;
  max-width: 640px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.hero__cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__trust .icon { width: 16px; height: 16px; color: var(--color-accent-mint); }
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(51,133,215,0.40), transparent 70%);
  border-radius: 40%;
  filter: blur(60px);
  z-index: -1;
}
.hero__visual svg { width: 100%; max-width: 480px; height: auto; }

/* Highlight gradient text */
.gradient-flame-text {
  background-image: linear-gradient(90deg, #F2A341 0%, #D32027 50%, #F2A341 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
  font-weight: 700;
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  position: relative;
  border-top: 1px solid rgba(31,46,136,0.06);
  border-bottom: 1px solid rgba(31,46,136,0.06);
  background: rgba(255,255,255,0.95);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  white-space: nowrap;
}
.marquee__item .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--color-accent-gold);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.5rem)); }
}

/* ============================================================
   Cards: services, why, pricing
   ============================================================ */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(31,46,136,0.08);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card h3 { font-size: 1.125rem; color: var(--color-text); }
.card p { margin-top: 0.75rem; color: var(--color-text-light); font-size: 0.95rem; line-height: 1.6; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(31,46,136,0.18);
}
.card__icon .icon { width: 24px; height: 24px; }

/* Why cards */
.why-card {
  position: relative;
  overflow: hidden;
}
.why-card__num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.10;
  line-height: 1;
}
.why-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-card__icon .icon { width: 24px; height: 24px; }

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  position: relative;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.pricing-card--highlighted {
  border-color: rgba(211,32,39,0.50);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 24px 80px rgba(211,32,39,0.25);
}
@media (min-width: 1024px) { .pricing-card--highlighted { transform: scale(1.04); } }
.pricing-card__badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(90deg, #D32027, #F2A341);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.pricing-card h3 { color: #fff; font-size: 1.125rem; }
.pricing-card__audience { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.pricing-card__price {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pricing-card__price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  font-weight: 700;
  background-image: linear-gradient(135deg, #FFFFFF 0%, #95A3D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.pricing-card--highlighted .pricing-card__price-amount {
  background-image: linear-gradient(135deg, #F2A341 0%, #FB7185 100%);
}
.pricing-card__period { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.pricing-card__excl { margin-top: 0.4rem; color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.pricing-card__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.pricing-card__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: var(--color-accent-mint);
  margin-top: 0.15rem;
}
.pricing-card--highlighted .pricing-card__check {
  background: rgba(211,32,39,0.30);
  color: var(--color-accent-gold);
}
.pricing-card__check .icon { width: 12px; height: 12px; }
.pricing-card__cta { margin-top: 2rem; }
.pricing-card__cta .btn { width: 100%; }

/* Trademark badge */
.trademark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(31,46,136,0.10);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
  box-shadow: var(--shadow-card);
}
.trademark-badge .dot { display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: var(--color-accent-gold); }

/* ============================================================
   Stats
   ============================================================ */
.stats {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(31,46,136,0.06);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw + 1rem, 4.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat__label {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

/* ============================================================
   Diensten detail (alternating rows)
   ============================================================ */
.dienst-row {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(31,46,136,0.06);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .dienst-row { grid-template-columns: 5fr 7fr; padding: 3rem; } }
.dienst-row--reverse .dienst-row__visual { order: -1; }
@media (min-width: 1024px) { .dienst-row--reverse .dienst-row__visual { order: 2; } }
.dienst-row__visual {
  background: linear-gradient(135deg, rgba(31,46,136,0.06), rgba(51,133,215,0.10));
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
}
.dienst-row__icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--color-brand-navy), var(--color-brand-sky));
  box-shadow: 0 16px 40px rgba(31,46,136,0.30);
}
.dienst-row__icon .icon { width: 48px; height: 48px; }
.dienst-row__content h3 { margin-bottom: 0.5rem; }
.dienst-row__audience {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-brand-navy);
  background: rgba(31,46,136,0.08);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.dienst-row__desc { color: var(--color-text-light); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; }
.dienst-row__bullets { display: flex; flex-direction: column; gap: 0.5rem; }
.dienst-row__bullets li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.95rem; color: var(--color-text);
}
.dienst-row__bullets li::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 6px; height: 6px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--color-brand-red);
}

/* Verzekeringen note callout */
.note-callout {
  background: linear-gradient(135deg, rgba(242,163,65,0.08), rgba(211,32,39,0.06));
  border: 1px solid rgba(242,163,65,0.30);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
}
.note-callout__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(242,163,65,0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  flex-shrink: 0;
}
.note-callout__content { color: var(--color-text); }
.note-callout__content strong { color: var(--color-secondary); }

/* ============================================================
   Tarieven page extras
   ============================================================ */
.tarieven-table {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(31,46,136,0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-collapse: collapse;
}
.tarieven-table th, .tarieven-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(31,46,136,0.06);
}
.tarieven-table tr:last-child td { border-bottom: 0; }
.tarieven-table th {
  background: var(--color-background-alt);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}
.tarieven-table td:last-child { text-align: right; font-weight: 600; color: var(--color-brand-navy); white-space: nowrap; }

.reassurance-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 768px) { .reassurance-grid { grid-template-columns: repeat(3, 1fr); } }
.reassurance-card {
  background: #fff;
  border: 1px solid rgba(31,46,136,0.06);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.reassurance-card h3 { color: var(--color-text); margin-bottom: 0.75rem; }
.reassurance-card p { color: var(--color-text-light); line-height: 1.7; }
.reassurance-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(31,46,136,0.08);
  color: var(--color-brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.reassurance-card__icon .icon { width: 24px; height: 24px; }

/* ============================================================
   Over ons
   ============================================================ */
.story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 5fr 7fr; } }
.story-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(51,133,215,0.30), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(211,32,39,0.18), transparent 60%),
    linear-gradient(135deg, #1F2E88, #3385D7);
  border-radius: 32px;
  padding: 3rem;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
}
.story-content p { font-size: 1.05rem; line-height: 1.8; color: var(--color-text-light); margin-bottom: 1.25rem; }
.story-content p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  text-align: left;
  background: #fff;
  border: 1px solid rgba(31,46,136,0.06);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.value-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--color-brand-navy), var(--color-brand-sky));
  color: #fff;
}
.value-card__icon .icon { width: 28px; height: 28px; }

.trademark-callout {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(31,46,136,0.04), rgba(211,32,39,0.04));
  border: 1px solid rgba(31,46,136,0.10);
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
}
.trademark-callout__seal {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: #fff;
  border: 6px solid var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-card-hover);
}
.trademark-callout__seal .icon { width: 36px; height: 36px; color: var(--color-brand-navy); }
.trademark-callout p { max-width: 640px; margin: 1rem auto 0; color: var(--color-text-light); line-height: 1.7; }

.stepper {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
  counter-reset: step;
}
@media (min-width: 768px) { .stepper { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: #fff;
  border: 1px solid rgba(31,46,136,0.06);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-brand-navy), var(--color-brand-sky));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.step h3 { margin-bottom: 0.75rem; }
.step p { color: var(--color-text-light); line-height: 1.7; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-channels {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 768px) { .contact-channels { grid-template-columns: repeat(3, 1fr); } }
.channel-card {
  background: #fff;
  border: 1px solid rgba(31,46,136,0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.channel-card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 1.25rem;
}
.channel-card__icon .icon { width: 28px; height: 28px; }
.channel-card--mail .channel-card__icon { background: linear-gradient(135deg, #1F2E88, #3385D7); }
.channel-card--phone .channel-card__icon { background: linear-gradient(135deg, #3385D7, #34D399); }
.channel-card--whatsapp .channel-card__icon { background: linear-gradient(135deg, #25D366, #1ebc5a); }
.channel-card h3 { margin-bottom: 0.5rem; }
.channel-card p { color: var(--color-text-light); margin-bottom: 1.25rem; font-size: 0.95rem; }
.channel-card__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; } }
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(31,46,136,0.06);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 3rem; } }
.contact-info-card {
  background: linear-gradient(135deg, #1F2E88, #3385D7);
  color: #fff;
  border-radius: 32px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}
.contact-info-card > * { position: relative; }
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255,255,255,0.90);
  font-size: 0.95rem;
}
.contact-info-list .icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--color-accent-gold);
  margin-top: 0.15rem;
}
.contact-info-list a { color: #fff; }
.contact-info-list a:hover { color: var(--color-accent-gold); }

.map-embed {
  margin-top: 3rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(31,46,136,0.06);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Forms */
.form-row { margin-bottom: 1.25rem; }
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid rgba(31,46,136,0.12);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: rgba(31,46,136,0.24); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(31,46,136,0.10);
}
.form-input[aria-invalid='true'], .form-select[aria-invalid='true'], .form-textarea[aria-invalid='true'] {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(211,32,39,0.10);
}
.form-textarea { min-height: 9rem; resize: vertical; line-height: 1.6; }
.form-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231F2E88' stroke-width='2'><path stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
  appearance: none;
}
.form-error {
  display: block;
  margin-top: 0.4rem;
  color: var(--color-secondary);
  font-size: 0.8rem;
}
.form-honeypot {
  position: absolute;
  left: -9999px; top: -9999px;
  height: 0; width: 0;
  opacity: 0;
}
.form-note {
  margin-top: 1rem;
  color: var(--color-text-light);
  font-size: 0.8rem;
  line-height: 1.6;
}
.form-status {
  display: none;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status.is-success {
  display: block;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.30);
  color: #047857;
}
.form-status.is-error {
  display: block;
  background: rgba(211,32,39,0.06);
  border: 1px solid rgba(211,32,39,0.30);
  color: var(--color-secondary);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(31,46,136,0.55), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(211,32,39,0.18), transparent 50%),
    #101015;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.30;
  pointer-events: none;
}
.site-footer__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1rem 2.5rem;
}
@media (min-width: 640px) { .site-footer__inner { padding: 5rem 1.5rem 2.5rem; } }
@media (min-width: 1024px) { .site-footer__inner { padding: 6rem 2rem 3rem; } }
.site-footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 4fr 2fr 2fr 4fr; gap: 2rem; } }
.site-footer h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 1.25rem;
}
.site-footer__brand p { margin-top: 1.25rem; max-width: 360px; color: rgba(255,255,255,0.70); font-size: 0.95rem; line-height: 1.7; }
.site-footer__logo {
  display: inline-flex;
  background: rgba(255,255,255,0.95);
  padding: 0.6rem;
  border-radius: 14px;
  box-shadow: var(--shadow-deep);
}
.site-footer__logo img { height: 36px; }
.site-footer ul.menu, .site-footer .footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer ul.menu li a, .site-footer .footer-links a { color: rgba(255,255,255,0.80); font-size: 0.9rem; transition: color 0.2s ease; }
.site-footer ul.menu li a:hover, .site-footer .footer-links a:hover { color: #fff; }
.site-footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.site-footer__contact a { color: rgba(255,255,255,0.85); font-size: 0.9rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.site-footer__contact a:hover { color: #fff; }
.site-footer__contact .icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.15rem; color: var(--color-brand-sky); }
.site-footer__contact .icon-wa { color: var(--color-whatsapp); }
.site-footer__contact .static {
  display: flex; gap: 0.75rem; align-items: flex-start;
  color: rgba(255,255,255,0.70); font-size: 0.9rem;
}
.site-footer__bottom {
  position: relative;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  align-items: flex-start;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* Sticky WhatsApp FAB */
.sticky-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 16px 40px rgba(37,211,102,0.40);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticky-whatsapp:hover { transform: scale(1.05); color: #fff; box-shadow: 0 20px 48px rgba(37,211,102,0.55); }
.sticky-whatsapp .icon { width: 28px; height: 28px; }

/* ============================================================
   Scroll progress
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-navy), var(--color-brand-sky), var(--color-secondary));
  z-index: 100;
  width: 0%;
  transition: width 0.05s linear;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes shine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.05); }
  66%      { transform: translate(-20px, 30px) scale(0.95); }
}
.blob-float { animation: blob-float 14s ease-in-out infinite; }

/* ============================================================
   WP-specific
   ============================================================ */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; margin-left: 0; margin-right: 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption .wp-caption-text { color: var(--color-text-light); font-size: 0.85rem; margin-top: 0.5rem; text-align: center; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }
.gallery-item img { border-radius: 14px; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-scroll-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Page hero (smaller, for sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(51,133,215,0.45), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(211,32,39,0.30), transparent 60%),
    linear-gradient(135deg, #0a0a14 0%, #1F2E88 100%);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4rem);
}
.page-hero__intro {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Final CTA section
   ============================================================ */
.final-cta {
  text-align: center;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 120%;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(51,133,215,0.10), transparent 60%);
  pointer-events: none;
}
.final-cta__inner { position: relative; max-width: 720px; margin: 0 auto; padding: 0 1rem; }
.final-cta h2 { margin-top: 1.5rem; }
.final-cta__intro { margin-top: 1.5rem; color: var(--color-text-light); font-size: 1.125rem; line-height: 1.7; }
.final-cta__cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
