/* ============================================================
   Growth — growth.orlixs.com
   White, orange and green. Inter. Light, high-contrast, sales-led.
   ============================================================ */

:root {
  --bg:          #FFFFFF;
  --bg-soft:     #FFF8F3;   /* warm off-white section band */
  --surface:     #FFFFFF;
  --ink:         #17150F;
  --ink-2:       #5A554D;

  --orange:      #FF6B2C;   /* primary CTA and accents */
  --orange-deep: #E4551B;   /* hover */
  --orange-text: #C2410C;   /* accent text on light — AA */
  --orange-soft: #FFF0E7;
  --orange-glow: rgba(255, 107, 44, 0.30);

  --green:       #12875A;   /* secondary accent, checks, proof */
  --green-deep:  #0D6D47;
  --green-soft:  #E6F5EE;
  --green-dark:  #0A3B2A;   /* dark contrast bands and pricing cards */
  --green-light: #E4F2EA;   /* light band behind the pricing cards */
  --green-darker:#072C20;

  --inverse:     #FFFFFF;
  --inverse-2:   rgba(255, 255, 255, 0.76);
  --glass-line:  rgba(255, 255, 255, 0.16);
  --glass-bg:    rgba(255, 255, 255, 0.06);

  --line:        #EDE6DD;
  --err:         #D0342C;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(23, 21, 15, 0.05), 0 8px 24px -18px rgba(23, 21, 15, 0.25);
  --shadow-lift: 0 18px 40px -22px rgba(23, 21, 15, 0.28);
}

/* ---------- Base ---------- */

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

/* [hidden] must win over any display rule below. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.13rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }
a { color: inherit; }

.wrap { width: min(1160px, 100% - 48px); margin-inline: auto; }
.wrap--narrow { width: min(840px, 100% - 48px); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

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

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 14px;
}
.eyebrow--dark { color: #FFB68C; }

.section-sub {
  color: var(--ink-2);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 40px;
}

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

/* Hook words inside headings. Orange marks the problem or the platform,
   green marks the payoff. Both clear AA at heading sizes. */
.hl-o { color: var(--orange); }
.hl-g { color: var(--green); }
/* Green needs lifting to stay legible on the dark green bands. */
.approach .hl-g,
.pricing .hl-g,
.contact .hl-g { color: #6FDCA9; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 700 0.95rem/1 var(--font);
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px -10px var(--orange-glow);
}
.btn--primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px var(--orange-glow);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-text); transform: translateY(-1px); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: default; transform: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.18s ease, gap 0.18s ease;
}
.link-arrow:hover { border-color: var(--orange); gap: 10px; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}

.brand {
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 3px;
}

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--orange-text); }


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

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  padding: 7px;
  cursor: pointer;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 24px 22px;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 11px 4px;
}
.mobile-menu .btn { margin-top: 10px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 82% 4%, var(--orange-soft), transparent 62%),
    radial-gradient(700px 420px at 6% 92%, var(--green-soft), transparent 62%),
    var(--bg);
  overflow: hidden;
  padding: 148px 0 96px;
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 680px;
  height: 500px;
  background: radial-gradient(closest-side, var(--orange-glow), transparent 70%);
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-sub { color: var(--ink-2); }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 52px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  margin: 0 0 24px;
  box-shadow: var(--shadow);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  color: var(--ink-2);
  font-size: 1.14rem;
  max-width: 500px;
  margin-bottom: 30px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 14px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0 0 44px;
}
.cta-note svg { flex: none; color: var(--green); }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 12px 44px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.metric { display: flex; flex-direction: column; }
.metric dd {
  margin: 0;
  order: -1;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange-text);
}
.metric dt {
  font-size: 0.82rem;
  color: var(--ink-2);
  max-width: 150px;
  line-height: 1.4;
}

/* Bento visual */

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding-top: 26px;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 16px;
}

/* --- Animated workflow canvas --- */

.card-flow { grid-row: 1 / 3; display: flex; flex-direction: column; }

.card-title .dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 7px;
  vertical-align: middle;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.wf { width: 100%; height: auto; flex: 1; margin-top: 4px; }

/* Dashes travel down the wires, so the graph reads as data in motion. */
.wf-lines path {
  stroke-dasharray: 5 7;
  animation: dashFlow 0.9s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -24; } }

