﻿/*
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 {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: clip;
}
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;
  overflow-y: auto;
  overscroll-behavior: contain;
  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, .form-status { 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: 20px;
  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.2rem;
  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;
  cursor: pointer;
}
.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;
  cursor: pointer;
}
.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; }

.wow {
  visibility: hidden;
}

.animated {
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.reveal-up {
  animation-name: revealUp;
  backface-visibility: hidden;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@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) {
  .wow {
    visibility: visible !important;
  }

  .animated,
  .reveal-up {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .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: 90%;
    transform: translateX(-50%);
    min-width: min(88vw, 192px);
  }

  .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: 18px;
  }
  .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);
  }
}

/*
CRUDEVIA GLOBAL RETHEME
Palette direction: Deep graphite + steel blue + copper accent
*/
:root {
  --text-strong: #e8edf6;
  --text-muted: #b9c4d7;
  --text-on-dark: #e8edf6;
  --text-muted-on-dark: #b9c4d7;

  --surface-0: #0b1220;
  --surface-1: #0f1728;
  --surface-2: #16233a;
  --surface-card: #111c30;
  --border-subtle: #2e4468;

  --input-bg: #0d182a;
  --input-border: #365179;
  --focus-ring: #4f8ac433;
  --shadow-soft: 0 26px 52px -30px #040916d1;

  --gold-1: #c9782f;
  --gold-2: #dd9250;
  --gold-3: #f0ab6d;
  --silver-1: #7fa4cc;
  --silver-2: #2a3f5e;
  --accent-positive: #4fc17f;
}

