/* ============================================================
   VOO MARKETING — Landing page
   Design system: deep brand blue + lime accent + infinity motif
   ============================================================ */

:root {
  /* Brand blues (sampled from logo gradient) */
  --navy:      #0a1640;
  --blue-950:  #081134;
  --blue-900:  #0c1c54;
  --blue-800:  #122a76;
  --blue-700:  #1633a3;
  --blue-600:  #2453d6;
  --blue-500:  #3a6cf0;
  --blue-400:  #5b87f7;
  --brand-grad: linear-gradient(135deg, #081134 0%, #122a76 45%, #2b5ee6 100%);
  --brand-grad-soft: linear-gradient(135deg, #0c1c54 0%, #1a3aa8 100%);

  /* Accent — lime/spring green (growth, ascent) */
  --accent:     #b4f23d;
  --accent-600: #9fe024;
  --accent-700: #82bd16;
  --accent-ink: #0a1640;

  /* Light neutrals (cool) */
  --bg:        #ffffff;
  --bg-soft:   #f4f7fc;
  --bg-soft2:  #eaf0fb;
  --line:      #e1e9f6;
  --ink:       #0b1638;
  --body:      #4a5570;
  --muted:     #828ea9;

  /* On-dark */
  --on-dark:        #ffffff;
  --on-dark-soft:   #c3cff0;
  --on-dark-muted:  #8294c4;
  --card-dark:      rgba(255,255,255,0.05);
  --card-dark-line: rgba(255,255,255,0.12);

  /* Type */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(11,22,56,.06);
  --shadow-md: 0 14px 40px rgba(11,22,56,.10);
  --shadow-lg: 0 30px 80px rgba(11,22,56,.16);
  --shadow-blue: 0 22px 60px rgba(36,83,214,.30);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: clamp(72px, 9vw, 140px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 100px); }

.bg-soft  { background: var(--bg-soft); }
.bg-dark  { background: var(--blue-950); color: var(--on-dark); }
.bg-grad  { background: var(--brand-grad); color: var(--on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.bg-grad h1, .bg-grad h2, .bg-grad h3, .bg-grad h4 { color: var(--on-dark); }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue-600);
}
.bg-dark .eyebrow, .bg-grad .eyebrow { color: var(--accent); }
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
}

.h-display { font-size: clamp(2.3rem, 4.8vw, 4rem); line-height: 1.04; }
.h-1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h-2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.lead {
  font-size: clamp(1.06rem, 1.7vw, 1.32rem);
  line-height: 1.6; color: var(--body); font-weight: 400;
}
.bg-dark .lead, .bg-grad .lead { color: var(--on-dark-soft); }
.accent-text { color: var(--accent-700); }
.bg-dark .accent-text, .bg-grad .accent-text { color: var(--accent); }

.section-head { max-width: 760px; }
.section-head .h-1 { margin-top: 18px; }
.section-head .lead { margin-top: 20px; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 13px; border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--card-dark-line);
  color: var(--on-dark); font-weight: 600; font-size: .86rem;
  letter-spacing: .01em; backdrop-filter: blur(8px);
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 24%, transparent);
}
.badge--light {
  background: var(--bg); border-color: var(--line); color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 16px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 32%, transparent); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px color-mix(in srgb, var(--accent) 44%, transparent); }