.wf-node rect {
  fill: var(--surface);
  stroke: var(--green);
  stroke-width: 1.8;
}
.wf-node text {
  font: 700 12.5px var(--font);
  fill: var(--ink);
  text-anchor: middle;
  letter-spacing: -0.01em;
}

/* Each node lights up on its own beat, so activation appears to travel
   down the flow. --d staggers the start per node. */
.wf-node rect { animation: nodeOn 5s ease-in-out infinite; animation-delay: var(--d); }
.wf-node text { animation: nodeTextOn 5s ease-in-out infinite; animation-delay: var(--d); }

@keyframes nodeOn {
  0%, 14%, 100% { fill: var(--surface); stroke: var(--green); }
  4%, 10% { fill: var(--orange); stroke: var(--orange); }
}
@keyframes nodeTextOn {
  0%, 14%, 100% { fill: var(--ink); }
  4%, 10% { fill: #FFFFFF; }
}

/* Entry node is orange and the success node is solid green, so the canvas
   holds both brand colours even between animation beats. */
.wf-node--start rect { stroke: var(--orange); stroke-width: 2.2; }

.wf-node--win rect {
  fill: var(--green);
  stroke: var(--green);
  animation-name: nodeWin;
}
.wf-node--win text { fill: #FFFFFF; animation-name: nodeWinText; }
@keyframes nodeWin {
  0%, 14%, 100% { fill: var(--green); stroke: var(--green); }
  4%, 10% { fill: var(--green-deep); stroke: var(--green-deep); }
}
@keyframes nodeWinText {
  0%, 14%, 100% { fill: #FFFFFF; }
  4%, 10% { fill: #FFFFFF; }
}

.wf-branch {
  font: 800 10.5px var(--font);
  fill: var(--orange-text);
  text-anchor: middle;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wf-branch--yes { fill: var(--green-deep); }

/* --- Terminal log --- */

.term {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}
.term li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.73rem;
  opacity: 0;
  animation: logIn 5s ease-out infinite;
  animation-delay: calc(var(--i) * 0.55s);
}
.term b { color: var(--orange); font-weight: 700; }
.term span { color: var(--green-deep); font-weight: 600; }

@keyframes logIn {
  0%   { opacity: 0; transform: translateY(5px); }
  8%   { opacity: 1; transform: none; }
  82%  { opacity: 1; transform: none; }
  92%, 100% { opacity: 0; transform: none; }
}

.term-caret {
  display: block;
  width: 7px;
  height: 13px;
  margin-top: 9px;
  background: var(--orange);
  animation: blink 1.1s steps(1) infinite;
}

/* --- Sparkline --- */

.card-spark .spark { width: 100%; height: 64px; }
.spark-line {
  fill: none;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 5s ease-in-out infinite;
}
.spark-fill { opacity: 0; animation: fadeFill 5s ease-in-out infinite; }
@keyframes draw {
  0% { stroke-dashoffset: 260; }
  45%, 88% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes fadeFill {
  0%, 20% { opacity: 0; }
  55%, 88% { opacity: 1; }
  100% { opacity: 0; }
}

.glass-chip {
  position: absolute;
  top: 0;
  left: -16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  box-shadow: var(--shadow-lift);
}
.chip-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(18, 135, 90, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(18, 135, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18, 135, 90, 0); }
}

/* ---------- Tools strip ---------- */

.tools {
  background: var(--bg);
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tools-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  margin-bottom: 16px;
}
/* Ticker: two identical sets side by side, translated by exactly half the
   track width, so the loop is seamless. Motion runs left to right. */
.ticker {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 46s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

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

.ticker-set {
  list-style: none;
  margin: 0;
  padding: 0 5px;
  display: flex;
  gap: 10px;
}

/* --c carries each product's own brand colour, set per item in the markup. */
.ticker-set li {
  flex: none;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--c, var(--ink));
  border-radius: 999px;
  padding: 9px 18px;
  white-space: nowrap;
  box-shadow: 0 2px 10px -4px rgba(23, 21, 15, 0.35);
}

/* ---------- Problem ---------- */

.problem { padding: 90px 0; background: var(--bg); }
.problem h2 { max-width: 760px; margin-bottom: 36px; }

.pain-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pain {
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}

.problem-close {
  margin: 34px 0 0;
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--green-deep);
}

/* ---------- Why GoHighLevel ---------- */

.ghl { padding: 90px 0; background: var(--bg-soft); }

.replace-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 52px;
  box-shadow: var(--shadow);
}
.replace-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.replace-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.replace-list li {
  position: relative;
  font-size: 0.89rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 8px 16px 8px 32px;
}
.replace-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg) scale(0.9);
}
.replace-note {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.ghl-sub { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }

.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.ben-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ben-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.ben-num {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange-text);
  margin-bottom: 12px;
}
.ben-card h4 { margin: 0 0 8px; font-size: 1.06rem; font-weight: 800; letter-spacing: -0.015em; }
.ben-card p { margin: 0; font-size: 0.93rem; color: var(--ink-2); }

