/* ==================================================================
   Roof Revenue | Main stylesheet  v2.0
   Location: public_html/css/styles.css
   Mobile first: base styles target phones, @media (min-width) adds
   layout for tablets and desktops.

   Palette (chosen for roofing owners):
     Asphalt  #12161b  authority, the color of the product they install
     Slate    #243140  storm-sky secondary surfaces
     Copper   #c9501c  action (copper flashing / safety orange); white text passes WCAG AA
     Bright copper #f07a3a  highlights on dark backgrounds
     Amber    #f5a524  leak / warning signals (hail-warning yellow)
     Green    #1d7f55 / #34d399  recovered revenue, money back
     Paper    #f6f3ee  warm light sections

   Contents
     1 Tokens  2 Base  3 Layout  4 Buttons  5 Header  6 Hero + pipeline graphic
     7 Copy blocks  8 Cards, icons, grids  9 Journey  10 Timeline
     11 Offer stack, guarantees  12 Forms + multistep  13 Calculator
     14 FAQ, CTA band  15 Footer, sticky CTA  16 Motion  17 Utilities
   ================================================================== */

/* 1. Tokens ------------------------------------------------------- */
:root {
  --asphalt: #12161b;
  --asphalt-2: #1a2129;
  --slate: #243140;
  --slate-2: #33475a;
  --copper: #c9501c;
  --copper-hover: #a8410f;
  --copper-bright: #f07a3a;
  --copper-soft: #fcebe1;
  --amber: #f5a524;
  --green: #1d7f55;
  --green-bright: #34d399;
  --green-soft: #e3f3eb;
  --red: #b3261e;
  --paper: #f6f3ee;
  --white: #ffffff;
  --line: #e4ddd2;
  --line-dark: rgba(255, 255, 255, 0.12);
  --text: #1f252c;
  --muted: #5b6570;
  --muted-light: #b4bec9;
  --on-dark: #dfe5eb;

  --font-head: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(18, 22, 27, .06), 0 8px 24px rgba(18, 22, 27, .08);
  --shadow-lg: 0 24px 60px rgba(18, 22, 27, .22);
  --container: 1180px;
  --gutter: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* 2. Base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--white); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-underline-offset: 3px; }
a:hover { color: var(--copper-hover); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -.015em; color: var(--asphalt); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 7.4vw, 3.3rem); font-weight: 900; }
h2 { font-size: clamp(1.65rem, 5vw, 2.55rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 3.2vw, 1.35rem); font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
strong, b { font-weight: 700; }
:focus-visible { outline: 3px solid var(--copper-bright); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--asphalt); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 16px; top: 16px; }
.sr-only, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; display: inline-block; vertical-align: -.2em; }

