:root {
  --graphite: #151719;
  --graphite-2: #25282b;
  --graphite-3: #303438;
  --paper: #f5f6f3;
  --paper-2: #e9ece7;
  --white: #ffffff;
  --orange: #f26a21;
  --orange-2: #d85310;
  --green: #59705a;
  --green-2: #789079;
  --text: #1d2123;
  --muted: #626a6d;
  --muted-light: #b7bdb8;
  --line: rgba(21, 23, 25, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --danger: #b63f33;
  --success: #3e7044;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 28px 80px rgba(14, 16, 17, 0.13);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.32);
  --container: 1240px;
  --header-height: 78px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--paper);
  font-family: Manrope, Inter, Onest, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, picture, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, ul, ol, dl, dd { margin-top: 0; }
section { position: relative; }
[hidden] { display: none !important; }

::selection { background: rgba(242, 106, 33, 0.25); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: clamp(78px, 8vw, 128px) 0; }
.section-light { background: var(--paper); }
.section-soft { background: var(--paper-2); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(242, 106, 33, 0.12), transparent 34%),
    radial-gradient(circle at 15% 88%, rgba(89, 112, 90, 0.18), transparent 38%),
    var(--graphite);
}
.section-graphite {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%) 0 0/32px 32px,
    var(--graphite-2);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #f8aa7f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}
.eyebrow span { opacity: .65; }
.eyebrow-dark { color: var(--orange-2); }

h1, h2, h3 {
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { margin-bottom: 24px; font-size: clamp(40px, 5.6vw, 76px); }
h2 { margin-bottom: 22px; font-size: clamp(34px, 4.1vw, 58px); }
h3 { margin-bottom: 14px; font-size: clamp(21px, 2vw, 27px); }

.section-heading { max-width: 810px; margin-bottom: clamp(42px, 5vw, 72px); }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); }
.section-heading-light > p:last-child,
.section-dark .section-heading > p:last-child,
.section-graphite .section-heading > p:last-child { color: #c6cbc7; }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  max-width: none;
}
.split-heading > p { max-width: 500px; }
.centered-heading { margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(242, 106, 33, .48);
  outline-offset: 3px;
}
.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(242, 106, 33, .22);
}
.button-primary:hover { background: var(--orange-2); box-shadow: 0 18px 40px rgba(242, 106, 33, .31); }
.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}
.button-ghost:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.09); }
.button-ghost-dark { color: var(--graphite); border-color: var(--line); background: transparent; }
.button-ghost-dark:hover { border-color: rgba(21,23,25,.38); background: rgba(21,23,25,.04); }
.button-lg { min-height: 58px; padding: 17px 26px; border-radius: 14px; }
.button-sm { min-height: 44px; padding: 11px 16px; font-size: 14px; }
.button-block { width: 100%; }
.button[disabled] { opacity: .58; cursor: wait; transform: none; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-2);
  font-weight: 780;
}
.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translateX(4px); }
.microcopy { margin: 14px 0 0; color: var(--muted-light); font-size: 14px; line-height: 1.5; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(21, 23, 25, .82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(120%);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled { background: rgba(21,23,25,.95); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  color: var(--orange);
  background: rgba(242,106,33,.09);
  border: 1px solid rgba(242,106,33,.28);
  border-radius: 13px;
}
.brand-mark svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: grid; gap: 2px; line-height: 1.2; }
.brand-copy strong { max-width: 210px; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.brand-copy small { color: #aeb5b0; font-size: 11px; letter-spacing: .02em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.desktop-nav a { color: #ced2cf; font-size: 14px; font-weight: 670; transition: color var(--transition); }
.desktop-nav a:hover { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 780; white-space: nowrap; }
.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  transition: background var(--transition), border-color var(--transition);
}
.icon-button:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.09); }
.icon-button svg { width: 20px; fill: currentColor; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; background: currentColor; border-radius: 99px; transition: transform var(--transition), opacity var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 34px 20px;
  background: rgba(21,23,25,.98);
}
.mobile-menu nav { display: grid; gap: 6px; width: min(100%, 520px); margin-inline: auto; }
.mobile-menu nav > a:not(.button) { padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 21px; font-weight: 720; }
.mobile-menu .button { margin-top: 20px; }