/* ---------- Repeated CTA bands ---------- */

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin-top: 34px;
}
.cta-band h3 { color: var(--inverse); margin-bottom: 4px; font-size: 1.2rem; font-weight: 800; }
.cta-band p { margin: 0; color: var(--inverse-2); font-size: 0.96rem; }
.cta-band .btn { flex: none; }

.cta-band--light {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cta-band--light h3 { color: var(--ink); }
.cta-band--light p { color: var(--ink-2); }

/* ---------- Team model (dark band) ---------- */

.team {
  background: linear-gradient(168deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: var(--inverse);
  padding: 90px 0;
}
.team h2 { color: var(--inverse); max-width: 780px; }
.team-sub { color: var(--inverse-2); font-size: 1.05rem; max-width: 580px; margin-bottom: 40px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-line);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.team-num {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #FFB68C;
  margin-bottom: 12px;
}
.team-card h3 { color: var(--inverse); margin-bottom: 8px; font-size: 1.06rem; }
.team-card p { margin: 0; font-size: 0.92rem; color: var(--inverse-2); }

.team-note {
  margin-top: 26px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(255, 107, 44, 0.12);
  border: 1px solid rgba(255, 107, 44, 0.4);
}
.team-note p { margin: 0; color: var(--inverse-2); font-size: 0.98rem; }
.team-note b { color: var(--inverse); }

/* ---------- Fit / qualification ---------- */

.fit { padding: 90px 0; background: var(--bg); }
.fit h2 { max-width: 720px; margin-bottom: 36px; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.fit-card {
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.fit-card h3 { margin-bottom: 16px; }
.fit-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.fit-card li { position: relative; padding-left: 28px; font-size: 0.95rem; }
.fit-card em { font-style: normal; font-weight: 700; }

.fit-card--yes { border-color: rgba(18, 135, 90, 0.35); background: var(--green-soft); }
.fit-card--yes h3 { color: var(--green-deep); }
.fit-card--yes li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2.4px solid var(--green);
  border-bottom: 2.4px solid var(--green);
  transform: rotate(-45deg);
}

.fit-card--no { color: var(--ink-2); }
.fit-card--no h3 { color: var(--ink-2); }
.fit-card--no li::before,
.fit-card--no li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #C4BCB1;
}
.fit-card--no li::before { transform: rotate(45deg); }
.fit-card--no li::after { transform: rotate(-45deg); }

.fit-close { margin: 28px 0 0; font-size: 1.02rem; font-weight: 700; color: var(--green-deep); }

/* ---------- First-30-days timeline ---------- */

.timeline {
  margin-top: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.timeline-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.timeline-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-row li {
  position: relative;
  padding-top: 18px;
  font-size: 0.9rem;
  color: var(--ink-2);
  border-top: 2px solid var(--line);
}

/* The track fills left to right, one segment at a time, and each marker
   lights up as the fill reaches it. --i sets the position in the sequence. */
.timeline-row li::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  animation: trackFill 8s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1.1s);
}

.timeline-row li::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  animation: markerOn 8s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1.1s);
}

@keyframes trackFill {
  0%        { transform: scaleX(0); }
  11%, 90%  { transform: scaleX(1); }
  100%      { transform: scaleX(0); }
}
@keyframes markerOn {
  0%        { background: var(--line); transform: scale(1); }
  8%        { background: var(--orange); transform: scale(1.35); }
  13%, 90%  { background: var(--orange); transform: scale(1); }
  100%      { background: var(--line); transform: scale(1); }
}
.timeline-row span {
  display: block;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
  font-size: 0.86rem;
}

