@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Fraunces:ital,wght@0,700;0,900;1,700&display=swap');

/* ============================================================
   LOGLY — Complete Stylesheet
   Class convention: semantic kebab-case (component__element--modifier)
   Layout: CSS Grid primary, Flexbox secondary
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Primary gradient: coral (#FF4E18 ≈ hue 18°) → violet */
  --coral:       #FF4E18;
  --coral-light: #FF7145;
  --violet:      #8B2FC9;
  --violet-dark: #6A1FA0;
  --teal:        #00C9B1;
  --teal-dark:   #00A896;
  --navy:        #0F1D35;
  --navy-mid:    #1E3054;
  --warm-white:  #FDFAF7;
  --off-white:   #F5F1EC;
  --border:      #E8E2DA;
  --text-body:   #2C3E56;
  --text-muted:  #6B7A8F;
  --text-light:  #9AAABB;
  --white:       #FFFFFF;

  /* Gradient */
  --grad-primary:  linear-gradient(135deg, var(--coral) 0%, #D93699 50%, var(--violet) 100%);
  --grad-soft:     linear-gradient(135deg, #FFF1EC 0%, #F3E8FF 100%);
  --grad-teal:     linear-gradient(135deg, var(--teal) 0%, #0097E6 100%);

  /* Spacing scale (base-8) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(15,29,53,.06), 0 1px 2px rgba(15,29,53,.04);
  --sh-sm:  0 4px 12px rgba(15,29,53,.08), 0 2px 6px rgba(15,29,53,.05);
  --sh-md:  0 8px 24px rgba(15,29,53,.10), 0 4px 10px rgba(15,29,53,.06);
  --sh-lg:  0 16px 48px rgba(15,29,53,.12), 0 6px 16px rgba(15,29,53,.07);
  --sh-coral: 0 8px 28px rgba(255,78,24,.30);
  --sh-teal:  0 8px 24px rgba(0,201,177,.30);

  /* Typography */
  --font-sans:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif:  'Fraunces', Georgia, serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 150ms var(--ease-out);
  --t-med:  250ms var(--ease-out);
  --t-slow: 400ms var(--ease-out);
}

/* ── Base ───────────────────────────────────────────────────── */
html, body {
  background-color: var(--warm-white);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Container ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.wrap--narrow {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.wrap--wide {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem);   font-weight: 700; font-family: var(--font-sans); }
h5 { font-size: 1rem; font-weight: 700; font-family: var(--font-sans); }
h6 { font-size: 0.875rem; font-weight: 600; font-family: var(--font-sans); }

p { max-width: 68ch; line-height: 1.7; }
p + p { margin-top: var(--sp-4); }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  max-width: 60ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: linear-gradient(135deg, #FFF1EC, #FFE4DC);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  border: 1px solid rgba(255,78,24,.18);
  margin-bottom: var(--sp-5);
}

.eyebrow--teal {
  color: var(--teal-dark);
  background: linear-gradient(135deg, #E0FBF8, #C5F5F0);
  border-color: rgba(0,201,177,.2);
}

.eyebrow--violet {
  color: var(--violet);
  background: linear-gradient(135deg, #F3E8FF, #EDD9FF);
  border-color: rgba(139,47,201,.18);
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-light-col { color: var(--text-light); }

/* ── Links ──────────────────────────────────────────────────── */
a.link {
  color: var(--coral);
  font-weight: 600;
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-color: rgba(255,78,24,.3);
  transition: text-decoration-color var(--t-fast), color var(--t-fast);
}
a.link:hover {
  color: var(--violet);
  text-decoration-color: rgba(139,47,201,.5);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.8em 1.75em;
  border-radius: var(--r-full);
  transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med), opacity var(--t-fast);
  white-space: nowrap;
  line-height: 1;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--sh-coral);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(255,78,24,.38);
}
.btn--primary:active { transform: translateY(0) scale(0.99); }

.btn--teal {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: var(--sh-teal);
}
.btn--teal:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,201,177,.38);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
  box-shadow: var(--sh-xs);
}
.btn--outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255,78,24,.04);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 0.9em 2.2em;
}

.btn--sm {
  font-size: 0.82rem;
  padding: 0.6em 1.3em;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ── Two-Row Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  box-shadow: 0 1px 0 var(--border);
}

.header-top {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: 0.78rem;
  font-weight: 500;
  padding: var(--sp-2) 0;
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.header-top__left {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.header-top__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.header-top__item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: var(--teal);
}

.header-top__right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.header-top__link {
  color: rgba(255,255,255,.7);
  font-weight: 600;
  transition: color var(--t-fast);
}
.header-top__link:hover { color: var(--teal); }

.header-main {
  padding: var(--sp-4) 0;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-coral);
  flex-shrink: 0;
}

.brand__mark svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand__name span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.primary-nav__link {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.primary-nav__link:hover {
  color: var(--coral);
  background: rgba(255,78,24,.06);
}
.primary-nav__link--active {
  color: var(--coral);
  background: rgba(255,78,24,.08);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  background: var(--off-white);
  border: 1px solid var(--border);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: var(--sp-5) 0;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.mobile-nav__link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-nav__link:hover {
  background: var(--off-white);
  color: var(--coral);
}

.mobile-nav__footer {
  margin-top: var(--sp-5);
  padding: var(--sp-5) clamp(1.25rem, 5vw, 3rem) 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: var(--sp-20);
  margin-top: var(--sp-24);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer-brand__mark {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand__mark svg { width: 20px; height: 20px; fill: var(--white); }

.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer-brand__tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-5);
}

.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 30ch;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer-social__link:hover {
  background: var(--coral);
  transform: translateY(-2px);
}
.footer-social__link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.8); }