body {
  background:
    radial-gradient(1200px 700px at 8% -10%, #386ba926 0%, #0000 62%),
    radial-gradient(980px 620px at 94% 22%, #c9782f1f 0%, #0000 58%),
    radial-gradient(860px 520px at 50% 108%, #2d4f7624 0%, #0000 64%),
    linear-gradient(180deg, #090f1a 0%, #0f1728 35%, #101a2d 100%) !important;
  color: var(--text-strong) !important;
}

.section.light,
.section.dark {
  background:
    radial-gradient(900px 520px at 12% 6%, #2f5f9822 0%, #0000 62%),
    radial-gradient(860px 520px at 92% 92%, #c9782f17 0%, #0000 64%),
    linear-gradient(180deg, #0f1728 0%, #101b2f 100%) !important;
  color: var(--text-on-dark) !important;
}

.section.light p,
.section.light li,
.section.dark p,
.section.dark li {
  color: var(--text-muted) !important;
}

.section.dark > .container,
.section.light > .container {
  background: linear-gradient(160deg, #0f1a2e 0%, #121f35 100%) !important;
  border: 1px solid #2d466e !important;
  box-shadow: var(--shadow-soft) !important;
}

h1, h2, h3,
.hero-copy > p,
.intro,
.market-subtitle,
.proof-kicker,
.site-footer,
.faq-q,
.card p,
.card li {
  color: var(--text-strong) !important;
}

.site-header {
  background: linear-gradient(180deg, #0a1220 0%, #0f1b31 100%) !important;
  border-bottom: 1px solid #274168 !important;
}

.brand { color: #eaf1ff !important; }
.brand-mark {
  background: linear-gradient(140deg, #d68a45, #5f8ec0) !important;
  color: #0b1220 !important;
  box-shadow: 0 8px 18px -12px #3f6496a6 !important;
}

.desktop-nav a { color: #c4d5ef !important; }
.desktop-nav a:hover { color: #f0ab6d !important; border-bottom-color: #f0ab6d !important; }

.lang-pill {
  border: 1px solid #35547f !important;
  background: linear-gradient(145deg, #0e1a2d 0%, #162845 100%) !important;
  color: #e8edf6 !important;
  cursor: pointer;
}

.cta-btn,
.header-right .cta-btn {
  background: linear-gradient(120deg, #bd6f29 0%, #d88b45 50%, #f0ab6d 100%) !important;
  color: #0c1322 !important;
  border-color: #965827 !important;
  box-shadow: 0 14px 28px -16px #7a461fb5 !important;
}

.hero,
.hero::before {
  background:
    radial-gradient(circle at 8% 10%, #2e5e9a30 0%, transparent 34%),
    radial-gradient(circle at 92% 16%, #c9782f2b 0%, transparent 32%),
    radial-gradient(circle at 50% 100%, #12213a 0%, #101a2d 46%, #0f1728 100%) !important;
}

.hero-range,
.range-item,
.hero-form,
.final-form,
.card,
.quick-proof-card,
.impact-card,
.metric-tile,
.metrics-primary,
.metrics-feature,
.market-context-main,
.market-context-side,
.faq-item,
.site-footer .container,
.privacy-modal {
  background: linear-gradient(155deg, #13213a 0%, #111d33 100%) !important;
  border-color: #2f4b74 !important;
  color: #e8edf6 !important;
}

.chip,
.link-btn,
.faq-q::after {
  background: linear-gradient(145deg, #1a2b46 0%, #163057 100%) !important;
  border-color: #34547f !important;
  color: #d8e6fa !important;
}

.tape-shell {
  background: linear-gradient(145deg, #12203a 0%, #10213c 52%, #0f1f36 100%) !important;
  border-color: #35517b !important;
}
.tape-chip {
  background: linear-gradient(155deg, #172741 0%, #13233b 100%) !important;
  border-color: #35517b !important;
}
.tape-chip .metal,
.tape-chip strong { color: #e8edf6 !important; }
.tape-chip em {
  color: #9ce1b7 !important;
  background: linear-gradient(145deg, #173429 0%, #1f3f31 100%) !important;
  border-color: #2f6a4d !important;
}

.footer-links a,
.footer-grid p,
.footer-grid .muted,
.privacy-mini,
.k-label,
.metric-label,
.legend-item,
.m-model,
.m-market {
  color: #b9c4d7 !important;
}

input,
.form-card input {
  background: #0d182a !important;
  border-color: #365179 !important;
  color: #e8edf6 !important;
}

input::placeholder,
.form-card input::placeholder { color: #86a0c2 !important; }

/* Real company logo readability fix */
.tape-chip .metal-logo,
.context-rows .seg-name img {
  background: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #b6c7df !important;
  padding: 4px !important;
  object-fit: contain;
  box-shadow: 0 6px 12px -8px #0b183040 !important;
}

.tape-chip .metal-logo {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
}

.context-rows .seg-name img {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
}

@media (max-width: 980px) {
  .tape-chip .metal-logo {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    padding: 3px !important;
  }
}

/* About / Contacts pages */
.desktop-nav a[aria-current="page"] {
  color: #f0ab6d !important;
  border-bottom-color: #f0ab6d !important;
}

.info-page .section.light {
  padding-top: 52px;
  padding-bottom: 52px;
}

.info-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: start;
}

.info-copy,
.contact-copy {
  background: linear-gradient(155deg, #f8fbff 0%, #eef4fb 100%);
  border: 1px solid #bdd0ea;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 44px -34px #1f3a5c45;
}

.info-page .eyebrow {
  margin-bottom: 8px;
  color: #3d5a86;
  letter-spacing: 0.08em;
}

.info-page h1 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.info-note {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid #c8d7ec;
  background: #f4f8ff;
  color: #355076;
  font-weight: 600;
}

.info-card {
  background: linear-gradient(145deg, #172d4d 0%, #1f3b63 100%);
  border: 1px solid #345a8e;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 26px 45px -34px #0e1f3aab;
}

.info-card h3 {
  color: #f4f8ff;
  margin-bottom: 10px;
}

.info-card .bullet-list {
  margin-top: 6px;
  padding-left: 18px;
}

.info-card .bullet-list li {
  color: #d5e4fa;
}

.info-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-stat-card {
  border: 1px solid #bfd0e9;
  background: linear-gradient(155deg, #ffffff 0%, #f2f7ff 100%);
}

.info-stat-card h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  margin-top: 6px;
  margin-bottom: 4px;
}

.contact-points {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.contact-point {
  border: 1px solid #c5d4ea;
  border-radius: 12px;
  padding: 12px 14px;
  background: linear-gradient(160deg, #ffffff 0%, #f3f8ff 100%);
}

.contact-point h3 {
  font-size: 1.06rem;
  margin-bottom: 4px;
}

.contact-point p {
  margin: 0;
}

.contact-hero .final-form {
  background: linear-gradient(155deg, #f9fcff 0%, #edf4ff 100%);
  border: 1px solid #bdd0ea;
  box-shadow: 0 24px 44px -32px #22456f4d;
}

@media (max-width: 980px) {
  .info-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .info-copy,
  .contact-copy,
  .info-card {
    padding: 20px;
  }

  .info-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* About-only polish: softer, less boxy */
.about-page .info-layout {
  gap: 20px;
}

.about-page .info-copy {
  border-radius: 30px;
  border: 1px solid #c8d8ec;
  background:
    radial-gradient(560px 220px at 12% 0%, #ffffffa8 0%, #0000 70%),
    linear-gradient(160deg, #f8fbff 0%, #eef4fb 100%);
  box-shadow: 0 30px 48px -38px #21466c59;
}

.about-page .info-card {
  border-radius: 28px 28px 28px 52px;
  border: 1px solid #41699c;
  background:
    radial-gradient(420px 180px at 20% 0%, #ffffff1c 0%, #0000 72%),
    linear-gradient(160deg, #183154 0%, #204673 100%);
  box-shadow: 0 30px 50px -38px #0e1f3a8a;
}

.about-page .info-card h3 {
  color: #f1f6ff !important;
}

.about-page .info-card .bullet-list li {
  color: #d7e6ff !important;
}

.about-page .info-note {
  border-radius: 16px;
  border-color: #c4d7ee;
  background: linear-gradient(165deg, #f8fbff 0%, #eef4fb 100%);
}

.about-page .info-stats {
  padding-top: 10px !important;
}

.about-page .info-stat-grid {
  gap: 12px;
}

.about-page .info-band {
  border: 1px solid #c8d8ec;
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(620px 200px at 12% 0%, #ffffffae 0%, #0000 72%),
    linear-gradient(160deg, #f8fbff 0%, #eef4fb 100%);
  box-shadow: 0 22px 42px -36px #22466f59;
}

.about-page .info-band-title {
  margin: 2px 4px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d6990;
}

.about-page .info-stat-card {
  border-radius: 16px;
  border: 1px solid #d6e2f2;
  background: #ffffffd4;
  padding: 14px 14px 12px;
  box-shadow: 0 12px 24px -24px #22486f70;
}

.about-page .info-stat-card .k-label {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #48658d;
}

.about-page .info-stat-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
}

.about-page .info-stat-card .muted {
  margin: 0;
}

@media (max-width: 980px) {
  .about-page .info-copy,
  .about-page .info-card,
  .about-page .info-stat-card {
    border-radius: 20px;
  }
}


/*
CRUDEVIA RETHEME V2 (Oil & Sky)
Light base + dark accents + warm CTA
*/
:root {
  --text-strong: #1a2740;
  --text-muted: #5a6b86;
  --text-on-dark: #e9f1ff;
  --text-muted-on-dark: #b8c8df;

  --surface-0: #14243a;
  --surface-1: #eef3f8;
  --surface-2: #1b2f49;
  --surface-card: #ffffff;
  --border-subtle: #c8d6e8;

  --input-bg: #ffffff;
  --input-border: #b8c9df;
  --focus-ring: #2e6fb833;
  --shadow-soft: 0 24px 45px -26px #1a2b4338;

  --gold-1: #d68b2a;
  --gold-2: #e39c42;
  --gold-3: #efb36d;
  --silver-1: #2e6fb8;
  --silver-2: #dfe9f5;
  --accent-positive: #2e9c6a;
}

body {
  background:
    radial-gradient(1200px 700px at 8% -10%, #2e6fb81f 0%, #0000 62%),
    radial-gradient(980px 620px at 94% 22%, #d68b2a1a 0%, #0000 58%),
    linear-gradient(180deg, #f6f9fd 0%, #eef3f8 55%, #edf2f8 100%) !important;
  color: var(--text-strong) !important;
}

.section.light {
  background:
    radial-gradient(760px 420px at 10% 6%, #2e6fb811 0%, #0000 62%),
    radial-gradient(820px 460px at 92% 90%, #d68b2a12 0%, #0000 64%),
    linear-gradient(180deg, #f7fafe 0%, #eef3f8 100%) !important;
  color: var(--text-strong) !important;
}

.section.dark {
  background:
    radial-gradient(900px 460px at 90% 4%, #2e6fb833 0%, #0000 64%),
    radial-gradient(760px 420px at 10% 94%, #d68b2a24 0%, #0000 60%),
    linear-gradient(140deg, #14243a 0%, #1b2f49 58%, #243a59 100%) !important;
  color: var(--text-on-dark) !important;
}

.section.light p,
.section.light li { color: var(--text-muted) !important; }

.section.dark p,
.section.dark li { color: var(--text-muted-on-dark) !important; }

.section.light > .container {
  background: linear-gradient(160deg, #f8fbff 0%, #f0f5fb 100%) !important;
  border: 1px solid #ccdae9 !important;
}

.section.dark > .container {
  background: linear-gradient(160deg, #f8fbff 0%, #eef4fb 100%) !important;
  border: 1px solid #b9cce3 !important;
}

.section.dark h1,
.section.dark h2,
.section.dark h3 { color: #122238 !important; }

.site-header {
  background: linear-gradient(180deg, #14243a 0%, #1b2f49 100%) !important;
  border-bottom: 1px solid #2d4e74 !important;
}

.desktop-nav a { color: #d4e3f8 !important; }
.desktop-nav a:hover { color: #efb36d !important; border-bottom-color: #efb36d !important; }

.lang-pill {
  border: 1px solid #3c5f88 !important;
  background: linear-gradient(145deg, #173053 0%, #203d66 100%) !important;
  color: #eaf2ff !important;
}

.cta-btn,
.header-right .cta-btn {
  background: linear-gradient(120deg, #d68b2a 0%, #e39c42 52%, #efb36d 100%) !important;
  color: #102035 !important;
  border-color: #b97726 !important;
}

.hero,
.hero::before {
  background:
    radial-gradient(circle at 8% 10%, #2e6fb826 0%, transparent 34%),
    radial-gradient(circle at 92% 16%, #d68b2a26 0%, transparent 32%),
    radial-gradient(circle at 50% 100%, #f5f9ff 0%, #e9f1fb 44%, #eef3f8 100%) !important;
}

.hero-range,
.range-item,
.hero-form,
.final-form,
.card,
.quick-proof-card,
.impact-card,
.metrics-feature,
.metrics-primary,
.metric-tile,
.market-context-main,
.market-context-side,
.faq-item,
.site-footer .container,
.privacy-modal {
  background: linear-gradient(155deg, #ffffff 0%, #f3f7fc 100%) !important;
  border-color: #bfd1e8 !important;
  color: var(--text-strong) !important;
}

.tape-shell {
  background: linear-gradient(145deg, #f8fcff 0%, #edf4ff 52%, #e4eefb 100%) !important;
  border-color: #b9cbe5 !important;
}

.tape-chip {
  background: linear-gradient(155deg, #ffffff 0%, #f2f7ff 68%, #ebf2fd 100%) !important;
  border-color: #c2d1e7 !important;
}

/*
CRUDEVIA READABILITY HOTFIX
Global legibility + spacing + contrast pass
*/
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  color: #1b2a42 !important;
  line-height: 1.65 !important;
}

h1,
h2,
h3 {
  color: #142540 !important;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.12;
}

p,
li,
label,
.faq-a,
.site-footer {
  font-size: 18px;
  line-height: 1.68;
}

.section.light p,
.section.light li,
.card p,
.card li,
.footer-grid p,
.privacy-mini,
.k-label,
.metric-label,
.legend-item,
.m-model,
.m-market,
.form-sub {
  color: #50627f !important;
}

.section.dark p,
.section.dark li {
  color: #4f617d !important;
}

.hero-copy > p {
  max-width: 70ch;
  font-size: 1.08rem;
}

.site-header {
  box-shadow: 0 6px 16px -12px #0b172933;
}

.brand-text {
  letter-spacing: 0.01em;
}

.desktop-nav a,
.lang-pill,
.header-right .cta-btn {
  font-size: 1.03rem !important;
}

.desktop-nav a {
  font-weight: 700;
}

.hero-form,
.final-form,
.form-card {
  border-width: 1px;
}

label {
  color: #3f536f !important;
  font-weight: 600;
}

input,
.form-card input {
  background: #ffffff !important;
  color: #12233d !important;
  border: 1px solid #9eb3cf !important;
  font-size: 1.03rem;
  font-weight: 500;
}

input::placeholder,
.form-card input::placeholder {
  color: #67819f !important;
  opacity: 1;
}

.form-card input:focus,
input:focus {
  box-shadow: 0 0 0 4px #2e6fb826 !important;
  border-color: #5f85b3 !important;
}

.faq-item {
  border-width: 1px;
}

.faq-q {
  color: #172944 !important;
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  line-height: 1.38;
}

.faq-a p {
  color: #4f617d !important;
}

.chip {
  color: #e5f0ff !important;
  font-size: 0.86rem;
  font-weight: 700;
}

.tape-chip .metal {
  font-weight: 700;
  color: #2b4263 !important;
}

.tape-chip strong {
  color: #162947 !important;
}

.tape-chip em {
  font-weight: 800;
}

.range-item p,
.micro-disclaimer,
.hero-range .intro {
  color: #4f607a !important;
}

.range-item strong {
  color: #142540 !important;
}

.footer-links a {
  color: #2f4568 !important;
}

.footer-links a:hover {
  color: #1d3150 !important;
}

.link-btn {
  color: #2d4468 !important;
}

.privacy-modal h2,
.privacy-modal h3 {
  color: #182b47 !important;
}

.privacy-modal p {
  color: #4c5f7b !important;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  p,
  li,
  label,
  .faq-a,
  .site-footer {
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-copy > p {
    font-size: 1.02rem;
  }

  .desktop-nav a,
  .lang-pill,
  .header-right .cta-btn {
    font-size: 0.98rem !important;
  }

  .faq-q {
    font-size: 1.04rem;
  }
}

@media (max-width: 640px) {
  h1 {
    line-height: 1.1;
  }

  .section {
    padding: 40px 0;
  }

  .hero-range,
  .quick-proof-card,
  .card,
  .faq-item,
  .metric-tile {
    border-radius: 12px;
  }
}

/* Remove unintended section-wide wrapper boxes added by global re-theme */
.section.light > .container,
.section.dark > .container {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 26px !important;
}

/* Dark sections readability fix:
   outer text on dark bg must be light, card text stays dark */
.section.dark > .container > h1,
.section.dark > .container > h2,
.section.dark > .container > h3,
.section.dark .market-subtitle,
.section.dark .impact-label,
.section.dark .cycle-kicker,
.section.dark .eyebrow {
  color: #e9f1ff !important;
}

.section.dark > .container > .intro,
.section.dark > .container > p,
.section.dark > .container > ul li,
.section.dark > .container > ol li {
  color: #c1d0e4 !important;
}

/* Keep text inside light cards readable (dark text) even when card is in dark section */
.section.dark .card h1,
.section.dark .card h2,
.section.dark .card h3,
.section.dark .card .impact-label,
.section.dark .card .market-subtitle,
.section.dark .card .k-label,
.section.dark .card strong {
  color: #142540 !important;
}

.section.dark .card p,
.section.dark .card li,
.section.dark .card .muted,
.section.dark .card .intro {
  color: #4f617d !important;
}

/*
CRUDEVIA FINAL VISUAL POLISH
Fixes residual readability and contrast conflicts across sections
*/
.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark > h1,
.section.dark > h2,
.section.dark > h3 {
  color: #eaf2ff !important;
}

.section.dark > .container > p,
.section.dark > .container > .intro,
.section.dark > .container > ul li,
.section.dark > .container > ol li {
  color: #c4d3e8 !important;
}

/* Footer / legal readability */
.site-footer .container {
  background: linear-gradient(155deg, #f8fbff 0%, #f1f6fc 100%) !important;
  border: 1px solid #bfd1e8 !important;
}

.footer-grid h3 {
  color: #162846 !important;
}

.footer-grid p,
.footer-grid .muted {
  color: #4f617d !important;
}

.link-btn {
  background: linear-gradient(145deg, #edf4ff 0%, #dfeafb 100%) !important;
  border: 1px solid #a7bddc !important;
  color: #1f3f67 !important;
  box-shadow: 0 8px 18px -14px #2b4d7933 !important;
}

.link-btn:hover {
  background: linear-gradient(145deg, #e6f0ff 0%, #d7e5fa 100%) !important;
  border-color: #8ea9cf !important;
  color: #183657 !important;
}

/* Forms readability */
.hero-form,
.final-form,
.form-card {
  background: linear-gradient(155deg, #fdfefe 0%, #f4f8fd 100%) !important;
  border: 1px solid #b8cce4 !important;
}

.form-title,
.form-card h3,
.register-form label {
  color: #1a3150 !important;
}

.form-sub,
.privacy-mini,
.form-card p {
  color: #556a89 !important;
}

.trust-chips {
  gap: 10px !important;
}

.chip {
  background: linear-gradient(145deg, #204a77 0%, #173f68 100%) !important;
  border: 1px solid #2e5b8a !important;
  color: #f4f8ff !important;
  font-weight: 700 !important;
}

/* Inputs and CTA legibility */
.register-form input,
.form-card input {
  background: #ffffff !important;
  border: 1px solid #9eb7d6 !important;
  color: #153050 !important;
}

.register-form input::placeholder,
.form-card input::placeholder {
  color: #6a84a6 !important;
}

.register-form .cta-btn,
.form-card .cta-btn {
  color: #102035 !important;
  font-weight: 800 !important;
}

/* Reviews block hard-fix (high specificity to avoid cascade conflicts) */
#reviews h2 {
  color: #ecf3ff !important;
}

#reviews .intro {
  color: #c7d6ea !important;
}

#reviews .rating-badge {
  background: linear-gradient(145deg, #f3fff8 0%, #e7f7ef 100%) !important;
  border: 1px solid #99d4b3 !important;
  color: #1d3a5f !important;
  box-shadow: 0 8px 18px -14px #0f2a4740 !important;
}

/* Form layout aligned closer to the reference structure while preserving site palette */
.hero-form,
.final-form {
  padding: 24px !important;
  border-radius: 22px !important;
  box-shadow: 0 26px 50px -32px rgba(20, 42, 68, .28) !important;
}
.final-form {overflow: hidden}
.form-card .register-form {
  gap: 14px !important;
}

.signup_form {
  display: grid;
  gap: 14px;
}

.form-card .register-form > div,
.form-card .name-row > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-card .input-box,
.form-card .button-box {
  padding: 12px 14px;
  border: 1px solid #c6d6ea;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.form-card .button-box {
  padding: 10px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
}

.form-card label {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
  color: #29476e !important;
}

.form-card input,
.register-form input {
  min-height: 52px;
  padding: 0 14px ;
  border-radius: 12px !important;
  background: #fff !important;
  border: 1px solid #9eb7d6 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.form-card input:focus,
.register-form input:focus {
  border-color: #5d93c5 !important;
  box-shadow: 0 0 0 4px rgba(118, 164, 210, .18) !important;
}

.form-card .cta-btn,
.register-form .cta-btn {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  border-radius: 14px !important;
  box-shadow: 0 18px 30px -22px rgba(33, 76, 118, .5) !important;
}

.form-card .form-msg,
.form-card .form-status {
  min-height: 22px;
  font-size: 14px;
  color: #285c46;
}

.form-status {
  margin: 0;
}

.form-card input[type="hidden"] {
  display: none !important;
}

.contact-layout .final-form,
.final-grid .final-form {
  align-self: start;
}

#reviews .rating-badge span {
  color: #1d3a5f !important;
}

#reviews .rating-badge .trust-mark {
  background: linear-gradient(160deg, #1ecb72 0%, #0ea45a 100%) !important;
  color: #ffffff !important;
}

#reviews .rating-badge .trust-stars {
  color: #10985a !important;
}

/* MARKET BLOCK LOCK: readability + no clipped tape */
#market h2,
#market .market-subtitle {
  color: #ecf3ff !important;
}

#market > .container > .intro,
#market .market-merge-top > .intro {
  color: #c7d6ea !important;
}

#market .tape-chip {
  min-width: max-content !important;
}

#market .impact-label,
#market .k-label {
  color: #425775 !important;
}

/* MARKET BLOCK FINAL: one unified module + running ticker */
#market .container {
  background: linear-gradient(160deg, #132743 0%, #1a3354 100%) !important;
  border: 1px solid #2d4f79 !important;
  border-radius: 22px !important;
  padding: 22px 24px !important;
  box-shadow: 0 20px 38px -26px #09182d8a !important;
}

#market .merged-market .market-merge-top {
  margin-bottom: 14px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid #87a4c966 !important;
}

/* Restore marquee behavior and remove manual scrollbar feel */
#market .tape-shell {
  overflow: hidden !important;
}

#market .tape-track {
  display: flex !important;
  animation: tape-scroll 30s linear infinite !important;
  min-width: max-content !important;
  padding: 10px 14px !important;
}

#market .tape-shell .tape-track:nth-child(2) {
  display: flex !important;
}

#market .tape-shell:hover .tape-track {
  animation-play-state: paused !important;
}







/* Market number emphasis on all main pages */
#market .market-context-main h3,
#market .impact-card h3 {
  color: #1fa25d !important;
  text-shadow: 0 1px 0 #ffffff66;
}


/* Legal pages typography */
.legal-page .info-copy {
  max-width: 980px;
}

.legal-page .info-copy h1 {
  font-size: clamp(2rem, 3.2vw, 2.7rem) !important;
  line-height: 1.2;
  margin-bottom: 10px;
}

.legal-page .info-copy h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
  line-height: 1.28;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page .info-copy p,
.legal-page .info-copy li {
  font-size: 18px;
  line-height: 1.62;
}

.legal-page .info-copy .bullet-list {
  margin-top: 8px;
}


/* Home: remove top strip under header */
.home-page #hero {
  padding-top: 0 !important;
  background:
    radial-gradient(circle at 8% 10%, #2e6fb826 0%, transparent 34%),
    radial-gradient(circle at 92% 16%, #d68b2a26 0%, transparent 32%),
    radial-gradient(circle at 50% 100%, #f5f9ff 0%, #e9f1fb 44%, #eef3f8 100%) !important;
}

.home-page #hero::before {
  background: transparent !important;
}

.home-page #hero .hero-grid {
  margin-top: 0 !important;
  align-items: start !important;
}

/* Home seam fix: remove visual strip between sticky header and hero */
.home-page .site-header {
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-page main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-page #hero.section.light.hero {
  margin-top: -34px !important;
  padding-top: 34px !important;
}

.home-page #hero.section.light.hero > .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-page #hero .hero-form {
  margin-top: 28px !important;
  align-self: start !important;
}

/* Reviews: visual polish */
#reviews .container {
  background:
    radial-gradient(760px 260px at 12% 0%, #2e6fb822 0%, transparent 72%),
    linear-gradient(165deg, #132a49 0%, #18365d 100%) !important;
  border: 1px solid #365a86 !important;
  border-radius: 24px !important;
  padding: 30px 28px !important;
  box-shadow: 0 24px 46px -30px #081528b8 !important;
}

#reviews h2 {
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
  letter-spacing: 0.01em !important;
}

#reviews .rating-badge {
  margin: 14px 0 18px !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
}

#reviews .reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 10px !important;
  align-items: start !important;
}

#reviews .review-card {
  border-radius: 16px !important;
  border: 1px solid #b9cce5 !important;
  background: linear-gradient(170deg, #ffffff 0%, #f2f7ff 100%) !important;
  padding: 16px 14px 14px !important;
  box-shadow: 0 16px 32px -26px #0a1c3370 !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
  display: grid !important;
  grid-template-rows: auto auto 1fr !important;
  gap: 10px !important;
  min-height: 190px !important;
}

#reviews .review-card::before {
  width: 5px !important;
}

#reviews .review-card:hover {
  transform: translateY(-4px) !important;
  border-color: #8fb2da !important;
  box-shadow: 0 24px 40px -26px #0b1e367a !important;
}

#reviews .review-top {
  align-items: flex-start !important;
  gap: 11px !important;
}

#reviews .review-top strong {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem) !important;
  line-height: 1.15 !important;
}

#reviews .avatar-photo {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
  border: 2px solid #e9d2aa !important;
  box-shadow: 0 6px 14px -10px #0e20385e !important;
}

#reviews .verified {
  margin-left: auto !important;
  margin-top: 2px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
  border: 1px solid #a7d7bd !important;
  background: linear-gradient(145deg, #effcf5 0%, #e2f7ea 100%) !important;
  color: #188d56 !important;
  font-size: 11px !important;
  letter-spacing: .02em !important;
  white-space: nowrap !important;
}

#reviews .review-card .muted {
  color: #4c6384 !important;
  margin: 0 !important;
}

#reviews .review-card > p:last-child {
  margin: 12px 0 0 !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: linear-gradient(160deg, #f8fbff 0%, #edf4ff 100%) !important;
  border: 1px solid #c5d5eb !important;
  color: #2d4568 !important;
  font-style: italic !important;
  line-height: 1.45 !important;
  min-height: 76px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  #reviews .container {
    padding: 22px 18px !important;
  }

  #reviews .review-top strong {
    font-size: 1.6rem !important;
  }

  #reviews .reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  #reviews .review-top {
    gap: 9px !important;
  }

  #reviews .review-top strong {
    font-size: clamp(1.18rem, 6.6vw, 1.34rem) !important;
    line-height: 1.12 !important;
  }

  #reviews .verified {
    font-size: 10px !important;
    padding: 2px 7px !important;
  }
  .header-layout {
    padding-inline: 10px;
  }
}
.input-box, .button-box {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.custom_btn {
  cursor: pointer;
}
.custom_btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.name-row {
  flex-direction: row !important;
}
.form-status {
  display: none;
}
.hero-form {
  overflow: hidden;
}
@media (max-width: 550px) {
  .principle-card h3 {
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  .header-layout {
    gap: 0;
  }
  .lang-pill, .header-right .cta-btn {
    padding: 0px 8px;
  }
  h1, .info-page h1{
    font-size: clamp(1.8rem, 5vw, 4.1rem);
    line-height: 1.2;
  }
  h2 {
    font-size: clamp(1.55rem, 3vw, 3rem);
  }
  .name-row {
    flex-direction: column !important;
  }
  p, li, label, .faq-a, .site-footer {
    font-size: 13px;
    line-height: 1.62;
  }
  .desktop-nav a, .lang-pill, .header-right .cta-btn {
    font-size: 0.78rem !important;
  }
}