/* ---------- Risk reversal ---------- */

.reversal {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.reversal-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.reversal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
.reversal-list li {
  position: relative;
  padding-left: 27px;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.reversal-list b { color: var(--ink); }
.reversal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 7px;
  border-left: 2.2px solid var(--orange);
  border-bottom: 2.2px solid var(--orange);
  transform: rotate(-45deg);
}

/* ---------- Free-audit value stack ---------- */

.audit-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 26px;
}
.audit-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFB68C;
  margin-bottom: 16px;
}
.audit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.audit-list li {
  position: relative;
  padding-left: 27px;
  font-size: 0.93rem;
  color: var(--inverse-2);
}
.audit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 7px;
  border-left: 2.2px solid var(--orange);
  border-bottom: 2.2px solid var(--orange);
  transform: rotate(-45deg);
}

/* ---------- Services ---------- */

.services { padding: 90px 0; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.svc-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--orange);
  margin-bottom: 18px;
}
.svc-card h3 { margin-bottom: 6px; }
.svc-lead { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 16px; }

.svc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.svc-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg) scale(0.9);
}

/* Marks the handful of things nearly every client asks for first. */
.pop {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--orange-text);
  background: var(--orange-soft);
  vertical-align: 1px;
}
/* On the dark pricing cards the light tint would glare. */
.price-card .pop { color: #FFC4A3; background: rgba(255, 107, 44, 0.18); }
.price-card--featured .pop { color: var(--orange-text); background: var(--orange-soft); }

/* Closing line on a service card: the outcome, after the mechanics. */
.svc-result {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.svc-result b { color: var(--green-deep); }

/* Same idea on the work cards. */
.work-result {
  margin: 10px 0 0 !important;
  padding-left: 13px;
  border-left: 2px solid var(--green);
  font-size: 0.88rem !important;
  color: var(--ink) !important;
  font-weight: 600;
}

/* ---------- Approach (dark band) ---------- */

.approach {
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: var(--inverse);
  padding: 90px 0;
}
.approach h2 { color: var(--inverse); max-width: 760px; }
.approach-sub { color: var(--inverse-2); font-size: 1.05rem; margin-bottom: 40px; }

.journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.journey-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--inverse);
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
}
.journey-step span {
  flex: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFB68C;
}

/* ---------- Process ---------- */

.process { padding: 90px 0; background: var(--bg); }

.steps {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange-text);
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: 0.92rem; color: var(--ink-2); }

/* ---------- Work ---------- */

.work { padding: 90px 0; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.work-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.work-card h3 { margin-bottom: 8px; }
.work-card p:last-child { margin: 0; font-size: 0.92rem; color: var(--ink-2); }

/* ---------- Pricing (dark band) ---------- */

.pricing {
  background: var(--green-light);
  color: var(--ink);
  padding: 90px 0;
}
.pricing h2 { color: var(--ink); }
.pricing .eyebrow--dark { color: var(--orange-text); }
.pricing .hl-g { color: var(--green-deep); }
.pricing-sub { color: var(--ink-2); max-width: 580px; margin-bottom: 24px; }
.pricing-sub b { color: var(--ink); }


.offer-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid rgba(255, 107, 44, 0.5);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 34px;
}
.offer-banner p { margin: 0; font-size: 0.95rem; color: var(--ink); }
.offer-banner s { color: var(--ink-2); }
.offer-banner b { color: var(--orange-text); font-size: 1.08rem; }
.offer-pill {
  flex: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  padding: 5px 12px;
}

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

/* Solid dark green so the cards read as blocks against the light band. */
.price-card {
  background: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 18px 44px -26px rgba(10, 59, 42, 0.55);
}
.price-card--featured {
  background: var(--surface);
  border-color: var(--orange);
  color: var(--ink);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.55);
}

.price-flag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFB68C;
  margin: 0 0 10px;
}
.price-card--featured .price-flag { color: var(--orange-text); }

.price-card h3 { color: var(--inverse); margin-bottom: 6px; }
.price-card--featured h3 { color: var(--ink); }

