﻿/*
PALETTE FAMILY: Midnight + Gold + Silver
CTA COLOR FAMILY: Gold Metallic
PAGE BALANCE: soft-contrast
HERO TEMPERATURE: cool
*/
:root {
  --text-strong: #1f2430;
  --text-muted: #4f5c72;
  --text-on-dark: #1f2430;
  --text-muted-on-dark: #4f5c72;

  --surface-0: #121722;
  --surface-1: #f5f0e8;
  --surface-2: #1b2230;
  --surface-card: #fffaf1;
  --border-subtle: #d1c3ad;

  --input-bg: #fffdf9;
  --input-border: #cfc2ac;
  --focus-ring: #d3a76055;
  --shadow-soft: 0 24px 45px -26px #0d121d7a;

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

  --gold-1: #b88942;
  --gold-2: #d8b06c;
  --gold-3: #f0d8a3;
  --silver-1: #9aa1ad;
  --silver-2: #c6ccd7;
}

* {
  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(circle at 12% -6%, #d8b06f2e 0%, transparent 34%),
    radial-gradient(circle at 85% 8%, #a0a7b31f 0%, transparent 26%),
    linear-gradient(180deg, #111722 0%, #1a2230 16%, #f5f0e8 34%, #f5f0e8 100%);
  color: var(--text-strong);
}

.section {
  width: 100%;
  overflow: clip;
  padding: 60px 0;
}

.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(circle at 92% 12%, #d8b06f1e 0%, transparent 28%),
    linear-gradient(140deg, #141b27 0%, #1b2433 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, #fffaf1 0%, #f0e6d5 100%);
  border: 1px solid #cfb98f;
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-soft);

  @media (max-width: 560px) {
    padding: 16px;
  }
}

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

  @media (max-width: 560px) {
    padding-inline: 16px;
  }
}

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.4rem, 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: #2f4d7e;
}

.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: 0 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 #8a682f75;
}

.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(10px);
  background: #0d1017;
  border-bottom: 1px solid #2d2316;
}

.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: #e0b55e;
  font-weight: 800;
  font-size: 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  height: 46px;
  padding: 0 2px 0 0;
  line-height: 1;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: #e0b55e;
  border: 0;
  font-size: 13px;
  line-height: 1;
}

.desktop-nav {
  display: inline-flex;
  gap: 6px;
}

.desktop-nav a {
  text-decoration: none;
  font-weight: 700;
  color: #e0b55e;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 42px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: .89rem;
  text-wrap: nowrap;

}

.desktop-nav a:hover {
  color: #f0ca80;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-wrap {
  position: relative;
}

.lang-pill {
  height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid #c9a76b;
  background: linear-gradient(145deg, #fff6e2 0%, #f0dfb9 100%);
  color: #2a2f3b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -14px #8b6c3791;
}

.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;

  @media (max-width: 560px) {
    width: 14px;
  }

}

.header-right .cta-btn {
  height: 42px;
  padding: 0 20px;
  line-height: 1;
  border-radius: 12px;
  background: linear-gradient(120deg, #b88a42 0%, #d8b06c 56%, #f0d8a3 100%);
  border: 1px solid #c7a264;
  color: #202632;
  box-shadow: 0 10px 20px -14px #8b6c377d;
}

.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;
}

.hero .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 26px;
  @media (max-width: 560px) {
    padding: 0 16px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: start;
}

.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, #fff9ef 0%, #f1e6d2 42%, #ece6da 60%, #f7eddc 100%);
  border: 1px solid #cfbc98;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-range::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, #ffffff45 44%, transparent 62%);
  opacity: .55;
}

.hero-range h2 {
  position: relative;
  padding-left: 40px;
}

.hero-range h2::before {
  content: "✦";
  position: absolute;
  left: 10px;
  top: 2px;
  color: #b2843f;
  font-size: 24px;
}

