/* ==========================================================================
   Marketing Sec — core stylesheet (light theme)
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --bg:            #ffffff;
  --bg-raised:     #f7f9fb;
  --bg-card:       #ffffff;
  --bg-card-hover: #f7f9fb;

  /* Dark panel used behind transparent artwork that is itself near-white
     (the globe, the client mark in the case study). Without it those images
     disappear against the page. */
  --panel:         #0d1117;

  --line:          #e5e9ef;
  --line-strong:   #d4dae3;

  --text:          #0d1117;
  --text-muted:    #4b5563;
  --text-dim:      #6b7280;

  /* Brand green. --accent is for graphics and large display text (3.4:1 on
     white — passes AA for large text and UI). --accent-deep is the minimum
     that passes AA for normal-size text (5.2:1), so all small green text and
     any button fill uses it. */
  --accent:        #37a000;
  --accent-deep:   #2b7d00;
  --accent-darker: #216100;
  --accent-tint:   #f1f8ec;
  --accent-glow:   rgba(55, 160, 0, 0.10);

  --radius:        16px;
  --radius-lg:     24px;
  --radius-pill:   999px;

  --shell:         1200px;
  --gutter:        clamp(20px, 5vw, 48px);
  --section-y:     clamp(72px, 10vw, 128px);

  --font-body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display:  "Space Grotesk", var(--font-body);

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm:     0 1px 2px rgba(13, 17, 23, 0.05), 0 1px 3px rgba(13, 17, 23, 0.04);
  --shadow-md:     0 4px 12px rgba(13, 17, 23, 0.05), 0 12px 32px rgba(13, 17, 23, 0.06);
  --shadow-lg:     0 24px 70px rgba(13, 17, 23, 0.10);
}

/* --- Reset ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; padding: 0; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Typography ----------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
h5 { font-size: 1.05rem; letter-spacing: -0.01em; }

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

strong { color: var(--text); font-weight: 600; }

/* Only ever used on large display text, where --accent clears AA. */
.accent { color: var(--accent); }

/* --- Layout --------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

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

.section--hairline { border-top: 1px solid var(--line); }

.section-head {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 68px);
  text-align: center;
}

.section-head p { margin-top: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 15px;
  border: 1px solid #dcebd2;
  border-radius: var(--radius-pill);
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

/* --- Buttons -------------------------------------------------------------- */
/* One line of text, restrained corners, no coloured halo. Buttons in a pair
   share padding and font-size so they land on identical heights; --btn-h keeps
   that explicit for the ghost variant, whose 1px border would otherwise make it
   2px taller than the primary. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  height: 52px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background-color 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease);
}

.btn:hover { transform: translateY(-1px); }

.btn:active { transform: translateY(0); }

/* Solid rather than a gradient: the light end of the old gradient could not
   carry white text at AA. */
.btn--primary {
  background: var(--accent-deep);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
  background: var(--accent-darker);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn--ghost:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
  background: var(--accent-tint);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.btn--lg { height: 58px; padding: 0 34px; font-size: 1.02rem; }

.btn--block { width: 100%; }

/* Urgency lives under the button, not inside it. --text-dim only reached 4.46:1
   against the CTA band's tint, so this uses the muted tone instead. */
.btn-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hero__actions + .btn-note,
.cta-band .btn-note { text-align: center; }

/* --- Header --------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.header.is-stuck {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-deep);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
}

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

.nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav a[aria-current="page"] { color: var(--text); }

/* The nav carries its own CTA for the mobile drawer; on desktop the header
   CTA outside the nav is the one that shows. */
.nav .btn { display: none; }

/* `.nav a` outranks `.btn--primary` on specificity, so the drawer CTA needs its
   button colour restated or it inherits the muted link grey. */
.nav a.btn--primary { color: #ffffff; }

.header__cta { display: inline-flex; flex: 0 0 auto; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #ffffff;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  transition: background-color 0.2s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header__cta { display: none; }

  .nav {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 28px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
                visibility 0.25s var(--ease);
  }

  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav .btn { display: inline-flex; margin-top: 20px; border-bottom: 0; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(64px, 9vw, 108px) var(--section-y);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
  opacity: 0.9;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 { text-transform: uppercase; }

.hero__lede {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

/* --- Social proof cluster ------------------------------------------------- */
.proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.proof__avatars { display: flex; }

.proof__avatars img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  background: var(--bg-raised);
  box-shadow: var(--shadow-sm);
}

.proof__avatars img + img { margin-left: -14px; }

.proof__copy { text-align: left; }

.proof__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
}

.proof__copy p { font-size: 0.84rem; color: var(--text-dim); }

/* --- Logo marquee --------------------------------------------------------- */
/* One row, one tone, one rhythm. The logos are dark artwork on transparency,
   so they read as soft grey here and come up to full colour on hover. */
.logos {
  padding-block: clamp(44px, 6vw, 64px);
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.logos__label {
  margin-bottom: 28px;
  color: var(--text-dim);
  font-size: 0.84rem;
  text-align: center;
}

.marquee {
  position: relative;
  /* Soft fade so logos enter and leave instead of being cut off. */
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

/* The sources are trimmed to their artwork (see assets/logos), so a fixed
   height now sizes the actual mark rather than a square of empty padding.
   max-width keeps the widest wordmarks (5.5:1) from dominating the row;
   object-fit stops that clamp from distorting them. */
.marquee__track img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.marquee__track img:hover { opacity: 1; filter: grayscale(0); }

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

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}

/* --- Split (copy + visual) ------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split__copy p + p { margin-top: 16px; }

.split__copy .btn { margin-top: 32px; }

/* Dark media well — see --panel. */
.split__visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(55, 160, 0, 0.18) 0%, transparent 65%),
    var(--panel);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* Globe: square well holding the static image, with the cobe canvas fading in
   over it once WebGL is confirmed working. */
.globe {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 100%;
}

.globe canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  contain: layout paint size;
}

.globe img { width: 86%; height: auto; }

/* --- Feature grid --------------------------------------------------------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .grid--2,
  .grid--4 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid #dcebd2;
  border-radius: 13px;
  background: var(--accent-tint);
}

.card__icon svg { width: 26px; height: 26px; }

.card h5 { margin-bottom: 10px; }

.card p { font-size: 0.94rem; }

/* --- Stats ---------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stat {
  padding: 40px 28px;
  background: var(--bg-card);
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text) 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat h5 {
  margin-top: 14px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* --- Services ------------------------------------------------------------- */
.service {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--accent-tint) 0%, #ffffff 42%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.service:hover {
  transform: translateY(-5px);
  border-color: #bcdda6;
  box-shadow: var(--shadow-md);
}

.service__num {
  margin-bottom: 26px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.service h3 { margin-bottom: 12px; }

.service p { flex: 1; margin-bottom: 26px; font-size: 0.95rem; }

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
}

.service__link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  transition: transform 0.25s var(--ease);
}