.hero {
  min-height: 840px;
  padding: calc(var(--header-height) + clamp(62px, 7vw, 110px)) 0 clamp(78px, 8vw, 120px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 15%, rgba(242,106,33,.16), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(89,112,90,.18), transparent 30%),
    var(--graphite);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    repeating-radial-gradient(ellipse at 95% 0%, transparent 0 50px, rgba(255,255,255,.11) 51px 52px, transparent 53px 78px),
    linear-gradient(120deg, transparent 0 68%, rgba(242,106,33,.055) 68% 69%, transparent 69%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(430px, .85fr); gap: clamp(48px, 6vw, 92px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 780px; margin-bottom: 31px; color: #cbd0cc; font-size: clamp(18px, 1.75vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-metrics { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; margin-top: 42px; overflow: visible; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.12); }
.metric { position: relative; min-height: 126px; padding: 19px 18px; background: rgba(21,23,25,.78); }
.metric:first-child { border-radius: 17px 0 0 17px; }
.metric:last-child { border-radius: 0 17px 17px 0; }
.metric strong { display: block; margin-bottom: 5px; color: var(--white); font-size: clamp(25px, 2.3vw, 34px); line-height: 1; }
.metric > span:not(.metric-help) { display: block; color: #aeb5b0; font-size: 12px; line-height: 1.35; }
.metric-help {
  position: absolute;
  top: 14px;
  right: 12px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #b9bfbb;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  cursor: help;
  font-size: 11px;
  font-weight: 800;
}
.metric-help [role="tooltip"] {
  position: absolute;
  z-index: 12;
  right: -10px;
  bottom: calc(100% + 12px);
  width: 245px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-dark);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}
.metric-help:hover [role="tooltip"], .metric-help:focus [role="tooltip"] { opacity: 1; transform: translateY(0); }
.hero-visual { position: relative; }
.media-frame { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--graphite-2); box-shadow: var(--shadow-dark); }
.hero-media { aspect-ratio: 1.05 / 1; border: 1px solid rgba(255,255,255,.12); transform: rotate(1.6deg); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.media-label { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 12px 14px; color: #f7d4bf; background: rgba(21,23,25,.86); border: 1px solid rgba(242,106,33,.28); border-radius: 11px; backdrop-filter: blur(9px); font-size: 13px; font-weight: 760; text-align: center; }
.hero-note { position: absolute; z-index: 4; right: -20px; bottom: 38px; display: flex; width: min(340px, 78%); gap: 13px; padding: 18px; color: var(--text); background: var(--paper); border-radius: 17px; box-shadow: var(--shadow-dark); transform: rotate(-1.6deg); }
.hero-note strong { display: block; margin-bottom: 3px; line-height: 1.3; }
.hero-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.status-dot { width: 12px; height: 12px; flex: 0 0 12px; margin-top: 5px; background: var(--green); border: 3px solid rgba(89,112,90,.22); border-radius: 50%; box-shadow: 0 0 0 4px rgba(89,112,90,.12); }

.trust-strip { color: var(--white); background: var(--graphite-2); border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { display: grid; min-height: 112px; align-content: center; padding: 20px 26px; border-right: 1px solid rgba(255,255,255,.09); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span { margin-bottom: 5px; color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.trust-grid strong { margin-bottom: 1px; font-size: 16px; }
.trust-grid small { color: #aeb4b0; font-size: 12px; }

.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scenario-card {
  min-height: 290px;
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.scenario-card:hover { border-color: rgba(242,106,33,.38); box-shadow: 0 20px 55px rgba(21,23,25,.09); transform: translateY(-5px); }
.line-icon { display: grid; width: 54px; height: 54px; margin-bottom: 38px; place-items: center; color: var(--orange-2); background: rgba(242,106,33,.08); border-radius: 15px; }
.line-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.scenario-card p { margin: 0; color: var(--muted); }

.result-grid { display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(390px, .75fr); gap: clamp(46px, 7vw, 100px); align-items: center; }
.before-after { position: relative; overflow: hidden; aspect-ratio: 3 / 2; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); box-shadow: var(--shadow-dark); isolation: isolate; }
.before-after picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.before-after img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; user-select: none; }
.after-layer { position: absolute; z-index: 2; top: 0; bottom: 0; left: 0; width: 50%; overflow: hidden; }
.after-layer img { width: calc(100vw); max-width: none; }
.ba-label { position: absolute; z-index: 5; top: 18px; padding: 8px 11px; color: var(--white); background: rgba(21,23,25,.78); border-radius: 8px; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.ba-before { right: 18px; }
.ba-after { left: 18px; }
.ba-divider { position: absolute; z-index: 4; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white); transform: translateX(-50%); pointer-events: none; }
.ba-divider span { position: absolute; top: 50%; left: 50%; display: grid; width: 48px; height: 48px; place-items: center; color: var(--graphite); background: var(--white); border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.22); transform: translate(-50%,-50%); }
.ba-range { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.media-disclaimer { margin: 14px 0 0; color: #aeb5b0; font-size: 13px; }
.media-disclaimer.centered { text-align: center; color: var(--muted); }
.outcome-list { display: grid; gap: 0; }
.outcome-list > article { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.outcome-list > article:first-child { padding-top: 0; }
.outcome-list > article > span { color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.outcome-list h3 { margin-bottom: 8px; font-size: 22px; }
.outcome-list p { margin: 0; color: #bfc5c0; }
.notice { padding: 22px 24px; border-radius: 16px; }
.notice strong { display: block; margin-bottom: 6px; }
.notice p { margin: 0; }
.notice-green { margin-top: 26px; color: #dce6dc; background: rgba(89,112,90,.2); border: 1px solid rgba(120,144,121,.32); }
.notice-green p { color: #c5d1c6; }
.notice-orange { display: grid; grid-template-columns: 220px 1fr; gap: 30px; margin-top: 24px; color: #4c2611; background: rgba(242,106,33,.12); border: 1px solid rgba(242,106,33,.28); }
.notice-orange p { color: #5f4a3e; }

.object-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.object-card { display: flex; min-height: 550px; flex-direction: column; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 36px rgba(21,23,25,.045); }
.object-card-accent { color: var(--white); background: var(--graphite-2); border-color: transparent; box-shadow: var(--shadow); transform: translateY(-14px); }
.object-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 48px; }
.object-card-top span { color: var(--orange); font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.object-card-top small { color: var(--muted); font-size: 11px; font-weight: 680; text-align: right; }
.object-card-accent .object-card-top small { color: #aeb5b0; }
.object-card h3 { font-size: 31px; }
.check-list { display: grid; gap: 12px; margin: 0 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: var(--muted); }
.check-list li::before { content: ""; position: absolute; top: .7em; left: 0; width: 10px; height: 2px; background: var(--orange); }
.object-card-accent .check-list li { color: #c7ccc8; }
.object-card .text-link { margin-top: auto; }
.card-caveat { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.object-card-accent .card-caveat { color: #9da49f; }

.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--line-dark); }
.benefit-card { min-height: 330px; padding: 34px; background: var(--graphite-2); }
.benefit-card:nth-child(2n) { background: #2a2e31; }
.benefit-number { display: block; margin-bottom: 48px; color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.benefit-card h3 { font-size: 24px; }
.benefit-card p { color: #c5cbc6; }
.benefit-card small { display: block; padding-top: 14px; color: #9fa7a1; border-top: 1px solid rgba(255,255,255,.1); line-height: 1.5; }

.video-shell { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--graphite); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.video-shell > img, .video-shell > video, .video-shell > picture { width: 100%; height: 100%; object-fit: cover; }
.video-shell > picture img { width: 100%; height: 100%; object-fit: cover; }
.video-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; padding: 30px; color: var(--white); background: linear-gradient(0deg, rgba(21,23,25,.52), rgba(21,23,25,.08)); text-align: center; }
.video-placeholder strong { margin-top: 18px; font-size: clamp(20px, 2vw, 30px); }
.video-placeholder small { margin-top: 6px; color: #c4cac5; }
.play-symbol { display: grid; width: 82px; height: 82px; place-items: center; padding-left: 5px; background: var(--orange); border-radius: 50%; box-shadow: 0 18px 42px rgba(242,106,33,.32); }
.video-control { position: absolute; inset: 0; display: grid; place-items: center; border: 0; color: var(--white); background: rgba(21,23,25,.18); cursor: pointer; }
.video-control span { display: grid; width: 84px; height: 84px; place-items: center; padding-left: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 18px 42px rgba(242,106,33,.32); font-size: 26px; }

.case-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.case-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.case-media-grid figure { position: relative; margin: 0; aspect-ratio: 3/2; overflow: hidden; background: var(--graphite); }
.case-media-grid img { width: 100%; height: 100%; object-fit: cover; }
.case-media-grid figcaption { position: absolute; top: 16px; left: 16px; padding: 7px 10px; color: var(--white); background: rgba(21,23,25,.78); border-radius: 8px; font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.case-content { padding: clamp(28px, 5vw, 58px); }
.case-kicker { margin-bottom: 12px; color: var(--orange-2); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.case-content h3 { max-width: 760px; font-size: clamp(25px, 3vw, 40px); }
.case-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 36px 0 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.case-facts > div { padding: 18px; background: var(--paper); }
.case-facts dt { margin-bottom: 5px; color: var(--muted); font-size: 12px; }
.case-facts dd { margin: 0; font-weight: 750; }

.process-list { display: grid; grid-template-columns: repeat(5,1fr); margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { position: relative; min-height: 310px; padding: 25px 25px 30px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); border-radius: 16px 0 0 16px; }
.process-list li:last-child { border-radius: 0 16px 16px 0; }
.process-list li::before { content: ""; position: absolute; top: -5px; left: 25px; width: 10px; height: 10px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 5px var(--paper); }
.process-list > li > span { display: block; margin-bottom: 72px; color: var(--orange-2); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.process-list h3 { font-size: 20px; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }
.section-cta-row { display: flex; align-items: center; gap: 24px; justify-content: center; margin-top: 40px; }
.section-cta-row p { max-width: 460px; margin: 0; color: var(--muted); font-size: 14px; }

.estimate-section { overflow: hidden; }
.estimate-section::after { content: ""; position: absolute; right: -180px; bottom: -220px; width: 620px; height: 620px; border: 1px solid rgba(242,106,33,.2); border-radius: 50%; box-shadow: 0 0 0 80px rgba(242,106,33,.03), 0 0 0 160px rgba(242,106,33,.025); }
.estimate-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.7fr) minmax(520px,1fr); gap: clamp(48px,7vw,95px); align-items: start; }
.price-message { padding: 24px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; }
.price-message > span { display: block; color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.price-message > strong { display: block; margin-top: 6px; font-size: 21px; }
.price-message p { margin: 10px 0 0; color: #b9c0bb; font-size: 14px; }
.factor-title { margin: 36px 0 18px; font-size: 20px; }
.factor-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.factor-cloud li { padding: 8px 11px; color: #c7cdc8; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: 12px; }

.lead-form { color: var(--text); }
.quiz-card, .quick-form { padding: clamp(24px,4vw,44px); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-dark); }
.quiz-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.quiz-head p, .form-head p { margin-bottom: 5px; color: var(--orange-2); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.quiz-head h3, .form-head h3 { margin-bottom: 0; font-size: clamp(26px,3vw,38px); }
.quiz-step-label { flex: 0 0 auto; padding: 7px 10px; color: var(--muted); background: var(--paper); border-radius: 8px; font-size: 12px; font-weight: 750; }
.progress-track { height: 6px; margin: 24px 0 32px; overflow: hidden; background: var(--paper-2); border-radius: 999px; }
.progress-track span { display: block; width: 33.333%; height: 100%; background: var(--orange); border-radius: inherit; transition: width 260ms ease; }
.quiz-step { margin: 0; padding: 0; border: 0; }
.quiz-step legend { margin-bottom: 26px; padding: 0; font-size: 20px; font-weight: 780; }
.field-group { display: grid; gap: 8px; margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group label, .field-label { color: #34393c; font-size: 14px; font-weight: 760; }
.field-group label small { color: var(--muted); font-weight: 560; }
.field-group input[type="text"],
.field-group input[type="tel"],
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cbd0cc;
  border-radius: 11px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field-group textarea { min-height: 112px; resize: vertical; }
.field-group input:hover, .field-group select:hover, .field-group textarea:hover { border-color: #9aa29d; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,106,33,.11); outline: none; }
.field-group input[aria-invalid="true"], .field-group select[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(182,63,51,.1); }
.field-group > small { color: var(--muted); font-size: 11px; }
.choice-grid { display: grid; gap: 8px; }
.choice-grid-2 { grid-template-columns: 1fr 1fr; }
.choice-grid-3 { grid-template-columns: repeat(3,1fr); }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: flex; min-height: 52px; align-items: center; padding: 11px 13px; color: #454b4e; background: var(--paper); border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 650; transition: border-color var(--transition), color var(--transition), background var(--transition); }
.choice input:checked + span { color: #7c330f; background: rgba(242,106,33,.1); border-color: rgba(242,106,33,.55); }
.choice input:focus-visible + span { outline: 3px solid rgba(242,106,33,.4); outline-offset: 2px; }
.quiz-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.file-drop { position: relative; display: grid; min-height: 150px; place-content: center; justify-items: center; padding: 24px; overflow: hidden; color: #4a5053; background: var(--paper); border: 1px dashed #aeb6b0; border-radius: 13px; text-align: center; transition: background var(--transition), border-color var(--transition); }
.file-drop.is-dragover { background: rgba(242,106,33,.08); border-color: var(--orange); }
.file-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-drop strong { margin: 6px 0 2px; }
.file-drop small { color: var(--muted); font-size: 11px; }
.upload-icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--orange-2); background: rgba(242,106,33,.1); border-radius: 50%; font-weight: 900; }
.compact-drop { min-height: 118px; }
.file-list { display: grid; gap: 6px; }
.file-pill { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 10px; background: var(--paper); border-radius: 8px; font-size: 12px; }
.file-pill span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-pill em { flex: 0 0 auto; color: var(--muted); font-style: normal; }
.file-error { color: var(--danger); font-size: 12px; }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 18px 0; color: #555c5f; font-size: 12px; line-height: 1.5; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--orange); }
.consent-row a { color: var(--orange-2); text-decoration: underline; text-underline-offset: 2px; }
.form-status { min-height: 0; margin-top: 10px; font-size: 13px; }
.form-status.is-error { padding: 10px 12px; color: #73261e; background: #fdecea; border-radius: 9px; }
.form-status.is-success { padding: 10px 12px; color: #28542d; background: #eaf5eb; border-radius: 9px; }
.quick-form .form-head { margin-bottom: 25px; }
.quick-form .microcopy { color: var(--muted); text-align: center; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 45px rgba(21,23,25,.05); }
.comparison-table { width: 100%; min-width: 900px; border-collapse: collapse; text-align: left; }
.comparison-table th, .comparison-table td { padding: 23px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table thead th { color: var(--white); background: var(--graphite-2); font-size: 13px; }
.comparison-table thead th:last-child { background: #653016; }
.comparison-table tbody th { width: 19%; background: var(--paper); font-size: 14px; }
.comparison-table td { color: var(--muted); font-size: 13px; line-height: 1.55; }
.comparison-table td:last-child { color: #4e372b; background: rgba(242,106,33,.055); }

.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.safety-card { padding: clamp(28px,4vw,46px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.safety-card-dark { color: var(--white); background: var(--graphite-2); border-color: transparent; }
.safety-card h3 { margin-bottom: 32px; font-size: 29px; }
.safety-card-dark .check-list li { color: #c7cdc8; }

.specs-layout { display: grid; grid-template-columns: minmax(280px,.62fr) minmax(560px,1fr); gap: clamp(50px,7vw,100px); align-items: start; }
.specs-heading { position: sticky; top: calc(var(--header-height) + 30px); }
.spec-highlight { display: flex; width: fit-content; align-items: baseline; gap: 10px; margin-top: 32px; padding: 16px 18px; background: rgba(242,106,33,.09); border-radius: 13px; }
.spec-highlight strong { color: var(--orange-2); font-size: 32px; line-height: 1; }
.spec-highlight span { color: var(--muted); font-size: 12px; }
.accordion-stack { display: grid; gap: 10px; }
.accordion-stack details { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.accordion-stack summary { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; font-weight: 780; list-style: none; }
.accordion-stack summary::-webkit-details-marker { display: none; }
.accordion-stack summary span { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; color: var(--orange-2); background: rgba(242,106,33,.08); border-radius: 50%; transition: transform var(--transition); }
.accordion-stack details[open] summary span { transform: rotate(45deg); }
.details-content { padding: 0 22px 24px; color: var(--muted); }
.details-content p { margin: 0; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--line); }
.spec-list > div { padding: 15px; background: var(--paper); }
.spec-list dt { margin-bottom: 4px; color: var(--muted); font-size: 11px; }
.spec-list dd { margin: 0; color: var(--text); font-size: 13px; font-weight: 700; }
.spec-footnote { margin: 10px 5px 0; color: var(--muted); font-size: 12px; }

.filter-section { overflow: hidden; }
.filter-section::before { content: ""; position: absolute; top: -220px; left: -160px; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); }
.filter-grid { position: relative; display: grid; grid-template-columns: minmax(0,.62fr) minmax(520px,1fr); gap: clamp(50px,7vw,100px); align-items: start; }
.filter-grid .section-heading { position: sticky; top: calc(var(--header-height) + 30px); margin-bottom: 0; }
.filter-grid .button { margin-top: 26px; }
.filter-grid .section-heading small { display: block; max-width: 480px; margin-top: 14px; color: #98a09a; line-height: 1.55; }
.filter-list { display: grid; gap: 1px; margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--line-dark); list-style: none; }
.filter-list li { display: grid; grid-template-columns: 52px 1fr; gap: 15px; align-items: start; padding: 24px; background: var(--graphite-2); }
.filter-list span { color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.filter-list p { margin: 0; color: #c7ccc8; }

.faq-layout { display: grid; grid-template-columns: minmax(280px,.58fr) minmax(560px,1fr); gap: clamp(50px,7vw,100px); align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 30px); }
.faq-stack details { background: transparent; border-width: 0 0 1px; border-radius: 0; }
.faq-stack summary { min-height: 76px; padding-inline: 0; font-size: 17px; }
.faq-stack .details-content { padding: 0 60px 25px 0; }

.final-cta {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(242,106,33,.12), transparent 45%),
    radial-gradient(circle at 88% 8%, rgba(89,112,90,.23), transparent 30%),
    var(--graphite);
}
.final-cta::after { content: ""; position: absolute; right: -18%; bottom: -34%; width: 780px; height: 780px; opacity: .18; background: repeating-radial-gradient(ellipse at center, transparent 0 32px, rgba(255,255,255,.18) 34px 35px, transparent 37px 62px); transform: rotate(-18deg); }
.final-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.75fr) minmax(500px,.8fr); gap: clamp(48px,7vw,100px); align-items: center; }
.final-copy h2 { font-size: clamp(40px,5vw,68px); }
.final-copy > p:not(.eyebrow) { max-width: 650px; color: #c8cec9; font-size: 19px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.compact-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 32px 0 0; padding: 0; list-style: none; }
.compact-checks li { position: relative; padding-left: 18px; color: #bfc6c0; font-size: 14px; }
.compact-checks li::before { content: ""; position: absolute; top: .7em; left: 0; width: 8px; height: 2px; background: var(--orange); }

.site-footer { padding: 70px 0 24px; color: var(--white); background: #101214; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap: 42px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 24px; }
.footer-brand > p { max-width: 450px; margin: 0; color: #929a94; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin-bottom: 12px; color: #dfe3e0; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a, .footer-column span { color: #aeb5b0; font-size: 14px; }
.footer-column a:hover { color: var(--white); }
.footer-note { margin-top: 8px; color: #747c76; font-size: 11px; line-height: 1.5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; color: #707871; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }

.mobile-sticky { display: none; }
.toast { position: fixed; z-index: 2000; right: 20px; bottom: 20px; max-width: 380px; padding: 13px 16px; color: var(--white); background: var(--graphite-2); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; box-shadow: var(--shadow-dark); font-size: 13px; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-phone { display: none !important; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(390px,.75fr); gap: 44px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .metric:first-child { border-radius: 17px 0 0 0; }
  .metric:nth-child(2) { border-radius: 0 17px 0 0; }
  .metric:nth-child(3) { border-radius: 0 0 0 17px; }
  .metric:last-child { border-radius: 0 0 17px 0; }
  .scenario-grid, .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .object-card { padding: 28px; }
  .process-list { grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
  .process-list li { min-height: 280px; border: 0; background: var(--paper); border-radius: 0 !important; }
  .estimate-layout, .final-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 960px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(100%, 720px); margin-inline: auto; }
  .hero-media { aspect-ratio: 4/3; transform: none; }
  .hero-note { right: 20px; transform: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
  .split-heading, .result-grid, .specs-layout, .filter-grid, .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .split-heading { align-items: start; }
  .split-heading > p { max-width: 720px; }
  .result-grid { align-items: start; }
  .outcome-list { max-width: 760px; }
  .object-grid { grid-template-columns: 1fr; }
  .object-card { min-height: auto; }
  .object-card-accent { transform: none; }
  .object-card-top { margin-bottom: 32px; }
  .case-facts { grid-template-columns: 1fr 1fr; }
  .estimate-layout, .final-grid { grid-template-columns: 1fr; }
  .estimate-copy { max-width: 760px; }
  .quiz-card, .quick-form { max-width: 760px; }
  .specs-heading, .filter-grid .section-heading, .faq-heading { position: static; }
  .notice-orange { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .section { padding: 74px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: clamp(36px, 10.5vw, 48px); }
  h2 { font-size: clamp(31px, 8.7vw, 42px); }
  .site-header { backdrop-filter: blur(14px); }
  .brand { min-width: 0; }
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-copy strong { max-width: 158px; }
  .brand-copy small { display: none; }
  .header-actions .icon-button { display: none !important; }
  .hero { padding-top: calc(var(--header-height) + 42px); padding-bottom: 68px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-metrics { margin-top: 30px; }
  .metric { min-height: 111px; padding: 17px 14px; }
  .metric strong { font-size: 27px; }
  .metric-help [role="tooltip"] { right: -6px; width: 210px; }
  .hero-note { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .scenario-grid, .benefit-grid { grid-template-columns: 1fr; }
  .scenario-card { min-height: auto; }
  .line-icon { margin-bottom: 28px; }
  .before-after { border-radius: 20px; }
  .after-layer img { width: calc(100vw - 24px); }
  .outcome-list > article { grid-template-columns: 38px 1fr; }
  .object-grid { display: flex; margin-inline: -12px; padding: 0 12px 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .object-card { min-width: min(86vw, 390px); scroll-snap-align: start; }
  .benefit-card { min-height: auto; }
  .benefit-number { margin-bottom: 32px; }
  .video-shell { border-radius: 20px; }
  .video-placeholder strong { font-size: 19px; }
  .case-media-grid { grid-template-columns: 1fr; }
  .case-facts { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: auto; padding: 27px 24px; }
  .process-list > li > span { margin-bottom: 28px; }
  .section-cta-row { align-items: stretch; flex-direction: column; text-align: center; }
  .choice-grid-2, .choice-grid-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quiz-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .quiz-step-label { order: -1; }
  .quiz-actions .button { flex: 1; }
  .safety-grid { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .faq-stack .details-content { padding-right: 0; }
  .compact-checks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-sticky {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(21,23,25,.96);
    border-top: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
  }
  .mobile-sticky.is-suppressed { transform: translateY(110%); opacity: 0; visibility: hidden; pointer-events: none; }
  .mobile-sticky.single-action { grid-template-columns: 1fr; }
  .mobile-sticky .button { min-height: 50px; padding-inline: 12px; }
  .button-call { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.07); }
  .toast { right: 12px; bottom: calc(86px + env(safe-area-inset-bottom)); left: 12px; max-width: none; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .object-grid { margin-inline: -10px; padding-inline: 10px; }
  .brand-copy strong { max-width: 125px; font-size: 13px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .metric { padding: 15px 12px; }
  .metric strong { font-size: 24px; }
  .media-label { right: 10px; bottom: 10px; left: 10px; font-size: 11px; }
  .quiz-card, .quick-form { padding: 20px 16px; border-radius: 20px; }
  .accordion-stack summary { padding-inline: 16px; }
  .details-content { padding-inline: 16px; }
  .faq-stack summary { padding-inline: 0; }
  .faq-stack .details-content { padding-inline: 0; }
}

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

.input-with-action { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.input-with-action button {
  min-height: 50px;
  padding: 0 14px;
  color: var(--orange-2);
  background: rgba(242,106,33,.08);
  border: 1px solid rgba(242,106,33,.25);
  border-radius: 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 780;
}
.input-with-action button:hover { background: rgba(242,106,33,.13); }
.copy-link { padding: 0; color: #8f9791; background: transparent; border: 0; cursor: pointer; font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }
.copy-link:hover { color: var(--white); }
@media (max-width: 420px) {
  .input-with-action { grid-template-columns: 1fr; }
}

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

.simple-page,
.legal-page { min-height: 100vh; color: var(--white); background: var(--graphite); }
.thank-you-main { display: grid; min-height: 100vh; place-items: center; padding: 48px 0; background: radial-gradient(circle at 80% 20%, rgba(242,106,33,.16), transparent 30%), radial-gradient(circle at 18% 86%, rgba(89,112,90,.19), transparent 34%), var(--graphite); }
.thank-you-card { max-width: 880px; padding: clamp(30px,6vw,72px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(37,40,43,.72); box-shadow: var(--shadow-dark); }
.thank-you-card .brand { margin-bottom: 72px; }
.success-mark { display: grid; width: 66px; height: 66px; margin-bottom: 28px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 30px; font-weight: 900; box-shadow: 0 0 0 10px rgba(89,112,90,.14); }
.thank-you-card h1 { max-width: 720px; }
.thank-you-lead { max-width: 680px; color: #c4cac5; font-size: 19px; }
.lead-id { display: inline-flex; gap: 8px; margin: 8px 0 0; padding: 9px 12px; color: #c7cdc8; background: rgba(255,255,255,.06); border-radius: 9px; font-size: 13px; }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.legal-header { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); background: #101214; }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-main { padding: 70px 0 100px; color: var(--text); background: var(--paper); }
.legal-document { max-width: 880px; padding: clamp(28px,5vw,62px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.legal-document h1 { font-size: clamp(40px,6vw,64px); }
.legal-document h2 { margin-top: 42px; font-size: 27px; }
.legal-document p { color: var(--muted); }
.legal-intro { font-size: 18px; }
.legal-footnote { margin-top: 52px; padding: 18px; color: #5f4a3e !important; background: rgba(242,106,33,.09); border: 1px solid rgba(242,106,33,.22); border-radius: 12px; }
@media (max-width: 720px) {
  .thank-you-card { border-radius: 22px; }
  .thank-you-card .brand { margin-bottom: 52px; }
  .thank-you-actions { display: grid; }
  .legal-header .button { display: none; }
}

/* ========================================================================== 
   Mobile conversion and performance optimization — v1.1
   ========================================================================== */

:root {
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --header-offset: calc(var(--header-height) + var(--safe-area-top));
}

html { scroll-padding-top: calc(var(--header-offset) + 16px); }
.site-header { padding-top: var(--safe-area-top); }
.mobile-menu { top: var(--header-offset); }
.hero { padding-top: calc(var(--header-offset) + clamp(62px, 7vw, 110px)); }
.specs-heading,
.filter-grid .section-heading,
.faq-heading { top: calc(var(--header-offset) + 30px); }
.mobile-call-button,
.hero-metrics-note,
.mobile-swipe-hint { display: none; }
.button,
button,
a,
summary,
input[type="file"],
input[type="range"] { touch-action: manipulation; }
.lead-form { scroll-margin-top: calc(var(--header-offset) + 12px); }

@media (max-width: 720px) {
  :root { --header-height: 64px; }

  body { padding-bottom: 0; }
  body.has-mobile-sticky { padding-bottom: calc(70px + var(--safe-area-bottom)); }
  body.menu-open .mobile-sticky { transform: translateY(110%); opacity: 0; visibility: hidden; pointer-events: none; }

  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 60px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading > p:last-child { font-size: 16px; line-height: 1.55; }
  .split-heading,
  .result-grid,
  .specs-layout,
  .filter-grid,
  .faq-layout { gap: 30px; }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.04;
    letter-spacing: -.04em;
    text-wrap: pretty;
  }
  h2 {
    margin-bottom: 17px;
    font-size: clamp(29px, 7.6vw, 36px);
    line-height: 1.1;
    letter-spacing: -.035em;
    text-wrap: pretty;
  }
  h3 { line-height: 1.16; text-wrap: pretty; }
  .eyebrow { margin-bottom: 14px; font-size: 11px; line-height: 1.35; }
  .eyebrow::before { width: 24px; height: 2px; }

  .site-header {
    background: rgba(21, 23, 25, .97);
    backdrop-filter: none;
  }
  .header-inner { gap: 8px; }
  .brand { min-width: 0; max-width: calc(100% - 104px); gap: 9px; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 11px; }
  .brand-mark svg { width: 30px; }
  .brand-copy { min-width: 0; }
  .brand-copy strong {
    display: -webkit-box;
    max-width: min(46vw, 176px);
    overflow: hidden;
    font-size: 13px;
    line-height: 1.14;
    white-space: normal;
    text-overflow: clip;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .header-actions { gap: 6px; }
  .menu-toggle,
  .mobile-call-button { width: 44px; height: 44px; flex: 0 0 44px; }
  .mobile-call-button:not([hidden]) { display: grid !important; }
  .mobile-call-button svg { width: 19px; fill: currentColor; }

  .mobile-menu {
    inset-inline: 0;
    bottom: 0;
    height: calc(100dvh - var(--header-offset));
    padding: 22px 20px calc(28px + var(--safe-area-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(21, 23, 25, .99);
  }
  .mobile-menu nav { align-content: start; min-height: 100%; }
  .mobile-menu nav > a:not(.button) { min-height: 52px; padding: 13px 4px; font-size: 19px; }
  .mobile-menu .button { position: sticky; bottom: 0; min-height: 54px; margin-top: 18px; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-offset) + 24px);
    padding-bottom: 48px;
    background:
      radial-gradient(circle at 88% 9%, rgba(242, 106, 33, .13), transparent 32%),
      linear-gradient(180deg, #17191b 0%, #151719 100%);
  }
  .hero::before { display: none; }
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 0; align-items: start; }
  .hero-copy { display: contents; }
  .hero-copy > * { position: relative; z-index: 2; }
  .hero-eyebrow { display: flex; flex-wrap: wrap; gap: 5px 7px; align-items: center; }
  .hero-eyebrow .eyebrow-main,
  .hero-eyebrow .eyebrow-city { opacity: 1; }
  .hero-eyebrow .eyebrow-separator { opacity: .55; }
  .hero-lead { margin-bottom: 22px; font-size: 16.5px; line-height: 1.52; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .hero-actions .button { width: 100%; }
  .button-lg { min-height: 54px; padding: 15px 18px; border-radius: 13px; }
  .microcopy { margin-top: 10px; font-size: 13px; line-height: 1.45; }

  .hero-visual {
    order: 1;
    width: 100%;
    margin-top: 24px;
  }
  .hero-media { aspect-ratio: 16 / 10; border-radius: 20px; transform: none; box-shadow: 0 18px 45px rgba(0, 0, 0, .27); }
  .media-label {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: 10px;
    padding: 9px 11px;
    font-size: 10.5px;
    line-height: 1.35;
  }
  .hero-note {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    margin: 0;
    padding: 12px 13px;
    gap: 10px;
    color: var(--white);
    background: rgba(21, 23, 25, .9);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 13px;
    box-shadow: none;
    transform: none;
    backdrop-filter: blur(8px);
  }
  .hero-note strong { font-size: 13px; }
  .hero-note p { color: #c3c9c4; font-size: 10.5px; }
  .status-dot { width: 10px; height: 10px; flex-basis: 10px; }

  .hero-metrics {
    order: 2;
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
    border-radius: 15px;
  }
  .metric { min-height: 91px; padding: 14px 13px; }
  .metric:first-child { border-radius: 14px 0 0 0; }
  .metric:nth-child(2) { border-radius: 0 14px 0 0; }
  .metric:nth-child(3) { border-radius: 0 0 0 14px; }
  .metric:last-child { border-radius: 0 0 14px 0; }
  .metric strong { margin-bottom: 4px; font-size: 24px; }
  .metric > span:not(.metric-help) { max-width: 115px; font-size: 11px; }
  .metric-help { display: none; }
  .hero-metrics-note {
    order: 3;
    display: block;
    margin: 10px 0 0;
    color: #919993;
    font-size: 11px;
    line-height: 1.5;
  }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { min-height: 94px; padding: 15px 14px; border-right: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
  .trust-grid > div:nth-child(2n) { border-right: 0; }
  .trust-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .trust-grid strong { font-size: 14px; line-height: 1.25; }
  .trust-grid small { font-size: 10.5px; line-height: 1.35; }

  .scenario-grid { gap: 12px; }
  .scenario-card { padding: 24px 22px; border-radius: 17px; }
  .scenario-card h3 { margin-bottom: 10px; font-size: 22px; }
  .scenario-card p { font-size: 15px; line-height: 1.55; }
  .line-icon { width: 48px; height: 48px; margin-bottom: 22px; border-radius: 13px; }

  .result-grid { align-items: start; }
  .before-after { aspect-ratio: 4 / 3; border-radius: 18px; }
  .after-layer img { width: calc(100vw - 32px); }
  .ba-label { top: 12px; padding: 6px 9px; font-size: 10px; }
  .ba-before { right: 12px; }
  .ba-after { left: 12px; }
  .ba-divider span { width: 44px; height: 44px; }
  .outcome-list > article { grid-template-columns: 32px 1fr; gap: 12px; padding: 20px 0; }
  .outcome-list h3 { font-size: 20px; }
  .outcome-list p { font-size: 15px; line-height: 1.55; }
  .notice { padding: 18px; border-radius: 14px; }

  .object-grid {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .object-grid::-webkit-scrollbar { display: none; }
  .object-card {
    min-width: min(84vw, 350px);
    min-height: 500px;
    padding: 25px 23px;
    border-radius: 18px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .object-card h3 { font-size: 27px; }
  .object-card-top { margin-bottom: 30px; }
  .check-list { gap: 10px; margin-bottom: 25px; }
  .check-list li { font-size: 14.5px; line-height: 1.5; }
  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
  }
  .mobile-swipe-hint span { color: var(--orange-2); font-size: 18px; }

  .benefit-grid { border-radius: 17px; }
  .benefit-card { min-height: auto; padding: 25px 22px; }
  .benefit-number { margin-bottom: 24px; }
  .benefit-card h3 { font-size: 22px; }
  .benefit-card p { font-size: 15px; line-height: 1.55; }

  .process-list li { min-height: auto; padding: 24px 22px; }
  .process-list li::before { left: 22px; }
  .process-list > li > span { margin-bottom: 20px; }
  .process-list h3 { font-size: 20px; }
  .process-list p { font-size: 14.5px; line-height: 1.55; }
  .section-cta-row { gap: 14px; margin-top: 28px; }
  .section-cta-row .button { width: 100%; }

  .estimate-section::after,
  .filter-section::before,
  .final-cta::after { display: none; }
  .estimate-layout,
  .final-grid { gap: 34px; }
  .price-message { padding: 19px; }
  .factor-title { margin-top: 28px; }
  .factor-cloud { gap: 7px; }
  .factor-cloud li { padding: 7px 10px; }

  .quiz-card,
  .quick-form {
    width: 100%;
    padding: 22px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(0,0,0,.25);
  }
  .quiz-head { gap: 8px; }
  .quiz-head h3,
  .form-head h3 { font-size: 26px; }
  .quiz-step-label { padding: 6px 9px; }
  .progress-track { margin: 18px 0 24px; }
  .quiz-step { scroll-margin-top: calc(var(--header-offset) + 12px); }
  .quiz-step legend { margin-bottom: 20px; font-size: 18px; line-height: 1.35; }
  .choice-grid-2,
  .choice-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice span {
    min-height: 60px;
    padding: 10px 11px;
    font-size: 12.5px;
    line-height: 1.32;
  }
  .field-group { gap: 7px; margin-bottom: 18px; }
  .field-group label,
  .field-label { font-size: 14px; }
  .field-group input[type="text"],
  .field-group input[type="tel"],
  .field-group select,
  .field-group textarea {
    min-height: 54px;
    padding: 14px;
    font-size: 16px;
  }
  .field-group textarea { min-height: 108px; }
  .input-with-action button { min-height: 50px; font-size: 13px; }
  .file-drop { min-height: 116px; padding: 18px 14px; }
  .file-drop strong { font-size: 14px; }
  .file-drop small { line-height: 1.45; }
  .quiz-actions {
    position: sticky;
    z-index: 8;
    bottom: calc(8px + var(--safe-area-bottom));
    margin: 22px -8px -8px;
    padding: 10px 8px 8px;
    background: rgba(255,255,255,.97);
    border-radius: 13px;
    box-shadow: 0 -10px 28px rgba(255,255,255,.94), 0 10px 30px rgba(21,23,25,.12);
    backdrop-filter: blur(8px);
  }
  .quiz-actions .button { min-height: 52px; padding-inline: 14px; }
  .consent-row { grid-template-columns: 22px 1fr; font-size: 13px; }
  .consent-row input { width: 20px; height: 20px; }
  .quick-form .button[type="submit"] { min-height: 54px; }

  .table-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .comparison-table { display: block; width: 100%; min-width: 0; }
  .comparison-table thead { display: none; }
  .comparison-table tbody { display: grid; gap: 12px; }
  .comparison-table tr { display: block; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 10px 26px rgba(21,23,25,.055); }
  .comparison-table tbody th,
  .comparison-table td { display: block; width: 100%; border: 0; }
  .comparison-table tbody th { padding: 17px 16px; color: var(--white); background: var(--graphite-2); font-size: 16px; line-height: 1.35; }
  .comparison-table td { position: relative; padding: 42px 16px 16px; color: var(--muted); background: var(--white); border-top: 1px solid var(--line); font-size: 14px; line-height: 1.55; }
  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    top: 12px;
    left: 16px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .comparison-table td:last-child { color: #4e372b; background: rgba(242,106,33,.065); }
  .comparison-table td:last-child::before { color: var(--orange-2); }

  .safety-grid { gap: 12px; }
  .safety-card { padding: 24px 22px; border-radius: 17px; }
  .safety-card h3 { margin-bottom: 24px; font-size: 25px; }
  .notice-orange { margin-top: 16px; padding: 18px; }

  .accordion-stack summary { min-height: 64px; padding: 17px 16px; line-height: 1.35; }
  .details-content { padding: 0 16px 20px; font-size: 15px; line-height: 1.6; }
  .faq-stack summary { min-height: 68px; padding-inline: 0; font-size: 16px; }
  .faq-stack .details-content { padding: 0 0 22px; }
  .spec-list > div { padding: 13px; }

  .filter-list { border-radius: 17px; }
  .filter-list li { grid-template-columns: 36px 1fr; gap: 10px; padding: 20px 18px; }
  .filter-list p { font-size: 15px; line-height: 1.55; }
  .filter-grid .button { width: 100%; }

  .final-copy > p:not(.eyebrow) { font-size: 16.5px; line-height: 1.55; }
  .final-actions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 24px; }
  .final-actions .button { width: 100%; }
  .compact-checks { gap: 8px; margin-top: 24px; }

  .site-footer { padding-top: 54px; }
  .footer-grid { gap: 30px; padding-bottom: 38px; }
  .footer-brand > p { font-size: 14px; line-height: 1.6; }
  .footer-bottom { gap: 8px; padding-top: 18px; }

  .mobile-sticky {
    grid-template-columns: 1fr 1.32fr;
    gap: 7px;
    padding: 8px 12px calc(8px + var(--safe-area-bottom));
    background: rgba(21,23,25,.98);
    backdrop-filter: none;
  }
  .mobile-sticky.is-suppressed { transform: translateY(110%); opacity: 0; visibility: hidden; pointer-events: none; }
  .mobile-sticky.single-action { grid-template-columns: 1fr; }
  .mobile-sticky.single-action .button { width: min(100%, 520px); margin-inline: auto; }
  .mobile-sticky .button { min-height: 48px; padding: 11px 10px; border-radius: 12px; font-size: 13.5px; }
  .mobile-sticky .button > span:first-child { font-size: 16px; line-height: 1; }
  .toast { bottom: calc(78px + var(--safe-area-bottom)); }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { max-width: 132px; }
  h1 { font-size: 31px; }
  .hero-lead { font-size: 16px; }
  .object-grid { margin-inline: -14px; padding-inline: 14px; scroll-padding-inline: 14px; }
  .object-card { min-width: 86vw; }
  .quiz-card,
  .quick-form { padding-inline: 16px; }
  .choice span { padding-inline: 9px; font-size: 12px; }
  .mobile-sticky { padding-inline: 10px; }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .scenario-card:hover,
  .text-link:hover span { transform: none; }
  .scenario-card:hover { border-color: var(--line); box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  .object-grid { scroll-snap-type: none; }
}


/* Tablet portrait keeps the mobile conversion order without enabling the phone sticky bar. */
@media (min-width: 721px) and (max-width: 820px) {
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 0; align-items: start; }
  .hero-copy { display: contents; }
  .hero-copy > * { position: relative; z-index: 2; }
  .hero-visual { order: 1; width: min(100%, 720px); margin: 32px auto 0; }
  .hero-media { aspect-ratio: 16 / 9; }
  .hero-metrics { order: 2; margin-top: 24px; }
  .metric-help { display: none; }
  .hero-metrics-note { order: 3; display: block; margin: 12px 0 0; color: #9da49f; font-size: 12px; line-height: 1.5; }

  .object-grid {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .object-grid::-webkit-scrollbar { display: none; }
  .object-card { min-width: min(58vw, 420px); min-height: 510px; scroll-snap-align: start; scroll-snap-stop: always; }
  .mobile-swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 10px 0 0; color: var(--muted); font-size: 12px; }
  .mobile-swipe-hint span { color: var(--orange-2); font-size: 18px; }

  .table-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .comparison-table { display: block; width: 100%; min-width: 0; }
  .comparison-table thead { display: none; }
  .comparison-table tbody { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .comparison-table tr { display: block; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 10px 26px rgba(21,23,25,.055); }
  .comparison-table tbody th,
  .comparison-table td { display: block; width: 100%; border: 0; }
  .comparison-table tbody th { min-height: 74px; padding: 17px 16px; color: var(--white); background: var(--graphite-2); font-size: 16px; line-height: 1.35; }
  .comparison-table td { position: relative; padding: 42px 16px 16px; color: var(--muted); background: var(--white); border-top: 1px solid var(--line); font-size: 14px; line-height: 1.55; }
  .comparison-table td::before { content: attr(data-label); position: absolute; top: 12px; left: 16px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
  .comparison-table td:last-child { color: #4e372b; background: rgba(242,106,33,.065); }
  .comparison-table td:last-child::before { color: var(--orange-2); }
}

@media (max-width: 720px) {
  .brand { min-height: 44px; }
  .object-card .text-link { min-height: 44px; padding-block: 8px; }
  .footer-column > a,
  .footer-column > .copy-link { display: flex; min-height: 44px; align-items: center; }
}

@media (min-width: 721px) and (max-width: 820px) {
  .media-label { top: 16px; right: 16px; bottom: auto; left: 16px; }
  .hero-note { right: 16px; bottom: 16px; width: min(340px, 64%); transform: none; }
}