.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.range-item {
  border: 1px solid #cdbb9a;
  border-radius: var(--radius-md);
  padding: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #f3f0ea 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 .5s ease, box-shadow .5s ease, border-color .5s 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, 3vw, 2.35rem);
  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: linear-gradient(155deg, #fffaf1 0%, #f0e6d4 100%);
}

.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 #d2bf9a;
  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 #d0bc97;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffaf1 0%, #efe2ca 58%, #e8e2d6 100%);
  overflow: hidden;
  display: flex;
  width: 100%;
  gap: 0;
  box-shadow: var(--shadow-soft);
}

.tape-track {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 10px;
  animation: tape-scroll 28s linear infinite;
}

.tape-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cdb98f;
  border-radius: 14px;
  background: linear-gradient(150deg, #fffefb 0%, #f6efe1 100%);
  padding: 8px 12px;
  min-height: 50px;
  min-width: 320px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.metal-logo {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  flex: 0 0 24px;
  box-shadow: 0 0 0 1px #ccb48d;
}

.tape-chip .metal {
  font-size: 15px;
  font-weight: 700;
  color: #37465d;
}

.tape-chip strong {
  font-size: 22px;
  color: #1f2430;
  line-height: 1;
}

.tape-chip em {
  font-style: normal;
  font-size: 16px;
  font-weight: 800;
  color: #2d7b54;
  white-space: nowrap;
}

.drivers-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.driver-main {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffaf1 0%, #eee1c9 50%, #e7e1d7 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 #d7be93;
  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: #a7732f;
}

.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;
}

.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, 1fr);
  gap: 10px;
}

.model-feature {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fffaf1 0%, #efe3cc 52%, #e9e2d8 100%);
  border: 1px solid #d3c1a0;
  box-shadow: var(--shadow-soft);
}

.model-kicker {
  margin: 0 0 8px !important;
  font-size: 14px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #b68839 !important;
  text-transform: uppercase;
}

.model-flow-top {
  padding-bottom: 12px;
  border-bottom: 1px solid #d8c6a7;
}

.model-flow-bottom {
  padding-top: 12px;
}

.step {
  padding: 14px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid #d8cfbf;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #b88a42, #e0bc7d);
  color: #1f2430;
  font-weight: 800;
  margin-bottom: 10px;
}

.focus-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mix-panel {
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(150deg, #fffaf1 0%, #efe2ca 55%, #e8e2d7 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, #b88a42, #e0bc7d);
}

.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: #b88a42;
}

.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, #fffaf1 0%, #efe3cc 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 #d3c1a0;
  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: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #fffaf1 0%, #efe2ca 54%, #e9e2d7 100%);
  box-shadow: var(--shadow-soft);
}

.premium-case {
  border: 1px solid #c8ab79;
  background: linear-gradient(155deg, #fffaf1 0%, #efe0c5 52%, #e9e1d2 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-bottom: 1px solid #d2bf9b;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.case-name {
  margin: 0 !important;
  font-weight: 700;
  color: #1f2430 !important;
}

.case-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #ccb48d;
  box-shadow: 0 3px 8px -5px #2a1d0e80;
  flex: 0 0 48px;
}

.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 #cfbb96;
  border-radius: 12px;
  padding: 12px;
  background: #fffdf9;
}

.case-return {
  background: linear-gradient(160deg, #fff5e0 0%, #f3dfb6 100%);
  border-color: #c79a4f;
}

.case-arrow {
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
  color: #9b6e2e;
  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;
}

.return-lg {
  display: block;
  margin-top: 4px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: #8f5a10;
}

.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 #d5c3a2;
  border-radius: 12px;
  padding: 12px;
  background: #fffdf9;
}

.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 #c79a4f;
  border-radius: 10px;
  background: #fffdf8;
  color: #1f2430 !important;
  font-style: italic;
  font-weight: 600;
}

.chart-shell {
  margin-top: 12px;
  border: 1px solid #d2bf9b;
  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: 1fr;
  gap: 26px;
  align-items: start;
}

.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: #b68839 !important;
}

.action-wrap h2 {
  margin-bottom: 8px;
}