/* Keeps price and button on the same line across all three cards. */
/* Reserve three lines so the price blocks line up across all three cards. */
.price-lead { font-size: 0.9rem; color: var(--inverse-2); margin-bottom: 20px; min-height: 68px; }
.price-card--featured .price-lead { color: var(--ink-2); }

/* Two hire options side by side, so full-time and part-time read as one
   choice rather than two separate plans. */
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 20px;
}

.tier {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-line);
}
.price-card--featured .tier {
  background: var(--orange-soft);
  border-color: rgba(255, 107, 44, 0.3);
}

.tier-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFB68C;
}
.price-card--featured .tier-label { color: var(--orange-text); }

.tier-price {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--inverse);
  line-height: 1.1;
}
.price-card--featured .tier-price { color: var(--ink); }

.tier-price em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--inverse-2);
  margin-left: 2px;
}
.price-card--featured .tier-price em { color: var(--ink-2); }

.price { margin: 0 0 20px; display: flex; align-items: baseline; gap: 6px; }
.price-num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.035em; color: var(--inverse); }
.price-card--featured .price-num { color: var(--ink); }
.price-per { font-size: 0.9rem; color: var(--inverse-2); }
.price-card--featured .price-per { color: var(--ink-2); }

.price-card .btn--ghost { border-color: var(--glass-line); color: var(--inverse); }
.price-card .btn--ghost:hover { border-color: var(--orange); color: #FFB68C; }

.list-title {
  margin: 24px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--glass-line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFB68C;
}
.price-card--featured .list-title {
  border-top-color: var(--line);
  color: var(--orange-text);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* The payoff line, set apart from the feature list. */
.price-outcome {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--inverse-2);
}
.price-outcome b { color: var(--inverse); }
.price-card--featured .price-outcome {
  background: var(--orange-soft);
  color: var(--ink-2);
}
.price-card--featured .price-outcome b { color: var(--orange-text); }

.price-list li {
  position: relative;
  padding-left: 25px;
  font-size: 0.9rem;
  color: var(--inverse-2);
}
.price-card--featured .price-list li { color: var(--ink-2); }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg) scale(0.9);
}

.pricing-note { margin: 30px 0 0; font-size: 0.86rem; color: var(--ink-2); text-align: center; }

/* Line under each price block: the promise that is true on every tier. */
.tier-note {
  margin: -8px 0 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--inverse-2);
  text-align: center;
}
.tier-note--featured { color: var(--ink-2); }
.tier-note b { color: #FFB68C; }
.tier-note--featured b { color: var(--orange-text); }

/* ---------- What you'd do instead ---------- */

.compare {
  margin-top: 30px;
  padding: 26px 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.compare-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.compare-col { padding-left: 16px; border-left: 2px solid var(--line); }
.compare-col h4 {
  margin: 0 0 7px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink-2);
}
.compare-col p { margin: 0; font-size: 0.86rem; color: var(--ink-2); }
.compare-col--ours { border-left-color: var(--orange); }
.compare-col--ours h4 { color: var(--orange-text); }
.compare-col--ours p { color: var(--ink); }

/* ---------- Why us ---------- */

.why { padding: 90px 0; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.why-card h3 { margin-bottom: 6px; }
.why-card p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }

/* ---------- FAQ ---------- */

.faq { padding: 90px 0; background: var(--bg); }
.faq .eyebrow, .faq h2 { text-align: center; }
.faq h2 { margin-bottom: 30px; }

.faq-list { display: flex; flex-direction: column; gap: 11px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 22px;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon { flex: none; position: relative; width: 14px; height: 14px; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translateY(-50%) rotate(0deg); }

.faq-item p { margin: 0; padding: 0 0 20px; color: var(--ink-2); max-width: 640px; }

/* ---------- Contact (dark band) ---------- */

.contact {
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: var(--inverse);
  padding: 90px 0 100px;
}
.contact .eyebrow, .contact h2, .contact-sub { text-align: center; }
.contact h2 { color: var(--inverse); }
.contact-sub { color: var(--inverse-2); max-width: 520px; margin: 0 auto 22px; }

.contact-points {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}
.contact-points li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--inverse-2);
}
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg) scale(0.9);
}