.service:hover .service__link svg { transform: translateX(5px); }

/* --- Pricing -------------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

@media (max-width: 980px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.plan:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }

.plan--featured {
  border-color: #bcdda6;
  background:
    linear-gradient(180deg, var(--accent-tint) 0%, #ffffff 36%);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 981px) { .plan--featured { transform: scale(1.035); } }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent-deep);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* These icons are black line-art on an opaque white background, so they sit
   flush on the card with no plate behind them. */
.plan__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.plan h3 { margin-bottom: 6px; }

.plan__tagline { font-size: 0.88rem; color: var(--text-dim); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 22px 0 28px;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.plan__currency { font-size: 1.35rem; font-weight: 600; color: var(--text-muted); }

.plan__amount { font-size: clamp(2.4rem, 4vw, 3.1rem); font-weight: 700; line-height: 1; }

.plan__period { font-size: 0.92rem; font-weight: 500; color: var(--text-dim); }

.plan__features {
  display: grid;
  gap: 13px;
  margin-bottom: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.plan__features svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  fill: var(--accent);
}

.plan .btn { margin-top: auto; }

/* --- Case study ----------------------------------------------------------- */
.case {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}

@media (max-width: 860px) { .case { grid-template-columns: 1fr; } }

/* Dark media well — see --panel. */
.case__media {
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(55, 160, 0, 0.18) 0%, transparent 65%),
    var(--panel);
}

.case__results {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.case__results li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.case__results svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  fill: var(--accent);
}

.case__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.metric {
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-raised);
}

.metric__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: -0.03em;
}

.metric__label {
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Lead magnet ---------------------------------------------------------- */
.magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 860px) { .magnet { grid-template-columns: 1fr; } }

.magnet__list { display: grid; gap: 14px; margin: 26px 0 34px; }

.magnet__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.magnet__list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  fill: var(--accent);
}

.magnet__cover {
  filter: drop-shadow(0 24px 44px rgba(13, 17, 23, 0.22));
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-md); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }

.faq__body { padding: 0 26px 24px; }

.faq__body p { font-size: 0.96rem; }

/* --- Final CTA ------------------------------------------------------------ */
.cta-band {
  position: relative;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px);
  border: 1px solid #dcebd2;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(55, 160, 0, 0.14) 0%, transparent 62%),
    var(--accent-tint);
  text-align: center;
  overflow: hidden;
}

.cta-band h2 { max-width: 700px; margin-inline: auto; }

.cta-band p { max-width: 540px; margin: 18px auto 0; }

.cta-band .btn { margin-top: 34px; }

/* --- Footer --------------------------------------------------------------- */
.footer {
  padding-block: clamp(56px, 7vw, 80px) 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-raised);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 44px;
  padding-bottom: 48px;
}

@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand p {
  max-width: 320px;
  margin-top: 16px;
  font-size: 0.92rem;
}

.footer__col h5 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer__col li + li { margin-top: 11px; }

.footer__col a {
  color: var(--text-muted);
  font-size: 0.93rem;
  transition: color 0.2s var(--ease);
}

.footer__col a:hover { color: var(--accent-deep); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --- Scroll reveal -------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}