.action-list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.compact-action {
  margin-top: 10px;
}

.action-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  border: 1px solid #d8cfbf;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #ffffff;
  min-height: 0;
}

.action-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: #1f2430;
  background: linear-gradient(140deg, #b88a42, #e0bc7d);
  border: 0;
}

.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: var(--radius-md);
  border: 1px solid #d8cfbf;
  background: #ffffff;
  font-weight: 600;
  text-align: left;
}

.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: #b68839 !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;
}

.fit-panels .card {
  padding: 16px;
  border-radius: 16px;
}

.fit-panels .card h3 {
  margin-bottom: 10px;
}

.fit-dual {
  align-items: stretch;
}

.fit-card {
  text-align: left;
  background: linear-gradient(160deg, #fffdfa 0%, #f3ebdc 54%, #ece4d7 100%);
  border: 1px solid #d8cfbf;
  box-shadow: 0 14px 26px -24px #3f2d1457;
}

.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;
  @media (max-width: 560px) {
    padding-left: 16px;
  }
}

.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 #d8cfbf;
  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 #d8cfbf;
  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: #b68839 !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 #d5bb8b;
}

.principle-card h3 {
  font-size: 2rem;
  line-height: 1.2;
  @media (max-width: 560px) {
    font-size: 1.2rem;
  }
}

.principle-card p {
  margin: 0 !important;
}

.cycle-box {
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid #d3be97;
  background: linear-gradient(145deg, #fffaf1 0%, #efe2ca 58%, #e7e0d6 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.cycle-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, #ffffff40 42%, transparent 68%);
}

.cycle-box h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.cycle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.cycle-row::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, #cfaa6a 0%, #96a0af 100%);
  opacity: .75;
}

.cycle-row article {
  border: 1px solid #d8cfbf;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(165deg, #fffefb 0%, #f3ede2 100%);
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cycle-row article::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, #c79954, #e3c88d);
  box-shadow: 0 0 0 3px #fff7e8;
}

.cycle-row article p {
  margin: 18px 0 4px;
  color: #55647d !important;
  font-weight: 600;
}

.cycle-row article strong {
  font-size: 1.45rem;
  line-height: 1.2;
  color: #1f2430;
}

.cycle-row article:hover {
  transform: translateY(-2px);
  border-color: #c9a464;
  box-shadow: 0 16px 24px -22px #3f2d1457, inset 0 1px 0 #ffffff;
}

.risk-compact {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(145deg, #fffaf1 0%, #efe2c9 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 #d6c29e;
  background: #fff3dc;
  border-radius: 999px;
  padding: 8px 14px;
  margin: 10px 0 12px !important;
  font-weight: 700;
  color: #1f2f4b !important;
  @media (max-width: 560px) {
    font-size: 14px;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.review-card {
  border-radius: var(--radius-md);
  padding: 14px;
}

.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: #1f9b57 !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: #c9a464;
  box-shadow: 0 20px 34px -24px #3f2d1457, inset 0 1px 0 #ffffff;
}

.driver-row:hover {
  border-color: #c8a266;
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 18px -20px #3f2d1457;
}

.faq-item:hover {
  border-color: #c9a464;
  box-shadow: 0 12px 20px -22px #3f2d1457;
}

.review-card:hover .avatar-photo {
  box-shadow: 0 0 0 2px #d8b676, 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 #d8cfbf;
  border-radius: 12px;
  background: #fffdf8;
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  padding: 14px 16px;
  color: var(--text-strong);
  cursor: pointer;
}

.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;
}

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

.site-footer {
  border-top: 1px solid #d9cfbf;
}

.footer-grid {
  padding: 34px 26px 42px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  @media (max-width: 560px) {
    padding: 34px 16px 42px;
  }
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.link-btn {
  border: 0;
  background: none;
  color: #2b4d8b;
  text-decoration: underline;
  padding: 0;
  font-size: 18px;
  cursor: pointer;
}

.privacy-modal {
  width: min(900px, 92vw);
  border: 1px solid #d8cfbf;
  border-radius: 16px;
  padding: 50px 20px 20px;
  background: #fffdf8;
  color: var(--text-strong);

}

.privacy-modal::backdrop {
  background: #151b2c52;
}

.modal-x {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #d8cfbf;
  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);
  }

  .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;
    overflow: visible !important;
  }

  .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;
    text-wrap: nowrap;
    @media (max-width: 560px) {
      height: 30px;
      padding: 0 8px;
      font-size: 10px;
      @media (max-width: 360px) {
        font-size: 9px;
      }
    }
  }

  .burger {
    width: 40px;
    height: 40px;
    border-radius: 10px;

    @media (max-width: 560px) {
      width: 30px;
      height: 30px;
    }
  }

  .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;
  }

  .driver-side {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .tape-track {
    animation-duration: 22s;
  }

  .tape-chip strong {
    font-size: 20px;
  }

  .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: 290px;
  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 #d2bf9b;
}

