﻿/*
PALETTE FAMILY: Ivory + Forest Black + Lime Accent
CTA COLOR FAMILY: Lime Emerald Blend
PAGE BALANCE: soft-contrast
HERO TEMPERATURE: warm
*/
:root {
  --text-strong: #1d2622;
  --text-muted: #4f6258;
  --text-on-dark: #1d2622;
  --text-muted-on-dark: #4f6258;

  --surface-0: #1f2a24;
  --surface-1: #f8f6ee;
  --surface-2: #2a3a33;
  --surface-card: #f5f3eb;
  --border-subtle: #c8d2c4;

  --input-bg: #fcfbf6;
  --input-border: #c8d2c4;
  --focus-ring: #3cbf9833;
  --shadow-soft: 0 24px 45px -26px #1f2a2459;

  --btn-height: 50px;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;

  --gold-1: #8bcf5b;
  --gold-2: #61c88d;
  --gold-3: #3cbf98;
  --silver-1: #8fa99b;
  --silver-2: #dfe7de;
  --accent-positive: #2e9f5a;
  --bg-hero-wave: url("img/bg/hero-metal-wave.svg");
  --bg-panel-sheen: url("img/bg/panel-metal-sheen.svg");
  --bg-ticker-track: url("img/bg/ticker-track.svg");
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 8% -10%, #3cbf9826 0%, #0000 62%),
    radial-gradient(980px 620px at 94% 22%, #7bcfd422 0%, #0000 58%),
    radial-gradient(860px 520px at 50% 108%, #8bcf5b16 0%, #0000 64%),
    linear-gradient(180deg, #1d2823 0%, #24322c 16%, #f7f4ea 42%, #f8f6ee 100%);
  color: var(--text-strong);
  position: relative;
  isolation: isolate;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0 0.7px, #0000 1px),
    radial-gradient(circle at 70% 60%, #000 0 0.7px, #0000 1px);
  background-size: 3px 3px, 4px 4px;
}

.section { width: 100%; overflow: clip; padding: 60px 0; }
.section > .container { position: relative; z-index: 1; }
.section.light { background: var(--surface-1); color: var(--text-strong); }
.section.light p, .section.light li { color: var(--text-muted); }
.section.dark {
  background:
    radial-gradient(900px 460px at 90% 4%, #3cbf981f 0%, #0000 64%),
    radial-gradient(760px 420px at 10% 94%, #7bcfd41a 0%, #0000 60%),
    linear-gradient(140deg, #1e2a24 0%, #2b3b34 58%, #33463f 100%);
  color: var(--text-on-dark);
}
.section.dark p, .section.dark li { color: var(--text-muted-on-dark); }
.section.dark > .container {
  background: linear-gradient(160deg, #f8f6ee 0%, #f0eee6 100%);
  border: 1px solid #c8d2c4;
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.section.light {
  position: relative;
  background:
    radial-gradient(780px 420px at 10% 6%, #8bcf5b12 0%, #0000 62%),
    radial-gradient(840px 480px at 92% 90%, #3cbf9811 0%, #0000 64%),
    linear-gradient(180deg, #faf8f0 0%, #f8f6ee 100%),
    var(--surface-1);
  background-size: auto, auto, auto;
}
.section.light::after,
.section.dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 38px;
  pointer-events: none;
  background: linear-gradient(180deg, #0000 0%, #ffffff24 100%);
}
.section.light::after {
  background: linear-gradient(180deg, #0000 0%, #f0ede47a 100%);
}
.section.dark::after {
  background: linear-gradient(180deg, #0000 0%, #1220193f 100%);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 26px;
}

h1, h2, h3 { margin: 0; line-height: 1.13; color: var(--text-strong); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.9rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; }

p, li, label, .faq-a, .site-footer { font-size: 18px; line-height: 1.66; }
a { color: #1d4ed8; }

.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px 10px; z-index: 100; }

.btn {
  height: var(--btn-height);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.cta-btn {
  background: linear-gradient(120deg, var(--gold-1) 0%, var(--gold-2) 56%, var(--gold-3) 100%);
  color: #1f2430;
  box-shadow: 0 14px 28px -16px #5b8c5f75;
}
.cta-btn:hover { transform: translateY(-1px); filter: saturate(1.06) brightness(1.03); }
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, #ffffff70 48%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .42s ease;
}
.cta-btn:hover::after { left: 120%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, #1f2a24 0%, #2a3a33 100%);
  border-bottom: 1px solid #4b5d52;
}
.header-layout {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #e7efe9;
  font-weight: 800;
  font-size: 24px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  height: 46px;
  padding: 0 8px 0 4px;
  line-height: 1;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #8bcf5b, #3cbf98);
  color: #1d2622;
  border: 0;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 6px 14px -10px #3cbf9880;
}
.desktop-nav { display: inline-flex; gap: 10px; }
.desktop-nav a {
  text-decoration: none;
  font-weight: 700;
  color: #c6d3e8;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 42px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.desktop-nav a:hover { color: #8bcf5b; border-bottom-color: #8bcf5b; }

.header-right { display: flex; align-items: center; gap: 10px; }
.lang-wrap { position: relative; }
.lang-pill {
  height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #3d4f6d;
  background: linear-gradient(145deg, #1a253b 0%, #24324f 100%);
  color: #e7efe9;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -14px #1d262299;
}
.lang-menu {
  list-style: none;
  margin: 8px 0 0;
  padding: 8px;
  position: absolute;
  right: 0;
  min-width: 240px;
  border-radius: 14px;
  border: 1px solid #d2c2a4;
  background: #fff9ee;
  box-shadow: var(--shadow-soft);
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-strong);
  padding: 8px;
  border-radius: 10px;
}
.lang-menu a:hover { background: #f2e7d3; }
.flag { width: 22px; height: 15px; border-radius: 3px; flex-shrink: 0; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ccb98f;
  background: #fff8ea;
}
.burger span { display: block; width: 18px; height: 2px; margin: 4px auto; background: #2d3442; }

.header-right .cta-btn {
  height: 42px;
  padding: 0 20px;
  line-height: 1;
  border-radius: 10px;
  background: linear-gradient(120deg, #3cbf98 0%, #8bcf5b 52%, #5f8f56 100%);
  border: 1px solid #445675;
  color: #111827;
  box-shadow: 0 10px 20px -14px #11182766, 0 0 0 1px #ffffff24 inset;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(86vw, 360px);
  height: 100dvh;
  background: #fffdf8;
  border-left: 1px solid #d2c2a4;
  transition: right .3s ease;
  z-index: 80;
  padding: 16px;
}
.mobile-drawer.open { right: 0; }
.drawer-backdrop { position: fixed; inset: 0; background: #11172360; z-index: 75; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; }
.drawer-close {
  border: 1px solid #d2c2a4;
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 1;
}
.drawer-nav { display: grid; gap: 10px; margin: 20px 0; }
.drawer-nav a { text-decoration: none; color: var(--text-strong); font-weight: 600; }
.no-scroll { overflow: hidden; }

.hero {
  padding-top: 44px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, #a8bcdf4a 0%, transparent 34%),
    radial-gradient(circle at 92% 16%, #c8d7ef4d 0%, transparent 32%),
    radial-gradient(circle at 50% 100%, #f5f8ff 0%, #e7eefb 38%, #ede7db 72%, #f3e8d8 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 460px at 100% 0%, #dce8fb6b 0%, transparent 62%),
    radial-gradient(980px 420px at 0% 100%, #efe4d270 0%, transparent 60%),
    linear-gradient(180deg, #f5f8ff 0%, #e7eefb 46%, #f3e8d8 100%);
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 160px at 12% 104%, transparent 0 72%, #ffffff66 74% 75%, transparent 77%),
    radial-gradient(900px 190px at 84% 106%, transparent 0 72%, #ffffff55 74% 75%, transparent 77%);
  mix-blend-mode: normal;
}
.hero .container { background: transparent; border: 0; border-radius: 0; padding: 0 26px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; position: relative; z-index: 1; }
.hero-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.eyebrow {
  margin: 0 0 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6a7894 !important;
}
.hero-copy > p { margin: 16px 0 0; max-width: 68ch; }

.hero-range {
  margin-top: 22px;
  background: linear-gradient(135deg, #f4f9ff 0%, #e9f2ff 46%, #e0ebfa 100%);
  border: 1px solid #aac0dd;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero-range::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, #3cbf9826 42%, transparent 68%);
  opacity: .85;
}
.hero-range h2 {
  position: relative;
  padding-left: 0;
}
.hero-range h2::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, #3cbf98, #7b9f95);
}
.range-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.range-item {
  border: 1px solid #b7c9e1;
  border-radius: var(--radius-md);
  padding: 12px;
  background: linear-gradient(160deg, #f8fbff 0%, #edf4ff 100%);
  box-shadow: inset 0 1px 0 #ffffff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 6px;
  align-content: start;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.range-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, #ffffff55 48%, transparent 65%);
  pointer-events: none;
}
.range-item strong {
  display: block;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #111111;
  margin: 2px 0 4px;
  line-height: 1.05;
  text-shadow: none;
  white-space: nowrap;
}
.hero-range .range-item p { color: #1b1b1b !important; }
.hero-range .range-item p { margin: 0; }
.micro-disclaimer { margin: 10px 0 0; font-size: 15px; color: #1b1b1b !important; }

.form-card {
  background: var(--surface-card);
  color: var(--text-strong);
  border: 1px solid var(--border-subtle);
}
.form-card h3, .form-card .form-title { color: var(--text-strong); }
.form-card p, .form-card .form-sub { color: var(--text-muted); }
.form-card label { color: var(--text-muted); }
.form-card input {
  background: var(--input-bg);
  color: var(--text-strong);
  border: 1px solid var(--input-border);
}
.form-card input::placeholder { color: var(--text-muted); }
.form-card input:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus-ring);
  border-color: transparent;
}
.hero-form, .final-form {
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background:
    var(--bg-panel-sheen),
    linear-gradient(155deg, #f5f9ff 0%, #f0e6d4 100%);
  background-size: cover, cover;
  background-position: center, center;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #cdb5bd;
  background: linear-gradient(150deg, #fffefb 0%, #f4ebdc 100%);
  color: #384a63;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.tape-section .container {
  position: relative;
}
.tape-shell {
  border: 1px solid #b9cbe5;
  border-radius: 20px;
  background:
    var(--bg-ticker-track),
    linear-gradient(145deg, #f8fcff 0%, #edf5ff 52%, #e4eefb 100%);
  background-size: cover, cover;
  background-position: center, center;
  padding: 4px;
  overflow: hidden;
  display: flex;
  width: 100%;
  gap: 0;
  box-shadow: 0 24px 44px -30px #20365370, inset 0 1px 0 #ffffff;
  position: relative;
}
.tape-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, #ffffff4f 42%, transparent 66%);
}
.tape-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 10px 12px;
  animation: tape-scroll 28s linear infinite;
}
.tape-chip {
  display: grid;
  grid-template-columns: 42px auto auto auto;
  justify-content: start;
  align-items: center;
  gap: 9px;
  border: 1px solid #c2d1e7;
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff 0%, #f2f7ff 68%, #ebf2fd 100%);
  padding: 9px 12px;
  min-height: 56px;
  min-width: 0;
  width: max-content;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}
.tape-chip::before {
  content: none;
}
.metal-logo {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex: 0 0 38px;
  box-shadow: 0 0 0 2px #8ea5c7, 0 6px 14px -9px #20365390;
}
.tape-chip .metal {
  font-size: 17px;
  font-weight: 700;
  color: #2f415f;
  white-space: nowrap;
}
.tape-chip strong {
  font-size: 21px;
  color: #1c283d;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}
.tape-chip em {
  font-style: normal;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-positive);
  white-space: nowrap;
  background: linear-gradient(145deg, #e9f8ef 0%, #dff3e7 100%);
  border: 1px solid #bde0cb;
  border-radius: 999px;
  padding: 3px 7px;
  letter-spacing: 0.005em;
}

.drivers-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}
.driver-main {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f5f9ff 0%, #e3edf9 50%, #dfe8f4 100%);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.driver-main h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: 0.01em;
}
.driver-bars {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.driver-row {
  background: linear-gradient(160deg, #fffefb 0%, #f4eee1 100%);
  border: 1px solid #d3c09c;
  border-radius: 12px;
  padding: 11px 12px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.driver-row span {
  font-size: 19px;
  font-weight: 600;
  color: #40516b;
}
.driver-row b {
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  line-height: 1;
  color: #1f2430;
  font-weight: 800;
  background: linear-gradient(140deg, #fff8ea 0%, #f1e2c7 100%);
  border: 1px solid #cfb1ba;
  border-radius: 12px;
  padding: 4px 12px;
  box-shadow: 0 6px 14px -12px #6f553270;
}
.driver-row i {
  grid-column: 1 / -1;
  height: 11px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, #b98b45 0%, #ddbe80 44%, #9ba3b1 100%);
  transform-origin: left center;
  transform: scaleX(0);
  animation: grow-in .9s ease forwards;
}
.driver-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: start;
}
.driver-stat {
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(150deg, #fffefb 0%, #f2ece1 100%);
  position: relative;
  min-width: 0;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.driver-stat::before {
  content: none;
}
.driver-stat > * {
  position: relative;
  margin-left: 0;
}
.driver-stat h3 {
  margin: 2px 0 4px;
  font-size: clamp(1.75rem, 2.7vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.driver-stat .pct {
  font-size: 1.08em;
  font-weight: 800;
  color: #7f4a53;
}
.driver-stat .muted {
  font-weight: 600;
}

.register-form { display: grid; gap: 12px; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
input { width: 100%; height: 48px; border-radius: 10px; padding: 0 14px; font-size: 18px; }
.form-msg { min-height: 24px; margin: 0; }
.privacy-mini {
  margin: 0 !important;
  font-size: 15px;
  color: #5b6a80 !important;
}

.intro { max-width: 72ch; margin: 12px 0 20px; }
.interpret, .visual-note { margin: 14px 0 0; }

.quick-proof {
  padding-top: 20px;
  padding-bottom: 26px;
}
.quick-proof-head .intro {
  margin-top: 8px;
  margin-bottom: 12px;
}
.quick-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.quick-proof-card {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff 0%, #f2f7ff 100%);
  border: 1px solid #bccde3;
}
.proof-kicker {
  margin: 0 0 4px !important;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6f3f47 !important;
}
.quick-proof-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  margin: 0 0 4px;
}
.quick-proof-card p {
  margin: 0 !important;
}

.card{
  background: var(--surface-card);
  color: var(--text-strong);
  border: 1px solid var(--border-subtle);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.card p, .card li, .card .muted{ color: var(--text-muted); }
.section.dark .card{ background: var(--surface-card); color: var(--text-strong); }
.section.dark .card p, .section.dark .card li, .section.dark .card .muted{ color: var(--text-muted); }
.card, .card * { opacity: 1 !important; }
.card p, .card li { opacity: 1 !important; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }

.info-card { border-radius: var(--radius-md); padding: 16px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8bcf5b 0%, #7b9f95 100%);
  opacity: .7;
}
.model-feature {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, #f8fbff 0%, #edf4ff 50%, #e4ecfa 100%);
  border: 1px solid #b8c9e0;
  box-shadow: 0 26px 44px -34px #23324b7d;
  position: relative;
}
.model-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, #ffffff45 42%, transparent 68%);
}
.model-kicker {
  margin: 0 0 8px !important;
  font-size: 14px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #6f3f47 !important;
  text-transform: uppercase;
}
.model-flow-top {
  padding-bottom: 14px;
  border-bottom: 1px solid #c7d3e6;
}
.model-flow-bottom {
  padding-top: 14px;
}
.step {
  padding: 14px 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #ffffff 0%, #f2f7ff 100%);
  border: 1px solid #bccde3;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}
.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #8bcf5b, #7b9f95);
  color: #1f2430;
  font-weight: 800;
  margin-bottom: 10px;
  box-shadow: 0 8px 14px -11px #4b556a88;
  position: relative;
  z-index: 2;
}

.focus-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mix-panel {
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(150deg, #f5f9ff 0%, #e6eef8 55%, #dfe8f4 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.mix-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, #ffffff38 46%, transparent 66%);
}
.mix-bar {
  height: 22px;
  border-radius: 999px;
  background: #e8eef8;
  overflow: hidden;
  border: 1px solid #d4dfef;
}
.mix-fill { height: 100%; display: flex; }
.mix-fill span { display: block; height: 100%; }
.mix-fill .gold { width: 52%; background: linear-gradient(90deg, #3cbf98, #7b9f95); }
.mix-fill .silver { width: 32%; background: linear-gradient(90deg, #9a9faa, #c7ccd6); }
.mix-fill .pall { width: 16%; background: linear-gradient(90deg, #5b616d, #8b93a2); }
.mix-legend { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.mix-legend span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 6px;
}
.mix-legend .g::before { background: #3cbf98; }
.mix-legend .s::before { background: #b6bbc6; }
.mix-legend .p::before { background: #727b89; }

.performance-panel {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(145deg, #f5f9ff 0%, #e6eef8 48%, #e8e2d8 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.performance-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 0%, #ffffff40 45%, transparent 66%);
}
.performance-panel .grid-2 > div {
  background: linear-gradient(160deg, #fffefb 0%, #f2eee7 100%);
  border: 1px solid #afc3de;
  border-radius: 12px;
  padding: 12px;
  box-shadow: inset 0 1px 0 #ffffff;
  min-height: 0;
}

.case-wrap {
  max-width: 1020px;
}
.case-card {
  margin-top: 10px;
  padding: 18px;
  border-radius: 20px;
  background:
    var(--bg-panel-sheen),
    linear-gradient(150deg, #f8fcff 0%, #edf5ff 58%, #e6effb 100%);
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 26px 46px -34px #22395b90;
}
.premium-case {
  border: 1px solid #b7cbe5;
  background: linear-gradient(155deg, #f9fdff 0%, #eef6ff 54%, #e6effb 100%);
}
.case-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  border-bottom: 1px solid #d7c6a8;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.case-headline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  border: 1px solid #b6cae4;
  border-radius: 14px;
  background: linear-gradient(140deg, #ffffff 0%, #f0f6ff 100%);
  padding: 12px 14px;
  margin-bottom: 14px;
}
.case-name {
  margin: 0 !important;
  font-weight: 700;
  color: #1f2430 !important;
}
.case-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #a6bddb;
  box-shadow: 0 10px 18px -14px #22395b99;
  flex: 0 0 56px;
}
.case-role {
  margin: 2px 0 0 !important;
  font-size: 15px;
  color: #56647a !important;
}
.case-time {
  margin: 0 !important;
  color: #4b5b74 !important;
}
.case-highlight {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 12px;
}
.case-start, .case-end, .case-return {
  border: 1px solid #b9cde6;
  border-radius: 12px;
  padding: 12px 12px 14px;
  background: linear-gradient(150deg, #ffffff 0%, #f3f8ff 100%);
  display: grid;
  gap: 6px;
  align-content: start;
  position: relative;
}
.case-return {
  background: linear-gradient(160deg, #edf8f2 0%, #dff2e8 100%);
  border-color: #a8d7be;
}
.case-start::after,
.case-end::after,
.case-return::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 4px;
  border-radius: 999px;
  background: #d7e3f3;
}
.case-start::after { background: linear-gradient(90deg, #7b9f95 0%, #c6d8cf 100%); }
.case-end::after { background: linear-gradient(90deg, #3cbf98 0%, #8bcf5b 100%); }
.case-return::after { background: linear-gradient(90deg, #1f9d63 0%, #4cb884 100%); }
.case-start .case-mini,
.case-end .case-mini,
.case-return .muted {
  margin-bottom: 10px !important;
}
.case-arrow {
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
  color: #5d7090;
  padding: 0 4px;
}
.money-lg {
  display: block;
  margin-top: 4px;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  color: #111111;
  letter-spacing: .01em;
}
.return-lg {
  display: block;
  margin-top: 4px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: #0f8a42;
}
.case-mini {
  margin: 8px 0 0 !important;
  font-size: 15px;
  color: #4f5d73 !important;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.case-grid article {
  border: 1px solid #b9cee8;
  border-radius: 12px;
  padding: 12px 12px 12px 14px;
  background: linear-gradient(152deg, #ffffff 0%, #f2f8ff 100%);
  position: relative;
}
.case-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 4px;
  background: linear-gradient(180deg, #3cbf98 0%, #7b9f95 100%);
}
.case-grid strong {
  display: block;
  margin: 4px 0 6px;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  color: #1a1a1a;
}
.case-note {
  margin: 12px 0 0 !important;
  padding: 10px 12px;
  border: 1px solid #d6c6aa;
  border-radius: 10px;
  background: #fff9ec;
  color: #1f2430 !important;
  font-weight: 600;
}
.case-quote {
  margin: 12px 0 0 !important;
  padding: 12px 14px;
  border-left: 4px solid #3cbf98;
  border-radius: 10px 12px 12px 10px;
  background: linear-gradient(150deg, #f7fcfa 0%, #ebf7f1 100%);
  color: #1f2430 !important;
  font-style: italic;
  font-weight: 600;
}
.chart-shell {
  margin-top: 12px;
  border: 1px solid #ceb6be;
  border-radius: var(--radius-md);
  padding: 14px;
  background: linear-gradient(180deg, #fffefb 0%, #f7efe0 100%);
  box-shadow: inset 0 1px 0 #ffffff;
}
.spark-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
  align-items: end;
  min-height: 180px;
  padding-top: 16px;
  position: relative;
}
.spark-grid::before {
  content: "";
  position: absolute;
  inset: 0 0 24px 0;
  background:
    linear-gradient(to top, #d9c09a 1px, transparent 1px) 0 100% / 100% 25% repeat-y;
  opacity: .45;
  pointer-events: none;
}
.spark-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.spark-col i {
  display: block;
  width: 100%;
  height: calc(var(--h) * 1.65px);
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #c9a060 0%, #9ea6b4 60%, #50596b 100%);
  border: 1px solid #c1a06a;
  box-shadow: inset 0 1px 0 #f4dfbc;
}
.spark-col b { display: block; margin-top: 8px; font-size: 14px; color: #60594c; }

.insight-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 16px; align-items: stretch; }

.action-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.action-kicker {
  margin: 0 0 6px !important;
  font-size: 14px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #6f3f47 !important;
}
.action-wrap h2 {
  margin-bottom: 8px;
}
.action-list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.compact-action {
  margin-top: 10px;
}
.action-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid #becfe4;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff 0%, #f2f7ff 100%);
  min-height: 0;
  position: relative;
}
.action-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8bcf5b 0%, #7b9f95 100%);
}
.action-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: #1f2430;
  background: linear-gradient(140deg, #d9adb4, #c7d4e8);
  border: 1px solid #bfcde0;
  margin-left: 8px;
}
.action-item h3 {
  margin: 0 0 4px;
  font-size: 2rem;
  line-height: 1.2;
}
.compact-action .action-item h3 {
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}
.action-item p {
  margin: 0 !important;
}
.action-note {
  margin-top: 14px !important;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c1d0e4;
  background: linear-gradient(160deg, #ffffff 0%, #f3f8ff 100%);
  font-weight: 600;
  text-align: center;
}
.model-subtitle {
  margin: 0;
}

#model.section {
  padding-bottom: 30px;
}
#drivers.section {
  padding-top: 30px;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
  align-items: stretch;
}
.fit-wrap {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.fit-kicker {
  margin: 0 0 6px !important;
  font-size: 14px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #6f3f47 !important;
}
.fit-wrap .intro {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.fit-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
  border: 1px solid #c1cde0;
  border-radius: 18px;
  background: linear-gradient(160deg, #f9fcff 0%, #edf4ff 100%);
  padding: 12px;
}
.fit-panels .card {
  padding: 16px;
  border-radius: 14px;
}
.fit-panels .card h3 {
  margin-bottom: 10px;
}
.fit-dual {
  align-items: stretch;
}
.fit-card {
  text-align: left;
  background: linear-gradient(160deg, #ffffff 0%, #f2f7ff 100%);
  border: 1px solid #c0cee3;
  box-shadow: 0 14px 26px -24px #23324b57;
}
.fit-yes {
  background: linear-gradient(160deg, #f8fdfb 0%, #edf8f2 100%);
  border-color: #bfdccf;
}
.fit-no {
  background: linear-gradient(160deg, #fff9fa 0%, #f8eff1 100%);
  border-color: #e0c4cb;
}
.fit-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  margin-right: 8px;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}
.fit-icon.yes {
  color: #1e9b58;
  background: #e7f5ec;
  border: 1px solid #b8dfc7;
}
.fit-icon.no {
  color: #c24a3a;
  background: #faece8;
  border: 1px solid #e5b8b1;
}
.fit-list-plain {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.fit-list-plain li {
  position: relative;
  padding-left: 26px;
  color: #33445f !important;
}
.fit-yes .fit-list-plain li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e9b58;
  font-weight: 700;
}
.fit-no .fit-list-plain li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: #c24a3a;
  font-weight: 700;
}
.fit-bottom {
  margin: 14px auto 0 !important;
  max-width: 760px;
  padding: 12px 14px;
  border: 1px solid #d6c6aa;
  border-radius: 12px;
  background: linear-gradient(150deg, #f7f1e4 0%, #efe4cf 100%);
  font-weight: 600;
  color: #1f2430 !important;
}
.fit-score {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fffaf2 0%, #efe3ce 56%, #e8e0d3 100%);
  box-shadow: var(--shadow-soft);
}
.fit-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 10px;
}
.fit-list p {
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #bdcadf;
  border-radius: 10px;
  background: #fffdf9;
}
.fit-list b {
  color: #1b8a4d;
  font-size: 1.03rem;
}
.fit-note {
  margin: 6px 0 0 !important;
  font-weight: 600;
  color: #2c3950 !important;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.principles-grid .card {
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, #fffdfa 0%, #f6eee1 54%, #eee6d8 100%);
  border: 1px solid #bdcadf;
  box-shadow: 0 16px 30px -26px #3f2d1457;
}
.principles-grid h3 {
  margin-bottom: 6px;
}
.principles-note {
  margin-top: 12px !important;
  font-weight: 600;
}
.principles-wrap {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.principles-kicker {
  margin: 0 0 6px !important;
  font-size: 14px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #6f3f47 !important;
}
.principles-wrap .intro {
  max-width: 700px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.principle-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  text-align: left;
  min-height: 0;
}
.principle-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #7b5a23;
  background: linear-gradient(160deg, #f8edd8 0%, #ead7b4 100%);
  border: 1px solid #cfacb2;
}
.principle-card h3 {
  font-size: 2rem;
  line-height: 1.2;
}
.principle-card p {
  margin: 0 !important;
}

.cycle-box {
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid #b8cbe3;
  background: linear-gradient(145deg, #f9fcff 0%, #edf4ff 60%, #e6eefb 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cycle-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, #ffffff40 44%, transparent 70%);
}
.cycle-head {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.cycle-kicker {
  margin: 0 0 3px !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #8d6d2e !important;
  text-transform: uppercase;
}
.cycle-box h3 {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  font-size: clamp(1.85rem, 2.7vw, 2.3rem);
}
.cycle-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.cycle-row::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, #cfaa6a 0%, #96a0af 100%);
  opacity: .7;
}
.cycle-row article {
  border: 1px solid #b8cbe3;
  border-radius: 12px;
  padding: 12px 12px 10px;
  background: linear-gradient(160deg, #fffefb 0%, #f3ede2 100%);
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  min-width: 0;
}
.cycle-num {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(145deg, #d6ab62, #b78634);
  color: #1f2430;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 8px 14px -10px #4b3b1b80;
}
.cycle-row article p {
  margin: 9px 0 3px !important;
  color: #4f5e75 !important;
  font-weight: 700;
}
.cycle-row article strong {
  font-size: 1.42rem;
  line-height: 1.2;
  color: #1f2430;
  display: block;
}
.cycle-row article:hover {
  transform: translateY(-2px);
  border-color: #b57a86;
  box-shadow: 0 14px 20px -18px #3f2d1457, inset 0 1px 0 #ffffff;
}
.cycle-note {
  margin: 10px 0 0 !important;
  padding-top: 8px;
  border-top: 1px solid #c8d7ea;
  color: #4f5e75 !important;
  position: relative;
  z-index: 1;
}
.insight-copy {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid #b8cbe3;
  background: linear-gradient(145deg, #f9fcff 0%, #edf4ff 100%);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.insight-copy h2 {
  margin-top: 0 !important;
}

.risk-compact {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(145deg, #f5f9ff 0%, #e6eef8 50%, #e7e1d8 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.risk-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, #ffffff36 44%, transparent 67%);
}
.risk-compact p strong { color: #1f2430; }
.bullet-list { margin: 10px 0 0; padding-left: 20px; display: grid; gap: 7px; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #9ed7b3;
  background: linear-gradient(145deg, #f2fff7 0%, #e7f9ef 100%);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 10px 0 12px !important;
  font-weight: 700;
  color: #1f2f4b !important;
}
.rating-badge .trust-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1ecb72 0%, #12a95c 100%);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  box-shadow: inset 0 1px 0 #ffffff66, 0 4px 10px -6px #0f8f4f80;
}
.rating-badge .trust-stars {
  color: #0f9d57 !important;
  letter-spacing: .04em;
  font-size: 15px;
  line-height: 1;
}
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.review-card {
  border-radius: 14px 14px 10px 14px;
  padding: 14px;
  background: linear-gradient(155deg, #f9fcff 0%, #edf4ff 58%, #e7f0fb 100%);
  border: 1px solid #b7cae3;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #3cbf98, #7b9f95);
}
.review-card:nth-child(2)::before { background: linear-gradient(180deg, #5f8f56, #7b9f95); }
.review-card:nth-child(3)::before { background: linear-gradient(180deg, #9aa6ba, #6f7f99); }
.review-card:nth-child(4)::before { background: linear-gradient(180deg, #8bcf5b, #5f8f56); }
.review-top { display: flex; align-items: center; gap: 10px; }
.review-top strong {
  font-size: 1.22rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ece0ca;
  font-size: 14px;
  font-weight: 700;
  color: #3a3328;
}
.avatar-photo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 42px;
  border: 1px solid #ccb48d;
  box-shadow: 0 2px 6px -4px #2a1d0e80;
}
.verified { color: var(--accent-positive) !important; font-size: 14px; font-weight: 700; }

.card:hover,
.range-item:hover,
.step:hover,
.tape-chip:hover,
.driver-main:hover,
.driver-stat:hover {
  transform: translateY(-3px);
  border-color: #bd7782;
  box-shadow: 0 20px 34px -24px #3f2d1457, inset 0 1px 0 #ffffff;
}
.driver-row:hover {
  border-color: #bb737f;
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 18px -20px #3f2d1457;
}
.faq-item:hover {
  border-color: #bd7782;
  box-shadow: 0 12px 20px -22px #3f2d1457;
}
.review-card:hover .avatar-photo {
  box-shadow: 0 0 0 2px #c7848f, 0 8px 16px -10px #3f2d1457;
  transform: scale(1.04);
  transition: transform .22s ease, box-shadow .22s ease;
}

.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid #b8cbe3;
  border-radius: 12px 12px 8px 12px;
  background: linear-gradient(150deg, #fbfdff 0%, #eef5ff 100%);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
  position: relative;
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #3cbf98, #7b9f95);
  opacity: .95;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  padding: 14px 46px 14px 16px;
  color: var(--text-strong);
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #c3b08d;
  background: linear-gradient(140deg, #fff8e9, #f3e3c7);
  color: #7b5a23;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height .25s ease, padding .25s ease;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 16px 14px; }
.faq-item.open .faq-q::after { content: "–"; }

.final-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 16px; }

.site-footer {
  border-top: 1px solid #d9cfbf;
  padding: 22px 0 34px;
}
.site-footer .container {
  background: linear-gradient(150deg, #f9fcff 0%, #edf4ff 55%, #e7effa 100%);
  border: 1px solid #b8cae3;
  border-radius: 18px;
  box-shadow: 0 18px 34px -26px #20365365;
}
.footer-grid {
  padding: 26px 24px 28px;
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 22px;
  align-items: start;
}
.footer-grid > div {
  min-width: 0;
}
.footer-grid h3 {
  font-size: 2rem;
  margin: 0 0 10px;
  line-height: 1.15;
}
.footer-grid p {
  margin: 0 0 10px !important;
  color: #42536f !important;
}
.footer-grid .muted {
  color: #5a6b86 !important;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a {
  text-decoration: none;
  color: #2f4260;
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #1f2e45;
  transform: translateX(1px);
}
.link-btn {
  border: 1px solid #b9cbe4;
  background: linear-gradient(145deg, #ffffff 0%, #f2f8ff 100%);
  color: #2f4260;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.link-btn:hover {
  border-color: #8fa9cf;
  box-shadow: 0 8px 18px -14px #2036538c;
  transform: translateY(-1px);
}

.privacy-modal {
  width: min(900px, 92vw);
  border: 1px solid #bdcadf;
  border-radius: 16px;
  padding: 20px;
  background: #fffdf8;
  color: var(--text-strong);
}
.privacy-modal::backdrop { background: #151b2c52; }
.modal-x {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #bdcadf;
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 26px;
  line-height: 1;
}
.modal-footer { margin-top: 10px; }

[data-reveal] { transform: translateY(12px); opacity: 0; transition: .45s ease; }
[data-reveal].in-view { transform: translateY(0); opacity: 1; }

@keyframes tape-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@keyframes grow-in {
  to { transform: scaleX(1); width: var(--w); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].in-view {
    transform: none;
    opacity: 1;
    transition: none;
  }
  .tape-track, .driver-row i {
    animation: none;
    transform: none;
  }
  .card, .range-item, .step, .tape-chip, .driver-main, .driver-stat, .faq-item, .cta-btn, .avatar-photo {
    transition: none;
  }
  .cta-btn::after { display: none; }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .burger { display: block; }
  .header-right .cta-btn { display: inline-flex; }
  .hero-grid, .focus-wrap, .insight-wrap, .fit-grid, .final-grid { grid-template-columns: 1fr; }
  .drivers-layout { grid-template-columns: 1fr; }
  .driver-side { grid-template-columns: 1fr; }
  .action-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-highlight { grid-template-columns: 1fr 1fr; }
  .case-arrow { display: none; }
  .case-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 46px 0; }
  #model.section { padding-bottom: 24px; }
  #drivers.section { padding-top: 24px; }
  .header-layout { gap: 8px; }
  .brand-text { display: none; }
  .header-right { gap: 8px; }
  .lang-pill,
  .header-right .cta-btn {
    height: 40px;
    padding: 0 14px;
    font-size: 16px;
    border-radius: 10px;
  }
  .burger {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .lang-wrap .lang-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: min(88vw, 280px);
  }

  .range-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .range-item strong {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .name-row, .grid-4, .reviews-grid, .steps, .grid-2, .cycle-row, .fit-panels, .principles-grid { grid-template-columns: 1fr; }
  .quick-proof-grid { grid-template-columns: 1fr; }
  .driver-side { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px 22px;
  }
  .footer-grid h3 {
    font-size: 1.65rem;
    margin-bottom: 8px;
  }
  .action-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    min-height: auto;
  }
  .action-icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .action-item h3 {
    font-size: 1.45rem;
  }
  .action-list { grid-template-columns: 1fr; }
  .case-headline { flex-direction: column; align-items: flex-start; gap: 4px; }
  .case-profile { width: 100%; }
  .case-highlight { grid-template-columns: 1fr; }
  .principle-card {
    grid-template-columns: 46px 1fr;
    min-height: auto;
  }
  .principle-icon {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
  .tape-chip { min-width: 0; width: max-content; }
  .tape-track { animation-duration: 22s; }
  .tape-chip strong { font-size: 20px; }
  .tape-chip {
    min-width: 0;
    width: max-content;
    grid-template-columns: 28px auto;
    grid-template-areas:
      "logo metal"
      "logo price"
      "logo perf";
    gap: 4px 8px;
    align-items: center;
  }
  .tape-chip .metal-logo { grid-area: logo; width: 28px; height: 28px; flex-basis: 28px; }
  .tape-chip .metal { grid-area: metal; font-size: 16px; }
  .tape-chip strong { grid-area: price; font-size: 22px; }
  .tape-chip em { grid-area: perf; font-size: 13px; }
  .chip { height: 26px; font-size: 13px; }
  .cycle-row::before { display: none; }
  .cycle-row article strong { font-size: 1.32rem; }
}

.ai-tape .tape-shell {
  background: linear-gradient(145deg, #fffdf8 0%, #f2ead9 52%, #ebe4d6 100%);
}
.ai-tape .tape-chip {
  min-width: 0;
  width: max-content;
  align-items: center;
}
.ai-tape .tape-chip strong {
  font-size: 18px;
  white-space: nowrap;
}
.ai-tape .tape-chip em {
  font-size: 13px;
  color: #4f5d73;
  white-space: nowrap;
}


.market-impact .container {
  position: relative;
}
.merged-market .market-merge-top {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ceb6be;
}
.market-subtitle {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
}
.market-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  margin: 14px 0 14px;
}
.market-context-main,
.market-context-side {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #b7c9e1;
  background: linear-gradient(155deg, #f8fbff 0%, #edf4ff 58%, #e5eefb 100%);
  box-shadow: 0 16px 34px rgba(20, 45, 78, 0.14);
}
.market-context-main h3 {
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  margin: 0 0 6px;
  line-height: 1;
}
.market-context-main .impact-value {
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 900;
  color: var(--accent-positive) !important;
  margin: 0 0 10px;
}
.context-rows {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}
.context-rows div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #b9cce5;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(145deg, #f9fcff 0%, #edf4ff 100%);
}
.context-rows span {
  font-weight: 700;
  color: #31435f;
}
.context-rows .seg-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.context-rows .seg-name img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px #9bb0cf;
  flex: 0 0 22px;
}
.context-rows strong {
  font-size: 1.45rem;
  line-height: 1;
  color: #1d2a3f;
}
.context-rows em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent-positive);
}
.market-context-side .bullet-list {
  margin-top: 4px;
  margin-bottom: 14px;
}
.side-kpis {
  display: grid;
  gap: 8px;
}
.side-kpis div {
  border: 1px solid #b9cce5;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(145deg, #f9fcff 0%, #edf4ff 100%);
}
.side-kpis p {
  margin: 0;
  font-size: 14px;
  color: #4d5c75;
}
.side-kpis strong {
  display: block;
  margin-top: 2px;
  font-size: 1.38rem;
  line-height: 1.1;
  color: #1b2940;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.impact-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(155deg, #f8fbff 0%, #edf4ff 58%, #e5eefb 100%);
  box-shadow: 0 16px 34px rgba(20, 45, 78, 0.14);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  border: 1px solid #b7c9e1;
  position: relative;
  overflow: hidden;
}
.impact-card.gold-card { min-height: 0; }
.impact-card::after {
  content: none;
}
.impact-card .impact-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #4d5c75;
  margin-bottom: 8px;
}
.impact-card h3 {
  font-size: clamp(2.15rem, 4.4vw, 3.2rem);
  line-height: 1;
  margin: 0 0 8px 0;
  color: #162034;
  letter-spacing: 0.01em;
}
.impact-card .impact-value {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 10px 0;
}
.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(23, 29, 40, 0.2);
}
.gold-card { border-top: 1px solid #b7c9e1; }
.market-impact .gold-card .impact-value { color: var(--accent-positive) !important; }
.silver-card { border-top: 1px solid #b7c9e1; }
.market-impact .silver-card .impact-value { color: var(--accent-positive) !important; }
.pall-card { border-top: 1px solid #b7c9e1; }
.market-impact .pall-card .impact-value { color: var(--accent-positive) !important; }

@media (max-width: 980px) {
  .market-detail-grid {
    grid-template-columns: 1fr;
  }
  .context-rows div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.metrics-feature {
  padding: 12px;
  border-radius: 22px 22px 10px 22px;
  background:
    var(--bg-panel-sheen),
    linear-gradient(150deg, #f8fbff 0%, #ecf4ff 52%, #e4eefb 100%);
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 18px 42px rgba(20, 46, 80, 0.18);
  border: 1px solid #b8cae3;
}
.metrics-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
  align-items: start;
}
.metrics-primary {
  background: linear-gradient(150deg, #fafdff 0%, #edf5ff 100%);
  border: 1px solid #b6cae3;
  border-radius: 16px 16px 8px 16px;
  padding: 12px 14px;
}
.metrics-primary h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1;
  margin: 4px 0 8px;
  color: #13213a;
  letter-spacing: 0.01em;
}
.k-label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #4f5d73;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.k-sub {
  margin: 0;
  color: #40516a;
  font-size: 17px;
}
.metrics-side {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.metrics-mini {
  background: linear-gradient(145deg, #f9fcff 0%, #edf4ff 100%);
  border: 1px solid #b8cbe3;
  border-radius: 14px 14px 8px 14px;
  padding: 10px 12px;
  min-height: 0;
}
.metrics-mini strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  line-height: 1.15;
  color: #162744;
}
.metrics-chart-shell {
  border: 1px solid #b8cbe3;
  border-radius: 16px;
  background: linear-gradient(145deg, #f9fcff 0%, #edf4ff 100%);
  padding: 14px;
}
.chart-head {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}
.legend-item {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #3f4e66;
}
.legend-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
}
.legend-item.model::before { background: #3cbf98; }
.legend-item.market::before { background: #7b9f95; }
.compare-bars {
  display: grid;
  gap: 8px;
}
.c-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
}
.c-row b {
  color: #283754;
  font-size: 16px;
}
.c-lines {
  position: relative;
  height: 18px;
  min-width: 0;
}
.c-lines i {
  position: absolute;
  left: 0;
  height: 7px;
  border-radius: 999px;
}
.c-lines i.model {
  top: 1px;
  width: var(--w);
  background: linear-gradient(90deg, #3cbf98, #7b9f95);
}
.c-lines i.market {
  top: 10px;
  width: var(--w);
  background: #7c8faa;
}
.c-row span {
  color: #3e4f69;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .metrics-top {
    grid-template-columns: 1fr;
  }
  .metrics-side {
    grid-template-columns: 1fr;
  }
  .c-row {
    grid-template-columns: 40px 1fr;
  }
  .c-row span {
    grid-column: 1 / -1;
    margin-left: 50px;
    font-size: 15px;
  }
}

.metrics-primary .k-edge {
  margin: 8px 0 0;
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: #7a3f48;
  background: linear-gradient(145deg, #fff6e4 0%, #f6e4bf 100%);
  border: 1px solid #d9bc84;
  border-radius: 10px;
  padding: 5px 10px;
}
.kpi-lines {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}
.kpi-lines p {
  margin: 0 !important;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #c3d1e5;
  border-radius: 10px;
  background: linear-gradient(150deg, #ffffff 0%, #f4f8ff 100%);
  padding: 7px 10px;
  font-size: 16px;
  line-height: 1.4;
}
.kpi-lines b {
  color: #172033;
  font-weight: 800;
  white-space: nowrap;
}
.metrics-monthly {
  border: 1px solid #ccb2bb;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffefb 0%, #f5eee0 100%);
  padding: 12px;
}
.monthly-head {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #4f5d73;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 0 6px;
}
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.m-card {
  border: 1px solid #d4c09d;
  border-radius: 12px;
  background: linear-gradient(150deg, #fffefb 0%, #f8f1e3 100%);
  padding: 10px 10px 12px;
  display: grid;
  gap: 4px;
  min-width: 0;
}
.m-card b {
  color: #21314d;
  font-size: 16px;
  line-height: 1.2;
}
.m-model, .m-market {
  color: #455673;
  font-size: 15px;
  line-height: 1.2;
}
.m-edge {
  color: #77414a;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .monthly-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .monthly-head {
    display: none;
  }
  .monthly-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .monthly-grid {
    grid-template-columns: 1fr;
  }
  .m-card {
    grid-template-columns: 56px 1fr 1fr 1fr;
    align-items: center;
    gap: 8px;
  }
  .m-card b, .m-model, .m-market, .m-edge { margin: 0; }
  .m-edge { text-align: right; }
}

/* Compact metrics redesign */
.metrics-scoreboard {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background:
    var(--bg-panel-sheen),
    linear-gradient(150deg, #f8fbff 0%, #ecf4ff 52%, #e4eefb 100%);
  background-size: cover, cover;
  background-position: center, center;
  border: 1px solid #b8cae3;
  box-shadow: 0 18px 42px rgba(20, 46, 80, 0.18);
}
.metric-tile {
  border: 1px solid #b8cbe3;
  border-radius: 14px;
  background: linear-gradient(145deg, #f9fcff 0%, #edf4ff 100%);
  padding: 14px 14px 12px;
  display: grid;
  gap: 8px;
  min-width: 0;
}
.metric-tile-main {
  background: linear-gradient(145deg, #fcfeff 0%, #f1f7ff 100%);
}
.metric-label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #4f5d73;
}
.metric-value {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
  color: #13213a;
  letter-spacing: 0.01em;
}
.metric-sub {
  margin: 0 !important;
  font-size: 17px;
  color: #40516a;
}
.metric-value.range-value {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  white-space: nowrap;
}
.metric-edge {
  margin: 0 !important;
  display: inline-block;
  width: fit-content;
  font-size: 18px;
  font-weight: 900;
  color: #7a3f48;
  background: linear-gradient(145deg, #fff6e4 0%, #f6e4bf 100%);
  border: 1px solid #d9bc84;
  border-radius: 10px;
  padding: 5px 10px;
}

@media (max-width: 1100px) {
  .metrics-scoreboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .metrics-scoreboard {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .metric-value {
    font-size: clamp(1.8rem, 7.5vw, 2.35rem);
  }
}






/* Sentor trust v2 — Midnight Cyan Refresh */
:root {
  --text-strong: #0f2138;
  --text-muted: #3e5572;
  --text-on-dark: #0f2138;
  --text-muted-on-dark: #3e5572;
  --surface-0: #081425;
  --surface-1: #f1f6ff;
  --surface-2: #0d1e35;
  --surface-card: #f8fbff;
  --border-subtle: #c1d5f4;
  --input-bg: #ffffff;
  --input-border: #b7ccef;
  --focus-ring: #37b5ff33;
  --shadow-soft: 0 18px 40px -24px #0a1b3273;
  --accent-positive: #0f9d64;
}

body {
  background:
    radial-gradient(980px 560px at 8% 10%, #41d4ff26 0%, transparent 62%),
    radial-gradient(840px 520px at 92% 16%, #5f8dff20 0%, transparent 64%),
    linear-gradient(180deg, #08152a 0%, #102542 18%, #e8f2ff 44%, #f4f8ff 100%);
}

.section.light {
  background:
    radial-gradient(640px 320px at 15% 0%, #4ccfff14 0%, transparent 66%),
    radial-gradient(720px 360px at 85% 100%, #6f8cff14 0%, transparent 66%),
    linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
}
.section.dark {
  background:
    radial-gradient(900px 500px at 85% 6%, #3dcfff20 0%, transparent 65%),
    radial-gradient(760px 420px at 12% 94%, #6a86ff1f 0%, transparent 60%),
    linear-gradient(135deg, #0a1930 0%, #122746 58%, #19345c 100%);
}
.section.dark > .container {
  background: linear-gradient(160deg, #f6faff 0%, #edf4ff 100%);
  border-color: #bed3f1;
}

.site-header {
  background: linear-gradient(180deg, #0a1a31f0 0%, #122a49ea 100%);
  border-bottom: 1px solid #2d4b71;
}
.brand,
.desktop-nav a,
.lang-pill {
  color: #e8f3ff;
}
.desktop-nav a:hover { color: #62d4ff; border-bottom-color: #62d4ff; }
.brand-mark { background: linear-gradient(140deg, #41d4ff, #6f8cff); color: #081a31; }

.cta-btn {
  background: linear-gradient(120deg, #33cfff 0%, #3ab8ff 46%, #5f8cff 100%);
  color: #0b1e38;
  box-shadow: 0 16px 32px -18px #2f7ac98a;
}

.card,
.form-card,
.hero-range,
.faq-item,
.range-item,
.metric-tile,
.metric-tile-main,
.case-card,
.review-card,
.tape-chip,
.market-context-main,
.market-context-side,
.impact-card {
  background: linear-gradient(155deg, #fbfdff 0%, #edf4ff 60%, #e9f1fd 100%) !important;
  border-color: #b7ccef !important;
  box-shadow: 0 12px 26px -20px #1b38674a;
}

.review-card::before,
.impact-card::after,
.quick-proof-card::before,
.action-item::before,
.range-item::after,
.hero-range::before,
.tape-shell::before,
.market-subtitle::after {
  display: none !important;
}

.review-card:hover,
.case-grid article:hover,
.model-feature:hover,
.step:hover,
.impact-card:hover,
.tape-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -20px #1c4f8a66;
}

.trust-mark {
  background: linear-gradient(145deg, #29d2a1, #20b68a);
  color: #ffffff;
}

.verified { color: #0e9f63 !important; }

/* Better spacing for main heading area */
.hero-copy h1 {
  font-size: clamp(2.0rem, 4.2vw, 3.4rem);
  max-width: 14ch;
}

/* Keep ticker readable */
.tape-chip {
  min-width: 240px;
  padding: 10px 14px;
}
.tape-chip strong {
  font-size: 34px;
  font-weight: 900;
}
.tape-chip em {
  font-weight: 800;
}

/* Mobile tightening */
@media (max-width: 900px) {
  .hero-copy h1 { max-width: 100%; font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .desktop-nav { display: none !important; }
}
/* Sentor trust v2.1 — Focused premium polish (Hero range / Market tape / Reviews) */
.hero-range {
  position: relative;
  border-radius: 18px;
  border: 1px solid #9bc2f5 !important;
  background:
    radial-gradient(120% 120% at 85% -10%, #5bc8ff24 0%, transparent 50%),
    linear-gradient(145deg, #f7fbff 0%, #eaf3ff 54%, #e2eeff 100%) !important;
  box-shadow:
    0 20px 44px -28px #2550896b,
    inset 0 1px 0 #ffffff80;
}
.hero-range h2 {
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 #ffffff85;
}
.hero-range .micro-disclaimer {
  margin-top: 10px;
  font-size: 16px;
  color: #3e5572 !important;
}
.range-grid {
  gap: 14px;
}
.range-item {
  border-radius: 14px;
  padding: 14px 14px 12px;
  background:
    linear-gradient(160deg, #ffffff 0%, #eef5ff 62%, #e8f0ff 100%) !important;
  box-shadow: inset 0 1px 0 #ffffffa6;
}
.range-item strong {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  letter-spacing: 0.01em;
  color: #10213b !important;
}

.ai-tape .tape-shell,
.market-merge-top .tape-shell,
.merged-market .tape-shell {
  border-radius: 16px;
  border: 1px solid #9ec1f2 !important;
  padding: 10px;
  background:
    linear-gradient(140deg, #f8fcff 0%, #e8f2ff 100%),
    var(--bg-ticker-track);
  box-shadow: inset 0 1px 0 #ffffff8f;
}
.tape-track {
  gap: 12px;
}
.tape-chip {
  min-width: 250px;
  border-radius: 14px;
  border: 1px solid #a9c6ee !important;
  background: linear-gradient(150deg, #ffffff 0%, #edf4ff 100%) !important;
  box-shadow: 0 10px 24px -20px #284a8266;
}
.tape-chip strong {
  font-size: 32px;
  letter-spacing: 0.005em;
  color: #10213b !important;
}
.tape-chip em {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #9ad9bd;
  background: linear-gradient(145deg, #e9f8ef 0%, #ddf3e7 100%);
  color: #0d9b5f !important;
}

#reviews.section.dark > .container,
#reviews.section.light > .container {
  border-radius: 20px;
  border: 1px solid #9fc2f2;
  background:
    radial-gradient(120% 120% at 92% -8%, #59c8ff1f 0%, transparent 52%),
    linear-gradient(150deg, #f8fbff 0%, #edf4ff 62%, #e8f0fd 100%);
  box-shadow: 0 22px 42px -28px #1d417760;
}
.rating-badge {
  border: 1px solid #9fc2f2 !important;
  background: linear-gradient(145deg, #ffffff 0%, #eef5ff 100%) !important;
  box-shadow: inset 0 1px 0 #ffffffa1;
}
.trust-stars {
  letter-spacing: 2px;
  color: #3b5678 !important;
}
.review-card {
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff 0%, #eff5ff 100%) !important;
  box-shadow:
    0 14px 30px -24px #1e417558,
    inset 0 1px 0 #ffffff9a;
}
.review-top strong {
  font-size: 21px;
}
.avatar-photo {
  width: 50px;
  height: 50px;
  border: 2px solid #95b8e8;
  box-shadow: 0 8px 18px -12px #20457c75;
}

@media (max-width: 900px) {
  .range-item strong {
    font-size: clamp(1.95rem, 8vw, 2.4rem);
  }
  .tape-chip {
    min-width: 214px;
  }
  .tape-chip strong {
    font-size: 24px;
  }
  .avatar-photo {
    width: 44px;
    height: 44px;
  }
}
/* Hotfix: Performance Range typography */
.hero-range .range-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-range .range-item {
  min-width: 0;
}
.hero-range .range-item strong {
  font-size: clamp(1.95rem, 2.7vw, 2.55rem) !important;
  line-height: 1.08;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
@media (max-width: 680px) {
  .hero-range .range-item strong {
    font-size: clamp(1.8rem, 8vw, 2.25rem) !important;
  }
}
/* v2.2 Conversion additions: case timeline + mobile sticky CTA */
.case-timeline {
  margin: 10px 0 12px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}
.case-timeline .timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #b6ccef;
  border-radius: 999px;
  background: linear-gradient(150deg, #ffffff 0%, #eef5ff 100%);
}
.case-timeline .timeline-step span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #0f223d;
  background: linear-gradient(135deg, #57cbff, #6e8dff);
}
.case-timeline .timeline-step p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #2f4a6a !important;
  line-height: 1.25;
}
.case-timeline i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #73c6ff, #8aa2ff);
  border-radius: 10px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  body { padding-bottom: 76px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 95;
    display: block;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #9fc2f2;
    background: linear-gradient(150deg, #fafdff 0%, #edf4ff 100%);
    box-shadow: 0 16px 32px -18px #1f407075;
    backdrop-filter: blur(6px);
  }
  .mobile-sticky-cta .cta-btn {
    width: 100%;
    height: 48px;
  }

  .case-timeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .case-timeline i { display: none; }
}

/* Sentor trust hotfix: remove mobile sticky CTA + darker hero mood */
.mobile-sticky-cta { display: none !important; }
@media (max-width: 900px) {
  .mobile-sticky-cta { display: none !important; }
  body { padding-bottom: 0 !important; }
}

.hero {
  background:
    radial-gradient(circle at 8% 10%, #4b5f8f59 0%, transparent 36%),
    radial-gradient(circle at 92% 16%, #5b74a459 0%, transparent 34%),
    radial-gradient(circle at 50% 100%, #d8e2f3 0%, #c8d3ea 42%, #c6cbdf 74%, #c2c9dd 100%);
}
.hero::before {
  background:
    radial-gradient(1200px 460px at 100% 0%, #7f95be3d 0%, transparent 62%),
    radial-gradient(980px 420px at 0% 100%, #6f83ad33 0%, transparent 60%),
    linear-gradient(180deg, #d9e3f4 0%, #c8d4eb 48%, #c0c9df 100%);
  opacity: 1;
}

/* Patch: geo-consistent review row fill */
#reviews .reviews-grid {
  background: linear-gradient(145deg, #e7eefb 0%, #d9e5f7 100%);
  border: 1px solid #9fc2f2;
  border-radius: 14px;
  padding: 10px;
}
#reviews .review-card { height: 100%; }

/* Stable fix: no visual strip between sticky header and hero */
main {
  margin-top: 0 !important;
  background: transparent !important;
}
.site-header {
  border-bottom: 0 !important;
}
#hero.hero,
section.hero.section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  background:
    radial-gradient(1200px 500px at -8% -20%, #7be0ff66 0%, transparent 58%),
    radial-gradient(980px 420px at 108% -10%, #ffd38a59 0%, transparent 56%),
    radial-gradient(980px 460px at 52% 112%, #7af0c952 0%, transparent 60%),
    linear-gradient(155deg, #c3d6ff 0%, #c9dcff 36%, #c0e8dd 70%, #ffe0b8 100%) !important;
}
#hero.hero::before,
#hero.hero::after {
  inset: 0 !important;
  top: 0 !important;
  display: none !important;
}
.site-header + main > #hero,
.site-header + main > #hero > .container,
.site-header + main > #hero .hero-grid,
.site-header + main > #hero .hero-copy,
.site-header + main > #hero .eyebrow {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Adjust hero form vertical position */
.hero .hero-form {
  margin-top: 28px !important;
}
@media (max-width: 980px) {
  .hero .hero-form {
    margin-top: 14px !important;
  }
}

/* Mobile stability pass */
@media (max-width: 900px) {
  .container,
  .hero .container {
    padding-inline: 16px;
  }
  .hero .hero-form {
    margin-top: 18px !important;
  }
  .hero-range .range-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .hero-range .range-item {
    min-width: 0;
  }
  .hero-range .range-item strong {
    font-size: clamp(1.7rem, 8vw, 2.15rem) !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
  .impact-grid,
  .quick-proof-grid,
  .reviews-grid,
  .fit-panels,
  .principles-grid {
    grid-template-columns: 1fr !important;
  }
}