.btn--blue { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-blue); }
.btn--blue:hover { transform: translateY(-3px); background: var(--blue-500); }
.btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-dark:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn--ghost-light { background: #fff; color: var(--blue-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost-light:hover { border-color: var(--blue-400); transform: translateY(-3px); }
.btn--lg { padding: 19px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.microcopy { font-size: .92rem; color: var(--muted); line-height: 1.5; }
.bg-dark .microcopy, .bg-grad .microcopy { color: var(--on-dark-muted); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s, border-color .35s;
  padding-block: 18px; border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8,17,52,.82); backdrop-filter: blur(16px) saturate(140%);
  padding-block: 12px; border-bottom-color: rgba(255,255,255,.08);
}
.header__inner { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  color: var(--on-dark-soft); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: 9px 14px; border-radius: 100px; transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0; transition: .3s; }
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--brand-grad);
  color: var(--on-dark);
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: 0;
}
.hero__glow {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(80px); opacity: .55;
}
.hero__glow--1 { width: 620px; height: 620px; right: -160px; top: -200px; background: radial-gradient(circle, rgba(91,135,247,.9), transparent 65%); }
.hero__glow--2 { width: 520px; height: 520px; left: -180px; bottom: -240px; background: radial-gradient(circle, rgba(180,242,61,.28), transparent 60%); }
.hero__inner { position: relative; z-index: 2; max-width: 940px; }
.hero h1, .hero h2, .hero h3 { color: var(--on-dark); }
.hero .lead { color: #ffffff; }
.hero .eyebrow, .hero .accent-text { color: var(--accent); }
/* two-tone headlines: <em> = accent, not italic */
h1 em, h2 em, .value-quote em { font-style: normal; color: var(--blue-600); }
.bg-dark em, .bg-grad em, .hero h1 em, .hero h2 em { color: var(--accent); }
.hero h1 { margin-top: 26px; }
.hero .lead { margin-top: 26px; max-width: 720px; }
.hero .cta-row { margin-top: 38px; }
.hero .microcopy { margin-top: 20px; max-width: 560px; }

/* infinity / trajectory motif */
.hero__motif {
  position: absolute; right: -60px; bottom: -40px; z-index: 1;
  width: min(620px, 60vw); opacity: .14; pointer-events: none;
}
.hero__motif svg { width: 100%; height: auto; }

/* authority strip — pinned flush to the end of the hero */
.authority {
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(8,17,52,.45);
  margin-top: clamp(44px, 6vw, 80px);
}
.authority__inner { padding-block: 26px; }
.authority p {
  color: var(--on-dark-soft); font-size: clamp(.92rem,1.4vw,1.08rem);
  font-weight: 500; letter-spacing: .01em; text-align: center;
}
.authority b { color: #fff; font-weight: 700; }
.authority .accent-text { font-weight: 700; }

/* ---------- Problem cards ---------- */
.pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px;
}
.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px; transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .35s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.pain-card:hover::before { transform: scaleY(1); }
.pain-card .num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--blue-600); display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px; background: var(--bg-soft2); margin-bottom: 16px;
}
.pain-card h3 { font-size: 1.12rem; margin-bottom: 8px; letter-spacing: -.01em; }
.pain-card p { font-size: .96rem; color: var(--body); line-height: 1.55; }
.pain-closing {
  margin-top: 48px; padding: 32px 36px; border-radius: var(--r-lg);
  background: var(--blue-950); color: var(--on-dark);
  font-family: var(--font-head); font-size: clamp(1.2rem, 2.3vw, 1.7rem); font-weight: 600;
  line-height: 1.32; letter-spacing: -.01em; max-width: 980px;
}
.pain-closing b { color: var(--accent); font-weight: 700; }

/* ---------- Solution flow ---------- */
.flow {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; margin-top: 48px;
}
.flow__step {
  flex: 1 1 0; min-width: 116px; display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; position: relative;
}
.flow__node {
  width: 100%; padding: 20px 12px; border-radius: var(--r-md);
  background: var(--card-dark); border: 1px solid var(--card-dark-line);
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  display: flex; align-items: center; justify-content: center; min-height: 78px;
  transition: transform .3s, background .3s, border-color .3s;
}
.flow__step:hover .flow__node { transform: translateY(-4px); background: rgba(180,242,61,.12); border-color: var(--accent); }
.flow__idx { font-size: .72rem; color: var(--accent); font-weight: 700; letter-spacing: .12em; }
.flow__arrow { display: flex; align-items: center; color: var(--blue-400); }
.flow__legend { margin-top: 26px; color: var(--on-dark-soft); font-size: 1.05rem; }
.flow__legend b { color: #fff; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(36,83,214,.07), transparent 70%); border-radius: 50%;
  transition: transform .4s; transform: scale(0);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scale(1.4); }
.svc-card:hover .svc-icon { background: var(--accent); color: var(--accent-ink); transform: rotate(-6deg); }
.svc-num { position: absolute; top: 26px; right: 28px; font-family: var(--font-head); font-weight: 700; color: var(--bg-soft2); font-size: 2.4rem; line-height: 1; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 15px; background: var(--blue-600); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: .35s;
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.28rem; letter-spacing: -.01em; }
.svc-card p { font-size: .98rem; color: var(--body); line-height: 1.58; }

