:root {
  --ink: #17211f;
  --forest: #18362f;
  --forest-2: #24594e;
  --teal: #0e7668;
  --mint: #9de3d5;
  --mint-pale: #e5f7f1;
  --paper: #f7f3eb;
  --paper-deep: #eee8dd;
  --white: #fffdf9;
  --gold: #d7aa52;
  --muted: #60706a;
  --line: rgba(24, 54, 47, 0.14);
  --shadow: 0 24px 70px rgba(14, 42, 35, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-size: .84rem;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
main:focus { outline: none; }

.essentials-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 1440px;
  margin: auto;
  padding: 22px clamp(20px, 5vw, 72px);
  color: #fff;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: 0; }
.brand img { width: 43px; height: auto; }
.essentials-header nav { display: flex; gap: 28px; font-size: 0.88rem; font-weight: 700; }
.essentials-header nav a { opacity: 0.76; transition: opacity 160ms ease; }
.essentials-header nav a:hover, .essentials-header nav a:focus-visible { opacity: 1; }
.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, .8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding: 140px max(24px, calc((100vw - 1300px) / 2)) 92px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(29,182,161,.16), transparent 31%),
    radial-gradient(circle at 2% 88%, rgba(215,170,82,.12), transparent 30%),
    linear-gradient(135deg, #142c27 0%, #1e473e 56%, #265c51 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-copy, .front-desk-card { position: relative; z-index: 1; }
.eyebrow, .kicker, .offer-label, .outcome-overline {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow > span { width: 24px; height: 2px; background: var(--gold); }
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 6.6vw, 6.9rem);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: .91;
}
h1 em { color: var(--gold); font-weight: 500; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary { color: #14251f; background: linear-gradient(135deg, #f0cc78, var(--gold)); box-shadow: 0 14px 32px rgba(215,170,82,.18); }
.button.secondary { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.06); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 30px; color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 700; }
.hero-trust span::before { margin-right: 8px; color: var(--mint); content: "✓"; }

.front-desk-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255,253,249,.96);
  box-shadow: 0 36px 90px rgba(5,22,18,.34);
  transform: rotate(1.2deg);
}
.card-topline { display: flex; align-items: center; gap: 9px; padding: 0 4px 18px; border-bottom: 1px solid var(--line); }
.card-topline strong { font-size: .9rem; }
.card-topline small { margin-left: auto; color: var(--teal); font-weight: 800; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #37b991; box-shadow: 0 0 0 5px rgba(55,185,145,.12); }
.journey-step { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px 4px; }
.step-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; color: var(--forest); background: var(--mint-pale); font-size: .72rem; font-weight: 900; }
.journey-step small { display: block; margin-bottom: 3px; color: #809089; font-size: .69rem; font-weight: 700; }
.journey-step strong { display: block; font-size: .94rem; }
.journey-step p { margin: 5px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.journey-line { width: calc(100% - 56px); height: 1px; margin-left: 56px; background: var(--line); }
.card-result { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 17px; border-radius: 11px; color: #fff; background: var(--forest); font-size: .76rem; }
.card-result span { color: rgba(255,255,255,.67); }
.card-result strong { color: var(--mint); }

.promise-strip { padding: 22px max(24px, calc((100vw - 1300px) / 2)); color: #fff; background: #0f2d26; }
.promise-strip > p { margin: 0 0 10px; color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.promise-strip > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.promise-strip span { font-size: .82rem; font-weight: 750; }
.promise-strip b { margin-right: 5px; color: rgba(255,255,255,.36); font-size: .64rem; }

.section { padding: clamp(78px, 9vw, 128px) max(24px, calc((100vw - 1240px) / 2)); }
.section-heading { margin-bottom: 40px; }
.section-heading h2, .fit-copy h2, .contact-copy h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -.012em;
  line-height: .99;
}
.kicker, .offer-label, .outcome-overline { color: var(--teal); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .7fr); align-items: end; gap: 80px; }
.split-heading > p, .centered-heading > p, .fit-copy > p, .starting-point > div > p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.centered-heading { max-width: 850px; margin-right: auto; margin-left: auto; text-align: center; }
.centered-heading > p:last-child { max-width: 650px; margin: 20px auto 0; }

.problem-section { background: var(--white); }
.leak-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.leak-grid article { min-height: 250px; padding: 30px 25px; border-right: 1px solid var(--line); background: #fff; }
.leak-grid article:last-child { border-right: 0; }
.leak-grid span { color: #9b6b5b; font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.leak-grid h3 { margin: 54px 0 10px; font-size: 1.18rem; }
.leak-grid p { margin: 0; color: var(--muted); font-size: .87rem; }
.leak-grid .after-card { color: #fff; background: var(--forest); }
.leak-grid .after-card span { color: var(--mint); }
.leak-grid .after-card p { color: rgba(255,255,255,.67); }

.included-section { background: var(--paper); }
.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.offer-card { position: relative; padding: clamp(28px, 4vw, 46px); border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 8px 30px rgba(24,54,47,.035); }
.offer-card.featured { background: linear-gradient(145deg, #fffdf9, #eef8f4); }
.offer-number { position: absolute; top: 32px; right: 34px; color: rgba(24,54,47,.16); font-family: Georgia, serif; font-size: 2.1rem; }
.offer-card h3 { margin: 0; max-width: 460px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 500; line-height: 1.05; }
.offer-intro { max-width: 570px; margin: 16px 0 24px; color: var(--muted); }
.offer-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.offer-card li { position: relative; padding-left: 18px; color: #40504a; font-size: .83rem; }
.offer-card li::before { position: absolute; left: 0; color: var(--teal); font-weight: 900; content: "✓"; }
.outcome-card { display: flex; flex-direction: column; justify-content: center; color: #fff; background: var(--forest); }
.outcome-card h3 { max-width: 520px; color: #fff; }
.outcome-card > p:last-child { margin: 22px 0 0; color: rgba(255,255,255,.66); }
.outcome-overline { color: var(--mint); }
.mini-dashboard { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
.mini-dashboard span { padding: 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; color: rgba(255,255,255,.66); background: rgba(255,255,255,.05); font-size: .74rem; }
.mini-dashboard strong { display: block; color: var(--gold); font-size: 1.3rem; }

.fit-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(380px, 1fr); gap: clamp(50px, 8vw, 110px); color: #fff; background: #203f38; }
.fit-copy h2 { color: #fff; }
.fit-copy > p { margin-top: 24px; color: rgba(255,255,255,.68); }
.fit-copy > a { display: inline-flex; min-height: 44px; align-items: center; gap: 10px; margin-top: 28px; color: var(--gold); font-weight: 850; }
.fit-copy > a span { font-size: 1.3rem; }
.fit-examples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fit-examples article { min-height: 158px; padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.045); }
.fit-examples span { display: block; margin-bottom: 32px; color: var(--mint); font-size: .68rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.fit-examples strong { display: block; font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; line-height: 1.25; }

.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid article { padding: 28px; border-top: 1px solid var(--line); }
.process-grid span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--teal); background: var(--mint-pale); font-size: .74rem; font-weight: 900; }
.process-grid h3 { margin: 56px 0 10px; font-size: 1.12rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.starting-point { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 110px); align-items: center; background: #eef4ef; }
.starting-point > div > p { margin-top: 23px; }
.starting-point ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.starting-point li { display: grid; grid-template-columns: 80px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: .9rem; font-weight: 750; }
.starting-point li span { color: var(--teal); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.faq-section { background: var(--white); }
.faq-section .split-heading a { color: var(--teal); font-weight: 800; }
.faq-list { max-width: 900px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--teal); font-size: 1.35rem; content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -4px 0 24px; color: var(--muted); }

.contact-section { display: grid; grid-template-columns: minmax(0, .78fr) minmax(460px, .7fr); gap: clamp(50px, 8vw, 110px); align-items: start; color: #fff; background: var(--forest); }
.contact-copy { position: sticky; top: 40px; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { max-width: 620px; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.contact-note { display: grid; gap: 4px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-note strong { color: var(--gold); }
.contact-note span { color: rgba(255,255,255,.58); font-size: .86rem; }
.essentials-form { padding: clamp(25px, 4vw, 38px); border-radius: 16px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.essentials-form > label, .form-row label { display: grid; gap: 7px; margin-bottom: 18px; font-size: .75rem; font-weight: 850; }
.essentials-form label > span { color: var(--muted); font-weight: 600; }
.essentials-form input[type="text"], .essentials-form input[type="tel"], .essentials-form input[type="email"], .essentials-form input[type="url"] { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid rgba(24,54,47,.2); border-radius: 7px; color: var(--ink); background: #fff; outline: none; }
.essentials-form input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,118,104,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.essentials-form fieldset { margin: 0 0 18px; padding: 0; border: 0; }
.essentials-form legend { margin-bottom: 10px; font-size: .75rem; font-weight: 850; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-grid label { display: flex; align-items: center; gap: 8px; padding: 10px; border: 1px solid var(--line); border-radius: 7px; color: #42514c; font-size: .75rem; font-weight: 700; }
.check-grid input, .consent-label input { accent-color: var(--teal); }
.consent-label { display: flex !important; min-height: 44px; grid-template-columns: auto 1fr; align-items: center; gap: 9px !important; color: var(--muted); font-size: .68rem !important; font-weight: 600 !important; }
.consent-label input { width: 18px; height: 18px; margin-top: 0; }
.consent-label a { color: var(--teal); text-decoration: underline; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-submit span { margin-left: auto; color: var(--forest); font-size: 1.2rem; }
.form-footnote { margin: 12px 0 0; color: #596b64; font-size: .7rem; text-align: center; }

footer { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 28px; padding: 30px max(24px, calc((100vw - 1240px) / 2)); color: rgba(255,255,255,.65); background: #0e211d; font-size: .75rem; }
.footer-brand { color: #fff; font-size: .9rem; }
.footer-brand img { width: 36px; }
footer p { margin: 0; text-align: center; }
footer nav { display: flex; justify-content: flex-end; gap: 16px; }
footer nav a:hover, footer nav a:focus-visible { color: #fff; }

@media (max-width: 980px) {
  .essentials-header { grid-template-columns: 1fr auto; }
  .essentials-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 148px; }
  .hero-copy { max-width: 800px; }
  .front-desk-card { max-width: 620px; transform: none; }
  .promise-strip > div { grid-template-columns: repeat(3, 1fr); row-gap: 10px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .leak-grid { grid-template-columns: repeat(2, 1fr); }
  .leak-grid article { border-bottom: 1px solid var(--line); }
  .leak-grid article:nth-child(2) { border-right: 0; }
  .fit-section, .contact-section { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .essentials-form { max-width: 680px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .brand, footer nav { justify-content: center; }
}

@media (max-width: 700px) {
  .essentials-header { padding: 17px 18px; }
  .header-cta { padding: 9px 12px; font-size: .74rem; }
  .brand img { width: 37px; }
  .hero { gap: 42px; padding: 116px 20px 62px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); line-height: .97; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; }
  .front-desk-card { width: 100%; padding: 16px; border-radius: 15px; }
  .card-topline { flex-wrap: wrap; }
  .card-topline small { width: 100%; margin: 2px 0 0 18px; }
  .journey-step { grid-template-columns: 34px 1fr; gap: 11px; padding: 16px 2px; }
  .step-icon { width: 32px; height: 32px; }
  .journey-line { width: calc(100% - 45px); margin-left: 45px; }
  .promise-strip > div { display: flex; flex-wrap: wrap; }
  .promise-strip span { width: calc(50% - 8px); line-height: 1.35; }
  .section { padding-right: 20px; padding-left: 20px; }
  .leak-grid, .offer-grid, .fit-examples, .process-grid, .starting-point { grid-template-columns: 1fr; }
  .leak-grid article { min-height: 210px; border-right: 0; }
  .leak-grid h3 { margin-top: 32px; }
  .offer-card { padding: 28px 22px; }
  .offer-card ul { grid-template-columns: 1fr; }
  .offer-number { top: 25px; right: 22px; }
  .process-grid { gap: 12px; }
  .process-grid article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    align-items: center;
    gap: 4px 16px;
    padding: 22px;
  }
  .process-grid article > span { grid-row: 1 / span 2; }
  .process-grid h3 { margin: 0 0 3px; }
  .process-grid p { grid-column: 2; }
  .form-row, .check-grid { grid-template-columns: 1fr; }
  .contact-section { gap: 36px; }
  footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Modern interactive layer */
:root {
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 60px rgba(12, 42, 34, 0.08);
  --shadow-float: 0 36px 100px rgba(5, 27, 21, 0.28);
}

::selection { color: #10251f; background: var(--mint); }

body {
  background:
    radial-gradient(circle at 8% 34%, rgba(157, 227, 213, 0.12), transparent 24rem),
    var(--paper);
}

.essentials-header {
  position: fixed;
  max-width: none;
  padding: 18px max(20px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  transition: padding 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.essentials-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: rgba(24, 54, 47, 0.09);
  color: var(--forest);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 10px 40px rgba(10, 34, 28, 0.07);
  backdrop-filter: blur(18px) saturate(1.2);
}

.page-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--mint), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.essentials-header .brand { font-size: 0.96rem; }
.essentials-header .brand img { width: 40px; }
.essentials-header nav { gap: 32px; }
.essentials-header nav a { position: relative; opacity: 0.74; }
.essentials-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.essentials-header nav a:hover::after,
.essentials-header nav a:focus-visible::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  min-width: 164px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #10251f;
  background: linear-gradient(135deg, #f7dc92 0%, #e8bd61 56%, #d7aa52 100%);
  box-shadow: 0 10px 28px rgba(215, 170, 82, 0.3), inset 0 1px rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.header-cta:hover, .header-cta:focus-visible {
  color: #10251f;
  background: linear-gradient(135deg, #ffe7a5 0%, #f0c86e 56%, #e0b356 100%);
  box-shadow: 0 14px 34px rgba(215, 170, 82, 0.42), inset 0 1px rgba(255, 255, 255, 0.65);
  transform: translateY(-2px) scale(1.02);
}
.header-cta:focus-visible { outline: 3px solid rgba(157, 227, 213, 0.75); outline-offset: 3px; }
.essentials-header.is-scrolled .header-cta {
  border-color: rgba(138, 91, 17, 0.18);
  color: #10251f;
  background: linear-gradient(135deg, #f7dc92 0%, #e8bd61 56%, #d7aa52 100%);
  box-shadow: 0 8px 22px rgba(145, 101, 29, 0.2), inset 0 1px rgba(255, 255, 255, 0.55);
}

.hero {
  min-height: 830px;
  gap: clamp(54px, 7vw, 112px);
  padding-top: 152px;
  background:
    radial-gradient(circle at 78% 24%, rgba(45, 190, 165, 0.24), transparent 28%),
    radial-gradient(circle at 14% 88%, rgba(215, 170, 82, 0.16), transparent 24%),
    linear-gradient(140deg, #0c2b24 0%, #123d34 46%, #1b5a4d 100%);
}

.hero::before {
  opacity: 0.7;
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at 65% 35%, black, transparent 76%);
}

.hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -280px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 144px rgba(255,255,255,.018);
  content: "";
}

.eyebrow { margin-bottom: 22px; }
h1 {
  max-width: 790px;
  font-family: inherit;
  font-size: clamp(3.9rem, 6.2vw, 6.75rem);
  font-weight: 760;
  letter-spacing: -0.015em;
  line-height: 0.98;
}
h1 em {
  display: inline;
  color: transparent;
  background: linear-gradient(100deg, #f3d58c 10%, #d7aa52 52%, #9de3d5 115%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  font-weight: inherit;
}
.hero-lead { max-width: 610px; margin-top: 32px; color: rgba(255,255,255,.74); }
.button { min-height: 54px; padding: 0 24px; border-radius: 999px; }
.button.primary { background: linear-gradient(120deg, #f1d483, #d7aa52); box-shadow: 0 16px 36px rgba(215,170,82,.22); }
.button.primary:hover, .button.primary:focus-visible { box-shadow: 0 20px 46px rgba(215,170,82,.3); }
.hero-trust { gap: 10px; }
.hero-trust span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: rgba(255,255,255,.045); backdrop-filter: blur(8px); }

.front-desk-card {
  padding: 20px;
  border-color: rgba(255,255,255,.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-float);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg) translateY(8px);
  backdrop-filter: blur(18px);
  transition: transform 360ms cubic-bezier(.2,.8,.2,1), box-shadow 360ms ease;
}
.front-desk-card:hover { transform: perspective(1100px) rotateY(0) rotateX(0) translateY(0); box-shadow: 0 42px 110px rgba(5,27,21,.34); }
.card-topline { padding: 3px 6px 18px; }
.journey-step { position: relative; margin: 4px 0; padding: 17px 10px; border: 1px solid transparent; border-radius: 16px; opacity: .74; transition: opacity 380ms ease, background 380ms ease, border-color 380ms ease, transform 380ms ease; }
.journey-step.is-active { border-color: rgba(14,118,104,.12); opacity: 1; background: linear-gradient(120deg, rgba(229,247,241,.88), rgba(255,255,255,.68)); transform: translateX(4px); }
.journey-step.is-active .step-icon { color: #fff; background: linear-gradient(135deg, var(--teal), #28a28f); box-shadow: 0 8px 22px rgba(14,118,104,.22); }
.journey-line { opacity: .6; }
.card-result { margin-top: 8px; border-radius: 15px; background: linear-gradient(120deg, #163b32, #20574b); }

.promise-strip { position: relative; z-index: 2; padding-top: 26px; padding-bottom: 26px; background: #0b2922; box-shadow: 0 18px 50px rgba(6,24,19,.16); }
.promise-strip span { color: rgba(255,255,255,.82); }
.promise-strip > div { grid-template-columns: repeat(3, 1fr); }

.section { padding-top: clamp(76px, 7.2vw, 104px); padding-bottom: clamp(76px, 7.2vw, 104px); }
.section-heading h2, .fit-copy h2, .contact-copy h2 {
  font-family: inherit;
  font-weight: 730;
  letter-spacing: -.012em;
  line-height: 1.02;
}
.kicker, .offer-label, .outcome-overline { letter-spacing: .14em; }

.problem-section { background: rgba(255,253,249,.82); }
.leak-grid { gap: 12px; border: 0; border-radius: 0; overflow: visible; }
.leak-grid article {
  min-height: 268px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(12,42,34,.035);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.leak-grid article:hover { border-color: rgba(14,118,104,.22); box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.leak-grid .after-card { border-color: transparent; background: linear-gradient(145deg, #153c32, #236052); box-shadow: 0 22px 54px rgba(13,51,42,.17); }

.included-section { background: linear-gradient(180deg, #f5f1e9, #edf4ef); }
.offer-grid { gap: 20px; }
.offer-card {
  overflow: hidden;
  border-color: rgba(24,54,47,.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 50px rgba(12,42,34,.055);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.offer-card::after {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -110px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,227,213,.32), transparent 68%);
  content: "";
  pointer-events: none;
}
.offer-card:hover { border-color: rgba(14,118,104,.22); box-shadow: 0 26px 70px rgba(12,42,34,.1); transform: translateY(-6px); }
.offer-card h3 { font-family: inherit; font-weight: 720; letter-spacing: 0; line-height: 1.12; }
.offer-card.featured { background: linear-gradient(145deg, #fff, #ebf7f3); }
.offer-number { font-family: inherit; font-weight: 760; }
.outcome-card { background: linear-gradient(145deg, #12382f, #1f5b4c); }
.mini-dashboard span { border-radius: var(--radius-sm); backdrop-filter: blur(8px); }
.simple-offer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.simple-offer-grid .offer-card { min-height: 430px; }
.simple-offer-grid .offer-card ul { grid-template-columns: 1fr; margin-top: auto; }
.simple-offer-grid .offer-card { display: flex; flex-direction: column; }

.fit-section { align-items: center; background: linear-gradient(140deg, #102f28, #1d5346 72%, #286456); }
.fit-copy h2 { font-size: clamp(2.7rem, 4.5vw, 4.75rem); }
.fit-explorer { min-width: 0; }
.fit-tabs { display: flex; gap: 8px; margin-bottom: 12px; padding: 6px; overflow-x: auto; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.045); scrollbar-width: none; }
.fit-tabs::-webkit-scrollbar { display: none; }
.fit-tab { min-height: 44px; flex: 0 0 auto; padding: 0 15px; border: 0; border-radius: 999px; color: rgba(255,255,255,.72); background: transparent; font: inherit; font-size: .72rem; font-weight: 800; cursor: pointer; transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.fit-tab.is-active { color: var(--forest); background: #fff; box-shadow: 0 8px 22px rgba(6,26,21,.16); }
.fit-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.fit-panel { min-height: 385px; padding: clamp(28px, 4vw, 44px); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055)); box-shadow: 0 28px 70px rgba(5,25,20,.18); backdrop-filter: blur(14px); }
.fit-panel-topline { display: flex; justify-content: space-between; gap: 20px; color: var(--mint); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.fit-panel-topline small { color: rgba(255,255,255,.62); font-size: inherit; }
.fit-panel h3 { max-width: 620px; margin: 58px 0 16px; color: #fff; font-size: clamp(1.75rem, 3vw, 2.7rem); letter-spacing: -.01em; line-height: 1.12; }
.fit-panel > p { max-width: 590px; margin: 0; color: rgba(255,255,255,.65); }
.fit-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.fit-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.76); background: rgba(255,255,255,.055); font-size: .72rem; font-weight: 750; }
.fit-control-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.fit-control-note .status-dot { flex: 0 0 auto; margin-top: 5px; }
.fit-control-note p { margin: 0; color: rgba(255,255,255,.7); font-size: .76rem; }
.fit-control-note strong { color: #fff; }

.pricing-section { background: linear-gradient(180deg, #eef4ef, #f8f4ec); }
.pricing-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(440px, .72fr); align-items: center; gap: clamp(56px, 9vw, 124px); max-width: 1180px; margin: 0 auto; }
.pricing-copy h2 { max-width: 620px; margin: 0; color: var(--forest); font-size: clamp(2.7rem, 4.5vw, 4.75rem); font-weight: 730; letter-spacing: -.012em; line-height: 1.02; }
.pricing-copy > p:not(.kicker) { max-width: 590px; margin: 25px 0 0; color: var(--muted); font-size: 1.04rem; }
.pricing-upgrade-note { display: flex; align-items: flex-start; gap: 12px; max-width: 590px; margin-top: 34px; padding: 22px 24px; border: 1px solid rgba(14,118,104,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.56); }
.pricing-upgrade-note .status-dot { flex: 0 0 auto; margin-top: 6px; }
.pricing-upgrade-note p { margin: 0; color: var(--muted); font-size: .82rem; }
.pricing-upgrade-note strong { display: block; margin-bottom: 3px; color: var(--forest); }
.pricing-card { position: relative; overflow: hidden; padding: clamp(30px, 4vw, 46px); border: 1px solid rgba(24,54,47,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.9); box-shadow: 0 30px 85px rgba(12,42,34,.13); }
.pricing-card::before { position: absolute; top: 0; right: 0; left: 0; height: 5px; background: linear-gradient(90deg, var(--teal), var(--mint), var(--gold)); content: ""; }
.pricing-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.pricing-card-head p { margin: 0; color: var(--forest); font-size: 1.24rem; font-weight: 800; }
.pricing-card-head span { display: block; margin-top: 2px; color: var(--muted); font-size: .76rem; }
.pricing-card-head > strong { padding: 7px 10px; border-radius: 999px; color: var(--teal); background: var(--mint-pale); font-size: .63rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.pricing-amount { display: flex; align-items: flex-end; gap: 10px; margin-top: 32px; }
.pricing-amount > strong { color: var(--forest); font-size: clamp(4rem, 7vw, 5.75rem); font-weight: 780; letter-spacing: -.045em; line-height: .84; }
.pricing-amount sup { position: relative; top: -.65em; margin-right: 3px; font-size: .36em; letter-spacing: 0; }
.pricing-amount span { padding-bottom: 4px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.pricing-launch { display: grid; gap: 3px; margin: 25px 0 0; padding: 17px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-launch strong { color: var(--forest); font-size: .86rem; }
.pricing-launch span { color: var(--muted); font-size: .72rem; }
.pricing-card ul { display: grid; gap: 10px; margin: 24px 0 28px; padding: 0; list-style: none; }
.pricing-card li { position: relative; padding-left: 25px; color: #3d4c47; font-size: .8rem; }
.pricing-card li::before { position: absolute; left: 0; color: var(--teal); font-weight: 900; content: "✓"; }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-cta span { margin-left: auto; font-size: 1.12rem; }
.pricing-fineprint { margin: 14px 0 0; color: #596b64; font-size: .7rem; text-align: center; }

.process-section {
  padding-top: clamp(64px, 5.2vw, 76px);
  padding-bottom: clamp(40px, 3.4vw, 48px);
  background: #fffdf9;
}
.process-section .section-heading { margin-bottom: 30px; }
.process-grid { gap: 14px; }
.process-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 0;
  align-items: center;
  gap: 4px 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.process-grid article:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.process-grid article > span { grid-row: 1 / span 2; }
.process-grid h3 { margin: 0 0 3px; }
.process-grid p { grid-column: 2; }

.starting-point { background: linear-gradient(135deg, #e9f3ee, #f6f2e9); }
.starting-point ul { padding: 12px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.64); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.starting-point li:last-child { border-bottom: 0; }

.faq-section { padding-top: clamp(52px, 4.7vw, 68px); }
.faq-list details { border-color: rgba(24,54,47,.12); }
.faq-list summary { padding: 25px 0; transition: color 160ms ease; }
.faq-list summary:hover { color: var(--teal); }
.faq-list details[open] summary { color: var(--teal); }

.contact-section { background: linear-gradient(145deg, #0f3129, #1c5144); }
.essentials-form { border: 1px solid rgba(255,255,255,.45); border-radius: var(--radius-lg); background: rgba(255,253,249,.96); box-shadow: 0 32px 90px rgba(4,22,17,.27); backdrop-filter: blur(18px); }
.essentials-form input[type="text"], .essentials-form input[type="tel"], .essentials-form input[type="email"], .essentials-form input[type="url"], .essentials-form select { width: 100%; min-height: 52px; padding: 0 13px; border: 1px solid rgba(24,54,47,.2); border-radius: var(--radius-sm); color: var(--ink); background: rgba(255,255,255,.9); font: inherit; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.essentials-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,118,104,.1); }
.check-grid label { border-radius: var(--radius-sm); transition: border-color 160ms ease, background 160ms ease; }
.check-grid label:has(input:checked) { border-color: rgba(14,118,104,.45); background: var(--mint-pale); }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--teal);
}

.reveal-item { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .front-desk-card { transform: none; }
  .fit-section { align-items: start; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-copy { max-width: 760px; }
  .pricing-card { max-width: 680px; }
  .simple-offer-grid { grid-template-columns: 1fr; }
  .simple-offer-grid .offer-card { min-height: 0; }
}

@media (max-width: 700px) {
  .section { padding-top: 64px; padding-bottom: 64px; }
  .section-heading { margin-bottom: 36px; }
  .essentials-header { gap: 16px; padding: 14px 18px; }
  .essentials-header.is-scrolled { padding: 10px 18px; }
  .hero { min-height: auto; padding: 118px 20px 68px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); letter-spacing: 0; line-height: 1.04; }
  .hero-trust span { width: fit-content; }
  .front-desk-card:hover { transform: none; }
  .journey-step.is-active { transform: none; }
  .promise-strip { padding-top: 23px; padding-bottom: 23px; }
  .promise-strip > div { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .promise-strip span { width: auto; }
  .leak-grid { gap: 10px; }
  .leak-grid article { min-height: 190px; }
  .offer-card { border-radius: 24px; }
  .pricing-section { padding-top: 64px; padding-bottom: 64px; }
  .pricing-layout { gap: 38px; }
  .pricing-copy h2 { font-size: clamp(2.45rem, 11vw, 3.45rem); }
  .pricing-card { padding: 28px 22px; border-radius: 24px; }
  .pricing-card-head { display: grid; gap: 12px; }
  .pricing-card-head > strong { width: fit-content; }
  .pricing-amount { margin-top: 28px; }
  .pricing-upgrade-note { padding: 18px; }
  .process-section { padding-top: 56px; padding-bottom: 40px; }
  .process-section .section-heading { margin-bottom: 28px; }
  .process-grid { gap: 12px; }
  .process-grid article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    align-items: center;
    gap: 4px 16px;
    padding: 22px;
  }
  .process-grid article > span { grid-row: 1 / span 2; }
  .process-grid h3 { margin: 0 0 3px; }
  .process-grid p { grid-column: 2; }
  .faq-section { padding-top: 48px; }
  .fit-section { gap: 44px; }
  .fit-tabs { margin-right: -20px; padding-right: 26px; border-radius: 16px 0 0 16px; }
  .fit-panel { min-height: 0; padding: 26px 22px; border-radius: 24px; }
  .fit-panel h3 { margin-top: 38px; }
  .starting-point ul { padding: 8px 18px; }
  .essentials-form { border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; transform: none; }
  .front-desk-card { transform: none; }
}