.market-subtitle {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.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, #fffdfa 0%, #f3ebdc 58%, #ece5d8 100%);
  box-shadow: 0 18px 40px rgba(23, 29, 40, 0.14);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.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(2rem, 4.2vw, 3rem);
  line-height: 1;
  margin: 0 0 8px 0;
  color: #162034;
  letter-spacing: 0.01em;
}

.impact-card .impact-value {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  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: 5px solid #c6932a;
}

.market-impact .gold-card .impact-value {
  color: #1f9b57 !important;
}

.silver-card {
  border-top: 5px solid #8a98b4;
}

.market-impact .silver-card .impact-value {
  color: #1f9b57 !important;
}

.pall-card {
  border-top: 5px solid #4b78b8;
}

.market-impact .pall-card .impact-value {
  color: #1f9b57 !important;
}

@media (max-width: 980px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.metrics-feature {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(150deg, #fffdf8 0%, #f2ead9 52%, #ece4d5 100%);
  box-shadow: 0 18px 42px rgba(17, 25, 36, 0.18);
}

.metrics-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.metrics-primary {
  background: linear-gradient(150deg, #fffefb 0%, #f8f1e2 100%);
  border: 1px solid #d0bc97;
  border-radius: 16px;
  padding: 18px;
}

.metrics-primary h3 {
  font-size: clamp(2.3rem, 4.8vw, 3.4rem);
  line-height: 1;
  margin: 6px 0 10px;
  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: 18px;
}

.metrics-side {
  display: grid;
  gap: 10px;
}

.metrics-mini {
  background: linear-gradient(145deg, #fffdf8 0%, #f5eedf 100%);
  border: 1px solid #ccb791;
  border-radius: 14px;
  padding: 14px 16px;
}

.metrics-mini strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  color: #162744;
}

.metrics-chart-shell {
  border: 1px solid #d0bc97;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffefb 0%, #f6efe2 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: #b9862c;
}

.legend-item.market::before {
  background: #7e8da7;
}

.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, #c6932a, #dfb365);
}

.c-lines i.market {
  top: 10px;
  width: var(--w);
  background: #8f99ad;
}

.c-row span {
  color: #3e4f69;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .metrics-top {
    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: 10px 0 0;
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  color: #9e6c14;
  background: linear-gradient(145deg, #fff6e4 0%, #f6e4bf 100%);
  border: 1px solid #d9bc84;
  border-radius: 10px;
  padding: 6px 10px;
}

.metrics-monthly {
  border: 1px solid #d0bc97;
  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: #9d6d12;
  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;
  }
}

.logo {
  max-width: 170px;

  @media (max-width: 560px) {
    max-width: 110px;

    @media (max-width: 359px) {
      max-width: 60px;
    }
  }
}
.logo2 {
  max-width: 170px;

  @media (max-width: 560px) {
    max-width: 120px;
  }
}
.custom_btn {
  margin-top: 35px;
}

.input-box {
  position: relative;
}

.button-box {
  position: relative;
}