/* 3. Layout ------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 780px; }
.section { padding: clamp(56px, 9vw, 108px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--asphalt); color: var(--on-dark); }
.section--slate { background: linear-gradient(180deg, var(--asphalt-2), var(--slate)); color: var(--on-dark); }
.section--dark h2, .section--dark h3, .section--slate h2, .section--slate h3 { color: #fff; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }
.section-head { max-width: 780px; margin: 0 0 36px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: currentColor; border-radius: 2px; }
.section-head--center .eyebrow::before { display: none; }
.section--dark .eyebrow, .section--slate .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--copper-bright); }
.lead { font-size: clamp(1.05rem, 2.6vw, 1.2rem); color: var(--muted); }
.section--dark .lead, .section--slate .lead { color: var(--muted-light); }
.two-col { display: grid; gap: 36px; align-items: start; }
@media (min-width: 960px) { .two-col { grid-template-columns: 1.1fr .9fr; gap: 56px; } }

/* 4. Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; letter-spacing: .01em;
  min-height: 54px; padding: 14px 24px; border-radius: 10px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2; text-align: center;
  transition: transform .18s var(--ease), background-color .18s ease, box-shadow .18s ease, border-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn .icon { transition: transform .2s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--copper); color: #fff; box-shadow: 0 8px 22px rgba(201, 80, 28, .35), inset 0 -3px 0 rgba(0,0,0,.15); }
.btn--primary:hover { background: var(--copper-hover); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.btn--outline { background: transparent; color: var(--asphalt); border-color: var(--asphalt); }
.btn--outline:hover { background: var(--asphalt); color: #fff; }
.btn--sm { min-height: 42px; padding: 9px 16px; font-size: .95rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .7; cursor: wait; }
.btn-row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 560px) { .btn-row { flex-direction: row; flex-wrap: wrap; align-items: center; } }
.btn-note { font-size: .9rem; color: var(--muted); margin-top: 12px; display: flex; gap: 8px; align-items: flex-start; }
.btn-note .icon { color: var(--green-bright); margin-top: 2px; }
.section--dark .btn-note, .hero .btn-note, .page-hero .btn-note { color: var(--muted-light); }
.pulse { animation: pulse 2.6s var(--ease) infinite; }

/* 5. Header / nav ------------------------------------------------- */
.topbar { background: var(--copper); color: #fff; font-size: .88rem; }
.topbar__inner { display: flex; justify-content: center; align-items: center; gap: 14px; min-height: 38px; }
.topbar__who { display: none; align-items: center; gap: 8px; }
.topbar__link { color: #fff; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.topbar__link:hover { color: #fff; text-decoration: underline; }
@media (min-width: 760px) { .topbar__inner { justify-content: space-between; } .topbar__who { display: inline-flex; } }

.site-header { background: rgba(18, 22, 27, .96); backdrop-filter: saturate(140%) blur(8px); -webkit-backdrop-filter: saturate(140%) blur(8px); position: sticky; top: 0; z-index: 60; border-bottom: 1px solid var(--line-dark); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__name { font-family: var(--font-head); font-weight: 900; font-size: 1.35rem; color: #fff; letter-spacing: -.01em; }
.brand__name span { color: var(--copper-bright); }
.nav-toggle { background: none; border: 0; padding: 12px 8px; cursor: pointer; }
.nav-toggle__bar { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav {
  position: absolute; top: 100%; left: 0; right: 0; background: var(--asphalt);
  border-bottom: 1px solid var(--line-dark); padding: 6px var(--gutter) 20px;
  display: none; flex-direction: column;
}
.site-nav.is-open { display: flex; animation: dropIn .22s var(--ease); }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav li a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: #d6dde4; text-decoration: none; font-weight: 600; }
.site-nav a[aria-current="page"] { color: #fff; }
.site-nav .btn { margin-top: 16px; }
@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: flex; flex-direction: row; align-items: center; gap: 26px; padding: 0; border: 0; background: none; }
  .site-nav ul { display: flex; gap: 22px; }
  .site-nav li a { padding: 6px 0; border: 0; font-size: .96rem; }
  .site-nav li a:hover { color: #fff; }
  .site-nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--copper-bright); }
  .site-nav .btn { margin-top: 0; }
}

/* 6. Hero --------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(900px 480px at 90% -10%, rgba(240, 122, 58, .22), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(51, 71, 90, .55), transparent 60%),
    linear-gradient(180deg, var(--asphalt) 0%, var(--asphalt-2) 100%);
  padding: clamp(40px, 8vw, 96px) 0 clamp(56px, 9vw, 110px);
}
.hero::after { /* shingle texture fading in at the bottom */
  content: ""; position: absolute; inset: auto 0 0 0; height: 160px; pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 46%, rgba(255,255,255,.045) 47%, rgba(255,255,255,.045) 53%, transparent 54%),
    linear-gradient(225deg, transparent 46%, rgba(255,255,255,.045) 47%, rgba(255,255,255,.045) 53%, transparent 54%);
  background-size: 56px 28px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000); mask-image: linear-gradient(180deg, transparent, #000);
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.15fr .85fr; gap: 56px; } }
.hero h1 { color: #fff; }
.hero h1 em, .page-hero h1 em { font-style: normal; color: var(--copper-bright); position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .02em; height: .12em; background: var(--copper-bright); opacity: .35; border-radius: 2px; transform-origin: left; animation: underline 1s .6s var(--ease) both; }
.hero__sub { font-size: clamp(1.05rem, 2.8vw, 1.22rem); color: #c8d0d8; max-width: 640px; }
.checklist { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .icon { width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--copper); color: #fff; margin-top: 1px; }
.hero .checklist li { color: #e6ebf0; }

/* Pipeline leak graphic (hero) */
.pipeline {
  background: linear-gradient(180deg, #1c242d, #161c23); border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: 22px 20px 20px; box-shadow: var(--shadow-lg); position: relative;
}
.pipeline__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.pipeline__title { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.05rem; margin: 0; }
.pipeline__tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.pipe-row { position: relative; display: grid; grid-template-columns: 96px 1fr 44px; gap: 10px; align-items: center; padding: 7px 0; }
.pipe-row__label { font-size: .85rem; color: var(--muted-light); }
.pipe-row__track { display: block; height: 14px; background: rgba(255,255,255,.07); border-radius: 99px; overflow: hidden; }
.pipe-row__bar { display: block; height: 100%; width: var(--w, 0%); border-radius: 99px; background: linear-gradient(90deg, var(--copper), var(--copper-bright)); transform-origin: left; transform: scaleX(0); transition: transform 1.2s var(--ease); }
.pipe-row--won .pipe-row__bar { background: linear-gradient(90deg, #178a5c, var(--green-bright)); }
.is-in .pipe-row__bar { transform: scaleX(1); }
.pipe-row__num { font-family: var(--font-head); font-weight: 800; color: #fff; text-align: right; font-variant-numeric: tabular-nums; }
.leak { position: absolute; left: 118px; bottom: -6px; width: 9px; height: 12px; pointer-events: none; }
.leak::before {
  content: ""; position: absolute; inset: 0; background: var(--amber);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; clip-path: polygon(50% 0, 100% 60%, 85% 100%, 15% 100%, 0 60%);
  animation: drip 2.4s ease-in infinite; animation-delay: var(--d, 0s); opacity: 0;
}
.pipeline__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.pipeline__stat { background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: 12px; padding: 12px; }
.pipeline__stat b { display: block; font-family: var(--font-head); font-size: 1.45rem; font-weight: 900; line-height: 1.1; color: var(--amber); font-variant-numeric: tabular-nums; }
.pipeline__stat--good b { color: var(--green-bright); }
.pipeline__stat span { font-size: .78rem; color: var(--muted-light); }
.pipeline__note { font-size: .74rem; color: #8993a0; margin: 12px 0 0; }

/* Inner page hero */
.page-hero { background: radial-gradient(800px 400px at 90% -20%, rgba(240,122,58,.18), transparent 60%), linear-gradient(180deg, var(--asphalt), var(--asphalt-2)); color: var(--on-dark); padding: clamp(40px, 7vw, 84px) 0; }
.page-hero h1 { color: #fff; max-width: 920px; }
.page-hero p { color: #c8d0d8; max-width: 740px; font-size: clamp(1.02rem, 2.6vw, 1.15rem); }
.breadcrumbs { font-size: .82rem; margin-bottom: 14px; color: var(--muted-light); }
.breadcrumbs a { color: var(--muted-light); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 6px; opacity: .6; }

/* Proof chips under hero */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chips li { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; padding: 6px 12px; border-radius: 99px; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); color: #d6dde4; }
.chips .icon { color: var(--copper-bright); }
.strip { background: var(--asphalt-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 16px 0; }
.strip .chips { justify-content: center; }

/* 7. Copy blocks -------------------------------------------------- */
.letter p { font-size: clamp(1.02rem, 2.4vw, 1.12rem); }
.letter p.big { font-size: clamp(1.2rem, 3vw, 1.38rem); font-weight: 600; color: var(--asphalt); }
.callout { border-left: 5px solid var(--copper); background: var(--copper-soft); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 26px 0; }
.callout p:last-child { margin: 0; }
.pull { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.35rem, 3.6vw, 2rem); color: var(--asphalt); line-height: 1.25; margin: 30px 0; padding-left: 18px; border-left: 5px solid var(--copper); }
.fine { font-size: .84rem; color: var(--muted); }
.section--dark .fine, .section--slate .fine { color: var(--muted-light); }
.tldr { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--copper); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); margin-bottom: 28px; }
.tldr h2 { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 8px; }
.tldr ul { margin: 0; }
.tldr li { margin-bottom: 6px; }
.author-box { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 0 28px; font-size: .9rem; color: var(--muted); }
.author-box__mark { width: 44px; height: 44px; border-radius: 50%; background: var(--asphalt); color: var(--copper-bright); display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; flex: 0 0 auto; }
.author-box strong { color: var(--asphalt); display: block; }
.formula { font-family: var(--font-head); font-weight: 700; background: var(--asphalt); color: #fff; padding: 16px 20px; border-radius: var(--radius); font-size: clamp(1rem, 2.6vw, 1.15rem); margin: 18px 0; }
.formula span { color: var(--copper-bright); }

/* 8. Cards, icons, grids ------------------------------------------ */
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(18,22,27,.06), 0 16px 36px rgba(18,22,27,.12); }
.card h3 { margin-top: 4px; }
.card p:last-child { margin-bottom: 0; }
.card--dark { background: linear-gradient(180deg, #1e2731, #19212a); border-color: var(--line-dark); color: #d9e0e7; box-shadow: none; }
.card--dark:hover { border-color: rgba(240,122,58,.45); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.card--dark h3 { color: #fff; }
.card--featured { border: 2px solid var(--copper); position: relative; }
.card__num { font-family: var(--font-head); font-weight: 900; font-size: .78rem; letter-spacing: .12em; color: var(--copper); text-transform: uppercase; }
.section--dark .card__num, .section--slate .card__num { color: var(--amber); }
.card__fix { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .95rem; }
.card--dark .card__fix { border-top-color: var(--line-dark); }
.card__fix strong { color: var(--green); }
.card--dark .card__fix strong { color: var(--green-bright); }
.icon-badge { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--copper-soft); color: var(--copper); margin-bottom: 14px; }
.icon-badge .icon { width: 26px; height: 26px; }
.card--dark .icon-badge { background: rgba(245,165,36,.12); color: var(--amber); }
.card--dark:hover .icon-badge { animation: wobble .6s var(--ease); }
.icon-badge--green { background: var(--green-soft); color: var(--green); }

.stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 800px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; padding: 22px; }
.stat__value { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.1rem); color: var(--asphalt); line-height: 1; }
.stat__label { font-size: .9rem; color: var(--muted); margin-top: 8px; }

.fit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.fit-list li { display: flex; gap: 12px; align-items: flex-start; }
.fit-list .icon { width: 22px; height: 22px; margin-top: 2px; }
.fit-list--yes .icon { color: var(--green); }
.fit-list--no .icon { color: var(--red); }

/* Math box */
.math { background: var(--asphalt); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow-lg); }
.math__row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.math__row b { color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; }
.math__row--add b { color: var(--green-bright); }
.math__row--total { border: 0; font-size: 1.1rem; align-items: center; }
.math__row--total b { color: var(--copper-bright); font-family: var(--font-head); font-size: clamp(1.7rem, 5vw, 2.2rem); }

/* 9. Journey ------------------------------------------------------ */
.journey { display: grid; gap: 14px; position: relative; counter-reset: step; }
@media (min-width: 640px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) {
  .journey { grid-template-columns: repeat(5, 1fr); }
  .journey::before { /* flowing connector line */
    content: ""; position: absolute; left: 6%; right: 6%; top: 44px; height: 3px; z-index: 0;
    background: repeating-linear-gradient(90deg, var(--copper) 0 12px, transparent 12px 22px);
    background-size: 22px 3px; animation: flow 1.2s linear infinite; opacity: .55;
  }
}
.journey__step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 16px; box-shadow: var(--shadow); }
.journey__step .icon-badge { width: 44px; height: 44px; margin-bottom: 10px; background: var(--asphalt); color: var(--copper-bright); }
.journey__step::after { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: 14px; right: 14px; font-family: var(--font-head); font-weight: 900; color: var(--line); font-size: 1.4rem; }
.journey__step h3 { font-size: 1.05rem; margin: 0 0 6px; }
.journey__step p { font-size: .9rem; color: var(--muted); margin: 0; }
.tag { display: inline-block; margin-top: 10px; font-size: .76rem; font-weight: 700; color: var(--green); background: var(--green-soft); padding: 3px 9px; border-radius: 99px; }

/* 10. Timeline ---------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--copper), var(--line)); }
.timeline li { position: relative; padding: 0 0 28px 50px; }
.timeline li::before { content: ""; position: absolute; left: 6px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 4px solid var(--copper); }
.timeline__when { font-family: var(--font-head); font-weight: 800; color: var(--copper); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.timeline h3 { margin: 4px 0 6px; }
.timeline p { margin: 0; color: var(--muted); }

/* 11. Offer stack, guarantees, plans ------------------------------- */
.stack { background: #fff; border: 2px solid var(--asphalt); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.stack__head { background: var(--asphalt); color: #fff; padding: 20px 22px; }
.stack__head h3 { color: #fff; margin: 0; font-size: 1.45rem; }
.stack__head p { margin: 4px 0 0; color: var(--muted-light); }
.stack__row { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
@media (min-width: 560px) { .stack__row { grid-template-columns: 1fr auto; gap: 16px; padding: 16px 24px; } }
.stack__row h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin: 0 0 2px; display: flex; gap: 8px; align-items: center; }
.stack__row h4 .icon { color: var(--green); }
.stack__row p { margin: 0; font-size: .92rem; color: var(--muted); }
.stack__value { font-weight: 700; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.stack__row--bonus { background: #fffaf6; }
.stack__row--bonus h4::before { content: "BONUS"; font-family: var(--font-head); font-size: .7rem; font-weight: 900; letter-spacing: .08em; color: #fff; background: var(--copper); padding: 2px 7px; border-radius: 4px; }
.stack__total { padding: 22px 24px; background: var(--paper); display: grid; gap: 6px; }
.stack__total .strike { text-decoration: line-through; text-decoration-color: var(--red); color: var(--muted); font-size: 1.05rem; }
.stack__price { font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 6vw, 2.8rem); color: var(--asphalt); line-height: 1; }
.stack__price small { font-size: 1rem; color: var(--muted); font-weight: 700; }
.stack__cta { padding: 0 24px 24px; background: var(--paper); }

.guarantee { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: start; }
.guarantee__seal {
  width: 72px; height: 72px; border-radius: 50%; background: var(--copper); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--font-head); font-weight: 900; font-size: .68rem; line-height: 1.1; letter-spacing: .04em;
  box-shadow: 0 0 0 5px rgba(201,80,28,.25), inset 0 0 0 2px rgba(255,255,255,.35);
}
.scarcity { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 2px dashed var(--copper); border-radius: var(--radius-lg); padding: 20px 22px; }
@media (min-width: 560px) { .scarcity { flex-direction: row; align-items: center; } }
.scarcity__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 12px; background: var(--copper-soft); display: grid; place-items: center; color: var(--copper); }
.scarcity__icon .icon { width: 28px; height: 28px; }
.scarcity p { margin: 0; }
.badge { display: inline-block; background: var(--copper-soft); color: var(--copper-hover); font-weight: 700; font-size: .78rem; padding: 4px 10px; border-radius: 99px; }
.plan ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.plan li { display: flex; gap: 8px; align-items: flex-start; font-size: .95rem; }
.plan li .icon { color: var(--green); margin-top: 3px; }

/* 12. Forms + multistep ------------------------------------------- */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(20px, 4vw, 34px); border: 1px solid var(--line); position: relative; }
.form-card h2 { font-size: clamp(1.35rem, 4vw, 1.6rem); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px 16px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field label, .field .label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--asphalt); }
.field .hint { font-weight: 400; color: var(--muted); font-size: .84rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; /* 16px stops iOS zoom */ color: var(--text);
  min-height: 52px; padding: 12px 14px; border: 1.5px solid #cfc7ba; border-radius: 10px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6570' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); outline: none; box-shadow: 0 0 0 4px rgba(201, 80, 28, .18); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--red); }
.field__error { color: var(--red); font-size: .84rem; margin: 4px 0 0; display: none; }
.field.has-error .field__error { display: block; }
.field.is-valid input { border-color: #9fcdb7; }
.field label.check, .check { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; font-weight: 400; color: var(--muted); }
.check input { margin-top: 3px; width: 20px; height: 20px; min-height: 0; flex: 0 0 auto; accent-color: var(--copper); -webkit-appearance: checkbox; appearance: auto; }
.form-errors { background: #fdecea; border: 1px solid #f3b6b0; color: #7a1c15; padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: .94rem; }
.form-errors ul { margin: 6px 0 0; }
.form-foot { font-size: .84rem; color: var(--muted); margin: 12px 0 0; text-align: center; display: flex; gap: 6px; justify-content: center; align-items: center; }
.form-foot .icon { color: var(--green); }
.recaptcha-note { font-size: .72rem; color: #8993a0; text-align: center; margin: 10px 0 0; }
.recaptcha-note a { color: inherit; }
.grecaptcha-badge { visibility: hidden !important; } /* allowed because recaptcha_notice() is shown on every form */

.progress { margin-bottom: 20px; }
.progress__labels { display: flex; justify-content: space-between; font-size: .8rem; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.progress__labels .is-on { color: var(--copper); }
.progress__track { height: 8px; background: var(--paper); border-radius: 99px; overflow: hidden; }
.progress__fill { height: 100%; width: 34%; background: linear-gradient(90deg, var(--copper), var(--copper-bright)); border-radius: 99px; transition: width .5s var(--ease); }
.step { border: 0; margin: 0; padding: 0; min-width: 0; }
.step legend { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.25rem, 3.6vw, 1.5rem); color: var(--asphalt); margin-bottom: 14px; padding: 0; }
.js .multistep .step:not(.is-active) { display: none; }
.js .multistep .step.is-active { animation: stepIn .35s var(--ease); }
.no-js-only { display: block; }
.js .no-js-only { display: none; }
.step-nav { display: flex; gap: 10px; margin-top: 16px; }
.step-nav .btn { flex: 1; }
.step-nav .btn--back { flex: 0 0 auto; background: none; border: 0; color: var(--muted); text-decoration: underline; min-height: 0; padding: 8px; box-shadow: none; }

/* 13. Calculator -------------------------------------------------- */
.calc { display: grid; gap: 24px; align-items: start; }
@media (min-width: 960px) { .calc { grid-template-columns: 1fr 1fr; gap: 28px; } .calc__results { position: sticky; top: 90px; } }
.calc__inputs { display: grid; gap: 22px; }
.range-field label { display: flex; justify-content: space-between; gap: 10px; font-weight: 600; margin-bottom: 8px; }
.range-field output { font-family: var(--font-head); font-weight: 800; color: var(--copper); font-variant-numeric: tabular-nums; white-space: nowrap; }
.range-field .hint { font-size: .83rem; color: var(--muted); margin: 4px 0 0; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 32px; background: transparent; cursor: pointer; }
input[type="range"]::-webkit-slider-runnable-track { height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--copper) var(--fill, 50%), #e7e1d7 var(--fill, 50%)); }
input[type="range"]::-moz-range-track { height: 8px; border-radius: 99px; background: #e7e1d7; }
input[type="range"]::-moz-range-progress { height: 8px; border-radius: 99px; background: var(--copper); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; margin-top: -10px; border-radius: 50%; background: #fff; border: 4px solid var(--copper); box-shadow: 0 2px 8px rgba(0,0,0,.25); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--copper); }
.result-big { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.3rem, 9vw, 3.6rem); color: var(--copper-bright); line-height: 1; margin: 6px 0 4px; font-variant-numeric: tabular-nums; }
.result-list { list-style: none; padding: 0; margin: 20px 0; }
.result-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-dark); font-size: .95rem; }
.result-list b { color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* 14. FAQ, CTA band ----------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 20px; transition: box-shadow .2s ease, border-color .2s ease; }
.faq details[open] { border-color: #d8cfc1; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 34px 18px 0; position: relative; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--asphalt); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 13px; width: 26px; height: 26px; border-radius: 50%; background: var(--copper-soft); color: var(--copper); display: grid; place-items: center; font-size: 1.2rem; font-weight: 700; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 18px; color: var(--muted); }
.cta-band { background: radial-gradient(700px 300px at 50% 0, rgba(255,255,255,.14), transparent 70%), var(--copper); color: #fff; padding: clamp(48px, 8vw, 84px) 0; text-align: center; }
.cta-band h2 { color: #fff; max-width: 820px; margin: 0 auto 14px; }
.cta-band p { max-width: 680px; margin: 0 auto 26px; color: #ffe9dc; font-size: 1.08rem; }
.cta-band .btn--primary { background: var(--asphalt); box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.cta-band .btn--primary:hover { background: #000; }
.ps { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 22px; }

.embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--slate); aspect-ratio: 16 / 9; display: grid; place-items: center; color: var(--muted-light); text-align: center; padding: 20px; }
.calendar-embed { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.calendar-embed iframe { width: 100%; min-height: 760px; border: 0; display: block; }
.steps-list { counter-reset: s; list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps-list li { counter-increment: s; position: relative; padding: 18px 18px 18px 66px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps-list li::before { content: counter(s); position: absolute; left: 16px; top: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--asphalt); color: var(--copper-bright); display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; }
.steps-list h3 { margin: 0 0 4px; font-size: 1.08rem; }
.steps-list p { margin: 0; color: var(--muted); font-size: .95rem; }
.legal h2 { font-size: 1.35rem; margin-top: 1.8em; }
.legal p, .legal li { color: #39424c; }

/* 15. Footer, sticky CTA ------------------------------------------ */
.site-footer { background: var(--asphalt); color: var(--muted-light); padding: 60px 0 calc(28px + env(safe-area-inset-bottom)); font-size: .94rem; }
.site-footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.site-footer__h { font-family: var(--font-head); color: #fff; font-size: .86rem; text-transform: uppercase; letter-spacing: .12em; margin: 6px 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.site-footer ul a { display: inline-block; padding: 6px 0; }
.site-footer a { color: var(--muted-light); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__tag { margin: 16px 0 10px; max-width: 380px; }
.site-footer__small { font-size: .84rem; }
.site-footer__legal { border-top: 1px solid var(--line-dark); margin-top: 40px; padding-top: 20px; font-size: .8rem; color: #8993a0; }
.site-footer__legal p { margin: 0 0 6px; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(18,22,27,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid var(--line-dark);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.no-sticky .sticky-cta { display: none; }
@media (min-width: 1000px) { .sticky-cta { display: none; } }
@media (max-width: 999px) { body:not(.no-sticky) .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); } }

/* 16. Motion ------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--delay, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
@keyframes drip { 0% { opacity: 0; transform: translateY(-4px) scale(.6); } 15% { opacity: 1; transform: translateY(0) scale(1); } 70% { opacity: 1; } 100% { opacity: 0; transform: translateY(26px) scale(.8); } }
@keyframes flow { to { background-position: 22px 0; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 8px 22px rgba(201,80,28,.35), 0 0 0 0 rgba(240,122,58,.5); } 50% { box-shadow: 0 8px 22px rgba(201,80,28,.35), 0 0 0 10px rgba(240,122,58,0); } }
@keyframes underline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes wobble { 0%, 100% { transform: rotate(0); } 30% { transform: rotate(-8deg); } 60% { transform: rotate(6deg); } }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .pipe-row__bar { transform: scaleX(1); }
}

/* 17. Utilities --------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