.footer-col__heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-col__link:hover {
  color: var(--teal);
  padding-left: var(--sp-2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
}

.footer-bottom__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom__links {
  display: flex;
  gap: var(--sp-5);
}

.footer-bottom__link {
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
  transition: color var(--t-fast);
}
.footer-bottom__link:hover { color: rgba(255,255,255,.7); }

/* Footer gradient bar */
.footer-gradient-bar {
  height: 4px;
  background: var(--grad-primary);
  margin-bottom: 0;
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--alt { background: var(--off-white); }
.section--dark {
  background: var(--navy-mid);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section--grad {
  background: var(--grad-primary);
  color: var(--white);
}
.section--grad h1,
.section--grad h2,
.section--grad h3,
.section--grad h4 { color: var(--white); }

.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header--center {
  text-align: center;
}
.section__header--center .lead {
  margin-inline: auto;
}
.section__header--center .eyebrow {
  margin-inline: auto;
}

.section__title { margin-bottom: var(--sp-4); }
.section__lead  { margin-bottom: 0; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero-section {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(139,47,201,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(255,78,24,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { margin-bottom: var(--sp-6); }
.hero-content .lead { margin-bottom: var(--sp-8); color: var(--text-muted); }

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
  background: var(--grad-soft);
}

.hero-image__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image__badge {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-image__badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--grad-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-image__badge-icon svg { width: 18px; height: 18px; fill: var(--white); }

.hero-image__badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.hero-image__badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}

.hero-trust__avatars {
  display: flex;
}

.hero-trust__avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  border: 2.5px solid var(--warm-white);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: -8px;
  overflow: hidden;
}

.hero-trust__avatar:first-child { margin-left: 0; }

.hero-trust__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-trust__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust__text strong {
  color: var(--navy);
  font-weight: 700;
}

.hero-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-1);
}

.hero-stars svg {
  width: 13px;
  height: 13px;
  fill: #FFBC11;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(255,78,24,.2);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.card__icon--coral { background: linear-gradient(135deg, #FFF1EC, #FFE0D4); }
.card__icon--teal  { background: linear-gradient(135deg, #E0FBF8, #C5F5F0); }
.card__icon--violet{ background: linear-gradient(135deg, #F3E8FF, #EDD9FF); }
.card__icon--navy  { background: linear-gradient(135deg, #E8EEF6, #D4DFED); }

.card__icon svg { width: 26px; height: 26px; }
.card__icon--coral svg { fill: var(--coral); }
.card__icon--teal  svg { fill: var(--teal-dark); }
.card__icon--violet svg { fill: var(--violet); }
.card__icon--navy  svg { fill: var(--navy-mid); }

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  font-family: var(--font-sans);
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  margin-top: var(--sp-4);
  transition: gap var(--t-fast), color var(--t-fast);
}
.card__link:hover { color: var(--violet); gap: var(--sp-3); }
.card__link svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Stats Row ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.stat-item {
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
}

.stat-item--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
  display: block;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.stat-item--dark .stat-label { color: rgba(255,255,255,.55); }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--grad-primary);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-coral);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
  pointer-events: none;
}

.cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.15);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: var(--sp-5);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.cta-band .lead {
  color: rgba(255,255,255,.82);
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

/* ── CTA Section wrapper ─────────────────────────────────────── */
.section--cta {
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 780px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item:hover { border-color: rgba(255,78,24,.25); box-shadow: var(--sh-sm); }

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  transition: color var(--t-fast);
}
.faq-item__question:hover { color: var(--coral); }

.faq-item__icon {
  width: 22px;
  height: 22px;
  border-radius: var(--r-full);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-med);
}
.faq-item__icon svg { width: 12px; height: 12px; fill: var(--coral); }

.faq-item.is-open .faq-item__icon {
  background: var(--coral);
  transform: rotate(45deg);
}
.faq-item.is-open .faq-item__icon svg { fill: var(--white); }

.faq-item__answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.is-open .faq-item__answer { display: block; }

/* ── Content Section ─────────────────────────────────────────── */
.content-section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: var(--sp-8);
}

.content-section__body--single { grid-template-columns: 1fr; max-width: 72ch; }

.content-section__text p { color: var(--text-muted); }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75em 1em;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--font-sans);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,78,24,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }

.form-textarea { resize: vertical; min-height: 120px; }

/* Search bar */
.search-bar {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--sp-2);
  box-shadow: var(--sh-md);
  align-items: center;
  max-width: 560px;
}

.search-bar__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  font-family: var(--font-sans);
}
.search-bar__input::placeholder { color: var(--text-light); }

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin-block: clamp(2rem, 4vw, 3.5rem);
}

/* ── Utility ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mt-auto { margin-top: auto; }
.gap-2   { gap: var(--sp-2); }
.gap-4   { gap: var(--sp-4); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand__desc { max-width: 50ch; }

  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn--outline { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .hero-image { order: -1; }

  .content-section__body {
    grid-template-columns: 1fr;
  }

  .header-top__left { display: none; }
}

@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-band { border-radius: var(--r-lg); }
  .search-bar { border-radius: var(--r-lg); flex-direction: column; }
  .search-bar__input { width: 100%; }
  .header-top__right { display: none; }
} body{margin:0} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} html{-webkit-text-size-adjust:100%} 