/* ---------- Differential / comparison ---------- */
.diff-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.compare { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.compare__head { display: grid; grid-template-columns: 1fr 1fr; }
.compare__head > div { padding: 22px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.compare__head .trad { color: var(--muted); background: var(--bg-soft); }
.compare__head .voo { color: #fff; background: var(--brand-grad-soft); display: flex; align-items: center; gap: 9px; }
.compare__head .voo::before { content:""; width:8px; height:8px; border-radius:50%; background: var(--accent); }
.compare__row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.compare__row > div { padding: 16px 24px; font-size: .97rem; display: flex; align-items: center; gap: 10px; }
.compare__row .trad { color: var(--muted); }
.compare__row .voo { color: var(--ink); font-weight: 600; background: color-mix(in srgb, var(--accent) 8%, transparent); }
.compare__row .voo svg { color: var(--accent-700); flex-shrink: 0; }
.compare__row .trad svg { color: #c4cdde; flex-shrink: 0; }
.compare__row .voo svg { flex-shrink: 0; }
/* Override any inline stroke set by the Icon component inside the compare table */
.compare__row svg { stroke: currentColor !important; }
.diff-punch {
  margin-top: 30px; font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.25; color: var(--ink); letter-spacing: -.01em;
}
.diff-punch b { color: var(--blue-600); }

/* ---------- Methodology / flight path ---------- */
.phases { margin-top: 60px; position: relative; }
.phase {
  display: grid; grid-template-columns: 120px 1fr; gap: clamp(20px,4vw,56px); align-items: start;
  padding-block: 34px; border-top: 1px solid rgba(255,255,255,.12); position: relative;
}
.phase:first-child { border-top: 0; }
.phase__num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem,5vw,4.4rem);
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.32);
  transition: -webkit-text-stroke .3s, color .3s;
}
.phase:hover .phase__num { color: var(--accent); -webkit-text-stroke: 1.5px var(--accent); }
.phase__body h3 { font-size: clamp(1.4rem,2.6vw,2rem); color: #fff; margin-bottom: 10px; }
.phase__body h3 .tag { font-size: .72rem; color: var(--accent); letter-spacing: .14em; font-family: var(--font-body); font-weight: 700; display:block; margin-bottom: 6px; }
.phase__body p { color: var(--on-dark-soft); font-size: 1.05rem; max-width: 640px; }
.steps {
  margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px;
}
.step-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid var(--card-dark-line); color: var(--on-dark-soft);
  font-size: .92rem; font-weight: 500; transition: .25s;
}
.step-chip:hover { border-color: var(--accent); color: #fff; }
.step-chip .c { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Results ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.metric {
  text-align: center; padding: 38px 22px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.metric:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.metric__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .8s ease; }
.metric.in .metric__bar { transform: scaleX(1); }
.metric__val { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric.neg .metric__val { background: linear-gradient(135deg, var(--accent-700), var(--accent-600)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric__label { margin-top: 14px; font-weight: 600; color: var(--ink); font-size: 1.02rem; line-height: 1.3; }

/* ---------- Hero chips ---------- */
.hero__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero__chip {
  font-size: .8rem; font-weight: 500; color: var(--on-dark-soft);
  border: 1px solid rgba(255,255,255,.18); padding: 7px 15px; border-radius: 8px;
  background: rgba(255,255,255,.05); backdrop-filter: blur(4px);
  transition: border-color .2s, color .2s;
}
.hero__chip:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Dor destaque cards ---------- */
.dor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px;
}
.dor-card {
  background: var(--blue-950); border: 1px solid var(--card-dark-line); border-radius: var(--r-lg);
  padding: 28px 26px; color: var(--on-dark);
  transition: border-color .3s, transform .3s;
}
.dor-card:hover { border-color: rgba(91,135,247,.5); transform: translateY(-4px); }
.dor-card .dor-icon {
  width: 50px; height: 50px; border-radius: 14px; background: rgba(91,135,247,.14);
  color: var(--blue-400); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.dor-card .dor-icon svg { width: 24px; height: 24px; }
.dor-card h3 { font-size: 1.12rem; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.dor-card p { font-size: .95rem; color: var(--on-dark-soft); line-height: 1.6; }

/* ---------- Verticais ---------- */
.vert-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px;
}
.vert-card {
  background: var(--card-dark); border: 1px solid var(--card-dark-line);
  border-radius: var(--r-lg); padding: 28px 26px; position: relative;
  transition: border-color .3s, transform .3s, background .3s;
  display: flex; flex-direction: column;
}
.vert-card--featured { border-color: var(--accent); background: rgba(180,242,61,.05); }
.vert-card:hover { transform: translateY(-5px); border-color: rgba(91,135,247,.5); }
.vert-card--featured:hover { border-color: var(--accent); }
.vert-flag {
  position: absolute; top: -12px; right: 22px;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-body); font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  padding: 5px 13px; border-radius: 100px;
}
.vert-icon { font-size: 2rem; margin-bottom: 14px; line-height: 1; display: block; }
.vert-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 9px; letter-spacing: -.01em; }
.vert-card > p { font-size: .93rem; color: var(--on-dark-soft); line-height: 1.55; margin-bottom: 20px; }
.vert-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.vert-list li {
  font-size: .86rem; color: var(--on-dark-muted); display: flex; align-items: center; gap: 9px;
}
.vert-list li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ---------- FAQ ---------- */
#faq .section-head { max-width: 100%; text-align: center; }
#faq .section-head .eyebrow { justify-content: center; }
#faq .faq-wrap { margin-inline: auto; }
.faq-wrap { max-width: 820px; margin-top: 52px; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 26px 0;
  transition: background .2s;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; gap: 14px; align-items: flex-start; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--ink); letter-spacing: -.01em;
  background: none; border: none; width: 100%; text-align: left; padding: 0;
  justify-content: space-between;
}
.faq-q .fq-text { flex: 1; }
.faq-q .fq-icon {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: var(--bg-soft2); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s, color .25s;
}
.faq-q .fq-icon svg { width: 16px; height: 16px; }
.faq-item.open .fq-icon { background: var(--blue-600); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: .97rem; color: var(--body); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 14px; }

/* ---------- Plans ---------- */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px;
  align-items: stretch;
}
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--card-dark); border: 1px solid var(--card-dark-line);
  border-radius: var(--r-lg); padding: 34px 30px;
  transition: transform .35s, border-color .35s, box-shadow .35s, background .35s;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(91,135,247,.55); box-shadow: 0 30px 70px rgba(4,10,30,.5); }