.form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.5);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.optional { font-weight: 400; color: var(--ink-2); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font: 400 0.95rem/1.5 var(--font);
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='m1 1.5 5 5 5-5' stroke='%235A554D' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #A8A196; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--err); }

.field-error { margin: 7px 0 0; font-size: 0.82rem; color: var(--err); }

.hp-wrap {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status { min-height: 0; }
.form-status.error {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #FDECEA;
  border: 1px solid #F3B4AE;
  color: #8C231C;
  font-size: 0.9rem;
}
.form-status.error a { color: #8C231C; }

.form-alt { margin: 16px 0 0; text-align: center; font-size: 0.88rem; color: var(--ink-2); }
.form-alt a { color: var(--orange-text); }

.form-success { text-align: center; padding: 26px 10px; }
.form-success h3 { margin-bottom: 6px; }
.form-success p { color: var(--ink-2); margin: 0; }
.form-success a { color: var(--orange-text); }

.success-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 0 0 8px var(--green-soft);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-darker);
  color: var(--inverse-2);
  padding: 60px 0 36px;
}
.site-footer .brand { color: var(--inverse); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--glass-line);
}
.footer-brand p { max-width: 320px; font-size: 0.9rem; margin: 14px 0 8px; }
.footer-tagline { font-weight: 700; color: var(--inverse); font-size: 0.86rem !important; }

.footer-mail {
  color: var(--inverse);
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid var(--glass-line);
}
.footer-mail:hover { border-color: var(--orange); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: flex-start; }
.footer-nav a { color: var(--inverse-2); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--inverse); }

.footer-fine {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-fine p { margin: 0; max-width: 560px; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .svc-card, .ben-card, .work-card { transition: none; }

  /* Freeze the hero canvas on a readable final state. */
  .chip-pulse,
  .dot-live,
  .wf-lines path,
  .wf-node rect,
  .wf-node text,
  .term li,
  .term-caret,
  .spark-line,
  .spark-fill { animation: none !important; }

  .wf-lines path { stroke-dasharray: none; }
  .term li { opacity: 1; }
  .spark-line { stroke-dashoffset: 0; }
  .spark-fill { opacity: 1; }

  /* Show the timeline already complete rather than empty. */
  .timeline-row li::after,
  .timeline-row li::before { animation: none !important; }
  .timeline-row li::after { transform: scaleX(1); }
  .timeline-row li::before { background: var(--orange); }

  /* Stop the ticker and let it be scrolled by hand instead. */
  .ticker-track { animation: none !important; transform: none; }
  .ticker { overflow-x: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero { padding-top: 128px; }
  .hero-visual { max-width: 620px; }
  .glass-chip { left: auto; right: 10px; }
  .svc-grid, .ben-grid, .work-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .timeline-row { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 560px; }
  .price-lead { min-height: 0; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header { background: rgba(255, 255, 255, 0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
  .footer-inner { flex-direction: column; gap: 26px; }
  .footer-fine { flex-direction: column; gap: 8px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .wrap--narrow { width: min(1160px, 100% - 40px); }
  .hero { padding: 112px 0 72px; }
  .cta-row { flex-wrap: wrap; gap: 18px; }
  .cta-note { margin-bottom: 36px; }
  .metrics { grid-template-columns: repeat(3, 1fr); gap: 10px 16px; }
  .metric dd { font-size: 1.5rem; }
  .metric dt { font-size: 0.74rem; }
  .hero-visual { grid-template-columns: 1fr; }
  .card-flow { grid-row: auto; }
  .problem, .ghl, .fit, .services, .approach, .process, .work, .pricing, .why, .faq { padding: 68px 0; }
  .contact { padding: 68px 0 80px; }
  .pain-grid, .svc-grid, .ben-grid, .work-grid, .why-grid, .steps, .journey,
  .fit-grid, .timeline-row, .reversal-list, .audit-list, .team-grid, .tiers,
  .compare-grid { grid-template-columns: 1fr; }
  .team { padding: 68px 0; }
  .timeline, .reversal, .audit-card { padding: 22px 20px; }
  .replace-card { padding: 22px 20px; }
  .cta-band { padding: 24px 22px; }
  .cta-band .btn { width: 100%; }
  .form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-points { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ticker-set { gap: 8px; }
  .ticker-set li { font-size: 0.79rem; padding: 8px 14px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .badge { font-size: 0.72rem; padding: 7px 13px; }
  .glass-chip { left: 0; padding: 8px 13px; font-size: 0.75rem; }
}