.plan--featured {
  background: linear-gradient(180deg, rgba(36,83,214,.20), rgba(255,255,255,.04));
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(8,17,52,.55);
}
.plan--featured:hover { border-color: var(--accent); transform: translateY(-9px); }
.plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .02em;
  padding: 8px 18px; border-radius: 100px; box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 36%, transparent);
}
.plan__flag svg { width: 14px; height: 14px; }
.plan__stage {
  font-family: var(--font-body); font-weight: 700; font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue-400);
}
.plan--featured .plan__stage { color: var(--accent); }
.plan__name { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: #fff; margin: 10px 0 12px; letter-spacing: -.01em; }
.plan__sub { color: var(--on-dark-soft); font-size: .98rem; line-height: 1.55; min-height: 58px; }
.plan__divider { height: 1px; background: rgba(255,255,255,.12); margin: 24px 0 20px; }
.plan__label { font-family: var(--font-body); font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 16px; }
.plan__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.plan__list li { display: flex; align-items: flex-start; gap: 11px; color: var(--on-dark-soft); font-size: .96rem; line-height: 1.45; }
.plan__check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; margin-top: 1px;
  background: rgba(91,135,247,.16); color: var(--blue-400);
  display: flex; align-items: center; justify-content: center;
}
.plan--featured .plan__check { background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); }
.plan__check svg { width: 13px; height: 13px; }
.plan__result {
  margin-top: 24px; padding: 18px 20px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--blue-500);
}
.plan--featured .plan__result { border-left-color: var(--accent); background: rgba(180,242,61,.06); }
.plan__result span { display: block; font-family: var(--font-body); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 6px; }
.plan__result p { color: #fff; font-size: .96rem; line-height: 1.5; font-weight: 500; }
.plan__cta { margin-top: 26px; }
.plan__cta .btn { width: 100%; }

.plans-callout {
  margin-top: 40px; display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 56px); flex-wrap: wrap;
  padding: clamp(30px, 4vw, 48px); border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(36,83,214,.22), rgba(8,17,52,.5));
  border: 1px solid var(--card-dark-line);
}
.plans-callout__text { flex: 1 1 380px; }
.plans-callout h3 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.6vw, 2rem); color: #fff; letter-spacing: -.01em; }
.plans-callout p { color: var(--on-dark-soft); margin-top: 12px; font-size: 1.04rem; line-height: 1.55; max-width: 620px; }
.plans-callout__action { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.plans-note { margin-top: 22px; color: var(--on-dark-muted); font-size: .9rem; text-align: center; line-height: 1.5; }

/* ---------- Value promise ---------- */
.value-quote {
  font-family: var(--font-head); font-weight: 600; letter-spacing: -.015em;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.28; color: var(--ink); max-width: 1000px;
}
.value-quote b { color: var(--blue-600); }
.value-sub { margin-top: 26px; max-width: 760px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.signature {
  margin-top: 30px; padding: 22px 26px; border-left: 3px solid var(--accent);
  font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: #fff; line-height: 1.4;
  background: rgba(255,255,255,.04); border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .h-1 { max-width: 900px; margin-inline: auto; }
.final-cta .lead { max-width: 720px; margin: 22px auto 0; }
.final-cta .cta-row { justify-content: center; margin-top: 38px; }
.final-cta .microcopy { max-width: 600px; margin: 22px auto 0; }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,5vw,72px); align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 18px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--blue-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--bg-soft); font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(58,108,240,.12);
}
.field.invalid input, .field.invalid select { border-color: #e0566a; background: #fef4f5; }
.field .err { color: #d13a52; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.form-aside .info-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.form-aside .info-item:last-child { border-bottom: 0; }
.form-aside .info-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft2); color: var(--blue-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-aside .info-icon svg { width: 21px; height: 21px; }
.form-aside .info-item h4 { font-size: .82rem; color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 3px; font-family: var(--font-body); }
.form-aside .info-item p { color: var(--ink); font-weight: 600; font-size: 1.02rem; }
.form-success {
  text-align: center; padding: clamp(30px,5vw,60px) 24px;
}
.form-success .check {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center;
  animation: pop .5s cubic-bezier(.2,.9,.3,1.4);
}
.form-success .check svg { width: 38px; height: 38px; }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { max-width: 460px; margin-inline: auto; color: var(--body); }

/* ---------- Footer ---------- */
.footer { background: var(--brand-grad); color: var(--on-dark); padding-top: clamp(56px,7vw,88px); }
.footer__brandline {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.2rem,2.4vw,1.7rem);
  color: #fff; max-width: 640px; line-height: 1.3; letter-spacing: -.01em;
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(28px,4vw,60px); padding-block: clamp(40px,5vw,64px); border-top: 1px solid rgba(255,255,255,.12); margin-top: clamp(36px,5vw,60px); }
.footer img.flogo { height: 44px; margin-bottom: 20px; }
.footer p.fdesc { color: var(--on-dark-soft); max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer .fcol a, .footer .fcol p { display: block; color: var(--on-dark-soft); padding: 5px 0; font-size: .98rem; transition: color .2s; }
.footer .fcol a:hover { color: var(--accent); }
.fsocial { display: flex; gap: 10px; margin-top: 22px; }
.fsocial a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); border: 1px solid var(--card-dark-line); display: flex; align-items: center; justify-content: center; color: #fff; transition: .25s; }
.fsocial a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-3px); }
.fsocial svg { width: 18px; height: 18px; }
.footer__bottom { padding-block: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__bottom p { color: var(--on-dark-muted); font-size: .9rem; }

/* ---------- Reveal animation ----------
   Base state is VISIBLE; the hidden "from" state lives in .pre and is removed
   once in view. This guarantees content is never stuck invisible if the
   environment throttles/freezes transitions (hidden tab, background load). */
.reveal { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.pre { opacity: 0; transform: translateY(28px); transition: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.pre { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
body.anim-off .reveal, body.anim-off .reveal.pre { opacity: 1 !important; transform: none !important; transition: none !important; }
/* When the tab/iframe is hidden, transitions freeze — force the final visible state. */
body.capture-static .reveal, body.capture-static .reveal.pre,
body.capture-static .metric__bar,
body.capture-static .form-success .check,
body.capture-static .wa-float { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
body.capture-static .metric__bar { transform: scaleX(1) !important; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .25s; animation: wapulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wapulse { 0%,100% { box-shadow: 0 12px 30px rgba(37,211,102,.4); } 50% { box-shadow: 0 12px 30px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .vert-grid { grid-template-columns: repeat(2, 1fr); }
  .dor-grid { grid-template-columns: 1fr; }
  .diff-grid, .about-grid, .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header__cta .btn { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .header__inner { gap: 12px; }
  .mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--blue-950); padding: 100px var(--pad) 40px; display: flex; flex-direction: column; gap: 8px; transform: translateX(100%); transition: transform .35s; }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mobile-menu .btn { margin-top: 22px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .pain-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .plan__sub { min-height: 0; }
  .plans-callout { flex-direction: column; align-items: flex-start; text-align: left; }
  .plans-callout__action { width: 100%; }
  .plans-callout__action .btn { width: 100%; }
  .vert-grid { grid-template-columns: 1fr; }
  .dor-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .flow__step { flex-basis: 100%; }
  .flow__arrow { transform: rotate(90deg); }
  .cta-row .btn { width: 100%; }
}


/* Production fixes */
.brand img { height: 48px; width: auto; object-fit: contain; display: block; }
.header.scrolled .brand img { height: 42px; }
@media (max-width: 860px) { .brand img { height: 42px; } }
.form-success .cta-row .btn { width: auto; }

/* Final fixes — logo and differential section */
.brand img {
  height: 58px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}
.header.scrolled .brand img { height: 50px; }
.footer img.flogo {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.diff-grid {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: start;
}
.diff-grid > * { min-width: 0; }
.compare {
  min-width: 0;
  width: 100%;
}
.compare__row > div,
.compare__head > div {
  min-width: 0;
}
.compare__row > div {
  overflow-wrap: anywhere;
  line-height: 1.35;
}
.compare__row svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
}
.compare__row .trad svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
}
.compare__head .voo::before { flex: 0 0 8px; }

@media (max-width: 1180px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff-grid .section-head,
  .diff-grid > div:first-child { max-width: 820px; }
}

@media (max-width: 760px) {
  .compare__head,
  .compare__row { grid-template-columns: 1fr; }
  .compare__row .voo { border-top: 1px solid var(--line); }
  .compare__head .trad { display: none; }
  .compare__head .voo { border-radius: 0; }
}

@media (max-width: 860px) {
  .brand img { height: 50px; max-width: 170px; }
  .header.scrolled .brand img { height: 46px; }
}

/* ============================================================
   VOO MARKETING — versão focada em conversão
   ============================================================ */

.section-head .h-1 { margin-top: 18px; }
.section-head .lead { max-width: 720px; }

.header__cta .btn { padding: 13px 21px; font-size: .9rem; }
body.menu-open { overflow: hidden; }

.hero { min-height: 680px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero__inner { padding-bottom: clamp(42px, 6vw, 74px); }
.hero .lead { max-width: 760px; }
.hero .microcopy { color: rgba(255,255,255,.72); }

.problem-grid { margin-top: 48px; margin-bottom: 0; }
.problem-grid .dor-icon {
  font-family: var(--font-head); font-size: .84rem; font-weight: 800; letter-spacing: .08em;
}

.conversion-callout {
  max-width: none; display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin-top: 34px; padding: 30px 34px;
}
.conversion-callout > div { display: flex; flex-direction: column; gap: 7px; }
.conversion-callout strong { color: #fff; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.conversion-callout span { color: var(--on-dark-soft); font-family: var(--font-body); font-size: .98rem; font-weight: 400; }
.conversion-callout .btn { flex: 0 0 auto; }

.positioning-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(44px, 7vw, 100px); align-items: start;
}
.positioning-points { display: grid; gap: 16px; }
.positioning-point {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 24px;
  border: 1px solid var(--card-dark-line); border-radius: var(--r-lg); background: var(--card-dark);
}
.positioning-point > span {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px;
  color: var(--accent); background: rgba(180,242,61,.08); font-family: var(--font-head); font-weight: 800;
}
.positioning-point h3 { color: #fff; font-size: 1.18rem; margin-bottom: 7px; }
.positioning-point p { color: var(--on-dark-soft); font-size: .96rem; line-height: 1.55; }
.positioning-quote {
  margin-top: 54px; padding-top: 34px; border-top: 1px solid var(--card-dark-line);
  font-family: var(--font-head); font-size: clamp(1.35rem, 2.8vw, 2rem); font-weight: 600; color: #fff;
}
.positioning-quote b { color: var(--accent); }

.svc-card { min-height: 220px; }
.svc-icon { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; }

.section-cta {
  margin-top: 44px; padding: 24px 28px; border-radius: var(--r-lg); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--bg-soft);
}
.section-cta p { color: var(--ink); font-weight: 600; }
.section-cta--dark { background: rgba(255,255,255,.06); border-color: var(--card-dark-line); }
.section-cta--dark p { color: #fff; }

.journey-label {
  margin-top: 52px; color: var(--accent); text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 800;
}
.journey-flow { margin-top: 22px; }
.method-phases { margin-top: 44px; }
.method-phases .phase { grid-template-columns: 90px 1fr; padding-block: 28px; }
.method-phases .phase__num { font-size: clamp(3rem, 5vw, 4.5rem); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.benefit-card {
  padding: 28px 26px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card > span {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--bg-soft2); color: var(--blue-600); font-family: var(--font-head); font-size: .8rem; font-weight: 800;
}
.benefit-card h3 { margin: 18px 0 8px; font-size: 1.15rem; }
.benefit-card p { color: var(--body); font-size: .94rem; line-height: 1.55; }

.plans-grid { align-items: stretch; }
.plan { display: flex; flex-direction: column; }
.plan__list { flex: 1; }
.plan__check { font-family: var(--font-head); font-size: .75rem; font-weight: 800; }
.plan__result { margin-top: 24px; }

.faq-q { width: 100%; }
.fq-icon { font-family: var(--font-head); font-size: 1.15rem; line-height: 1; }
.faq-item.open .fq-icon { transform: rotate(45deg); }
.faq-a { padding-right: 54px; }
.faq-item.open .faq-a { max-height: 260px; padding-top: 14px; padding-bottom: 18px; }

.form-aside .h-1 { margin-top: 18px; }
.form-aside .lead { margin-top: 18px; }
.contact-direct { margin-top: 28px; }
.form-aside > .microcopy { margin-top: 14px; }
.form-card__head { margin-bottom: 24px; }
.form-card__head h3 { font-size: 1.5rem; }
.form-card__head p { margin-top: 8px; color: var(--body); }
.field .optional { color: var(--muted); font-weight: 400; }
.form-privacy { margin-top: 14px; text-align: center; }
.field.invalid textarea { border-color: #e0566a; background: #fef4f5; }

.wa-float {
  font-family: var(--font-head); font-size: .78rem; font-weight: 800; letter-spacing: .02em;
}
.mobile-cta { display: none; }

@media (max-width: 1000px) {
  .positioning-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 70px; }
  .section { padding-block: 72px; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero__inner { padding-bottom: 44px; }
  .hero h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .authority__inner { padding-block: 20px; }
  .conversion-callout, .section-cta { flex-direction: column; align-items: stretch; }
  .conversion-callout .btn, .section-cta .btn { width: 100%; }
  .positioning-point { grid-template-columns: 48px 1fr; padding: 20px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .journey-flow .flow__arrow { transform: rotate(90deg); justify-content: center; }
  .method-phases .phase { grid-template-columns: 58px 1fr; gap: 16px; }
  .faq-a { padding-right: 10px; }
  .wa-float { display: none; }
  .mobile-cta {
    display: flex; position: fixed; left: 14px; right: 14px; bottom: 12px; z-index: 120;
    align-items: center; justify-content: center; min-height: 52px; border-radius: 100px;
    background: var(--accent); color: var(--accent-ink); font-weight: 800;
    box-shadow: 0 16px 38px rgba(8,17,52,.30);
  }
}

@media (max-width: 600px) {
  .problem-grid { gap: 14px; }
  .dor-card { padding: 24px 22px; }
  .svc-card { min-height: 0; }
  .positioning-quote { margin-top: 38px; }
  .plans-grid { max-width: none; }
  .plan { padding: 30px 24px; }
  .form-card { padding: 28px 22px; }
}

@media (max-width: 860px) {
  .mobile-menu .btn,
  .mobile-menu a.btn {
    color: var(--accent-ink);
    font-size: 1rem;
    border-bottom: 0;
    padding: 16px 22px;
  }
}

/* ============================================================
   VOO — atualização clean e orientada à conversão (jul/2026)
   ============================================================ */
.section--clean { padding-block: clamp(68px, 7.5vw, 108px); }
.hero--compact { min-height: 640px; }
.hero--compact .hero__inner { max-width: 900px; }
.hero--compact .h-display { max-width: 880px; }
.hero--compact .lead { max-width: 760px; margin-top: 24px; }
.hero--compact .cta-row { margin-top: 34px; }
.hero--compact .microcopy { margin-top: 16px; }

.problem-grid--short .dor-card { min-height: 210px; }
.conversion-callout--compact { padding-block: 26px; }
.conversion-callout--compact strong { max-width: 690px; }

.svc-grid--clean { gap: 16px; margin-top: 44px; }
.svc-grid--clean .svc-card { min-height: 190px; padding: 26px 25px; gap: 11px; }
.svc-grid--clean .svc-card h3 { font-size: 1.14rem; }
.svc-grid--clean .svc-card p { font-size: .92rem; }
.svc-grid--clean .svc-icon { width: 48px; height: 48px; font-size: 1.35rem; }
.svc-grid--clean .svc-num { font-size: 2rem; top: 22px; right: 23px; }

.positioning-grid--clean { align-items: center; }
.positioning-points--clean .positioning-point { padding: 21px 22px; }
.positioning-points--clean .positioning-point p { max-width: 520px; }

.method-phases--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.method-phases--cards .phase {
  display: block;
  padding: 30px;
  border: 1px solid var(--card-dark-line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.06);
}
.method-phases--cards .phase:first-child { border-top: 1px solid var(--card-dark-line); }
.method-phases--cards .phase__num {
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--accent);
  -webkit-text-stroke: 0;
  margin-bottom: 26px;
}
.method-phases--cards .phase:hover .phase__num { color: var(--accent); -webkit-text-stroke: 0; }
.method-phases--cards .phase__body h3 { font-size: 1.32rem; margin-bottom: 9px; }
.method-phases--cards .phase__body p { font-size: .96rem; line-height: 1.55; }

.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }
.founders { overflow: hidden; }
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
}
.founder-card {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) minmax(220px, 1.1fr);
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.founder-card__image { min-height: 100%; overflow: hidden; background: var(--bg-soft); }
.founder-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.founder-card__image--ingrid img { object-position: 50% 20%; }
.founder-card__content { padding: 34px 30px; align-self: end; }
.founder-card__role {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.founder-card h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
.founder-card p { margin-top: 14px; font-size: .95rem; line-height: 1.58; }
.founders-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
  text-align: center;
}
.founders-cta p { color: var(--ink); font-weight: 700; }

.fit-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}
.fit-copy .h-1 { margin-top: 18px; }
.fit-copy .lead { margin-top: 18px; }
.fit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-card {
  border-radius: var(--r-lg);
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.fit-card__label {
  display: block;
  min-height: 44px;
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
}
.fit-card ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.fit-card li { position: relative; padding-left: 28px; color: var(--body); font-size: .94rem; line-height: 1.45; }
.fit-card li::before {
  position: absolute;
  left: 0;
  top: .05em;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}
.fit-card--yes { border-top: 3px solid var(--accent-700); }
.fit-card--yes li::before { content: "✓"; background: rgba(130,189,22,.14); color: var(--accent-700); }
.fit-card--no { border-top: 3px solid var(--blue-400); }
.fit-card--no li::before { content: "—"; background: var(--bg-soft2); color: var(--blue-600); }

.plans-grid--clean .plan { padding: 30px 28px; }
.plans-grid--clean .plan__sub { min-height: 52px; }
.plans-grid--clean .plan__divider { margin: 20px 0; }
.plans-grid--clean .plan__cta { margin-top: 24px; }

#faq .faq-grid {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}
#faq .faq-grid .section-head { max-width: 430px; text-align: left; }
#faq .faq-grid .section-head .eyebrow { justify-content: flex-start; }
#faq .faq-grid .faq-wrap { width: 100%; max-width: none; margin: 0; }

@media (max-width: 1120px) {
  .nav a { padding-inline: 9px; font-size: .88rem; }
  .header__cta .btn { padding-inline: 17px; }
  .founder-card { grid-template-columns: 1fr; min-height: 0; }
  .founder-card__image { height: 420px; }
  .founder-card__content { align-self: auto; }
}

@media (max-width: 1000px) {
  .method-phases--cards { grid-template-columns: 1fr; }
  .method-phases--cards .phase { min-height: 0; }
  .fit-grid { grid-template-columns: 1fr; }
  #faq .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  #faq .faq-grid .section-head { max-width: 680px; }
}

@media (max-width: 940px) {
  .nav, .header__cta .btn { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
}

@media (max-width: 760px) {
  .section--clean { padding-block: 66px; }
  .hero--compact { min-height: auto; }
  .hero--compact .lead { margin-top: 20px; }
  .hero--compact .cta-row { margin-top: 28px; }
  .founders-grid { grid-template-columns: 1fr; max-width: 520px; }
  .founder-card__image { height: 480px; }
  .founders-cta { flex-direction: column; }
  .founders-cta .btn { width: 100%; }
  .fit-columns { grid-template-columns: 1fr; }
  .fit-card__label { min-height: 0; }
}

@media (max-width: 520px) {
  .founder-card__image { height: 390px; }
  .founder-card__content { padding: 27px 24px; }
  .method-phases--cards .phase { padding: 25px 23px; }
}

@media (max-width: 940px) {
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--blue-950);
    padding: 100px var(--pad) 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .35s;
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu a {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.35rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .mobile-menu .btn,
  .mobile-menu a.btn {
    margin-top: 18px;
    color: var(--accent-ink);
    font-size: 1rem;
    border-bottom: 0;
    padding: 16px 22px;
  }
}
