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

:root {
    --bg:       #09090e;
    --bg2:      #0e0e17;
    --bg3:      #13131f;
    --bg4:      #181824;
    --border:   rgba(255,255,255,0.07);
    --border-b: rgba(255,255,255,0.13);
    --text:     #eaeaf4;
    --muted:    #7a7a9e;
    --dim:      #3a3a5a;
    --blue:     #4f8ef7;
    --violet:   #8b5cf6;
    --cyan:     #06b6d4;
    --green:    #10b981;
    --amber:    #f59e0b;
    --red:      #ef4444;
    --orange:   #f97316;
    --rose:     #f43f5e;
    --font-h:   'Syne', sans-serif;
    --font-b:   'DM Sans', sans-serif;
    --r:        18px;
    --r-sm:     10px;
}

html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* grain */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: .6;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ── NAV ── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }
nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; padding: 0 36px;
    background: rgba(9,9,14,.88); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: height .3s;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-h); font-weight: 700; font-size: 14px;
    color: var(--text); text-decoration: none; letter-spacing: .05em;
}
.nav-logo-icon {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 10px; font-weight: 800; color: #fff;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: #fff !important; padding: 7px 16px;
    border-radius: 8px; font-weight: 500 !important;
}
@media(max-width:768px){ .nav-links { display: none; } }

/* ── HERO ── */
.hero {
    padding: 150px 0 90px;
    position: relative; overflow: hidden;
}
.hero-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 1000px; height: 500px;
    background: radial-gradient(ellipse at 50% 0%, rgba(79,142,247,.14) 0%, rgba(139,92,246,.06) 50%, transparent 70%);
    pointer-events: none;
}
.hero-line {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79,142,247,.4), rgba(139,92,246,.4), transparent);
}

.tag-pill {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--cyan); border: 1px solid rgba(6,182,212,.25);
    background: rgba(6,182,212,.06); padding: 6px 14px; border-radius: 100px;
    margin-bottom: 28px;
}
.tag-pill-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
    font-family: var(--font-h);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -.025em; color: #fff;
    margin-bottom: 22px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--violet) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 18px; color: var(--muted); line-height: 1.75;
    max-width: 580px; margin-bottom: 52px;
}
.hero-metrics {
    display: flex; gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    width: fit-content;
}
.hm {
    padding: 22px 36px; text-align: center;
    border-right: 1px solid var(--border);
}
.hm:last-child { border-right: none; }
.hm-val {
    font-family: var(--font-h); font-size: 30px; font-weight: 800; color: #fff; line-height: 1;
}
.hm-val.c { color: var(--cyan); }
.hm-val.g { color: var(--green); }
.hm-val.v { color: var(--violet); }
.hm-lbl { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* ── CASE WRAPPER ── */
.cases-wrap { padding-bottom: 120px; }

.case-block {
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg2);
    margin-bottom: 100px;
    position: relative;
}

/* accent left line */
.case-block.case-1::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--green), var(--cyan));
}
.case-block.case-2::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--amber));
}

/* ── CASE HEADER ── */
.case-head {
    padding: 56px 64px 48px;
    position: relative; overflow: hidden;
}
.case-head-glow-green {
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 300px;
    background: radial-gradient(ellipse, rgba(16,185,129,.12), transparent 70%);
    pointer-events: none;
}
.case-head-glow-orange {
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 300px;
    background: radial-gradient(ellipse, rgba(249,115,22,.12), transparent 70%);
    pointer-events: none;
}
.case-meta {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap; margin-bottom: 20px;
}
.chip {
    font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    padding: 4px 11px; border-radius: 6px;
}
.chip-green { background: rgba(16,185,129,.12); color: var(--green); border: 1px solid rgba(16,185,129,.2); }
.chip-cyan  { background: rgba(6,182,212,.12);  color: var(--cyan);  border: 1px solid rgba(6,182,212,.2); }
.chip-blue  { background: rgba(79,142,247,.12); color: var(--blue);  border: 1px solid rgba(79,142,247,.2); }
.chip-orange{ background: rgba(249,115,22,.12); color: var(--orange);border: 1px solid rgba(249,115,22,.2); }
.chip-amber { background: rgba(245,158,11,.12); color: var(--amber); border: 1px solid rgba(245,158,11,.2); }
.chip-violet{ background: rgba(139,92,246,.12); color: var(--violet);border: 1px solid rgba(139,92,246,.2); }
.chip-num { font-family: var(--font-h); font-size: 12px; color: var(--dim); font-weight: 700; }

.case-head h2 {
    font-family: var(--font-h);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800; line-height: 1.15;
    letter-spacing: -.02em; color: #fff;
    margin-bottom: 14px;
}
.case-head p { font-size: 16px; color: var(--muted); max-width: 620px; line-height: 1.7; }

/* ── METRICS ROW ── */
.metrics-row {
    display: flex;
    border-top: 1px solid var(--border);
}
.met {
    flex: 1; padding: 24px 28px; text-align: center;
    border-right: 1px solid var(--border);
}
.met:last-child { border-right: none; }
.met-val {
    font-family: var(--font-h); font-size: 32px; font-weight: 800;
    line-height: 1; margin-bottom: 5px;
}
.met-val.g { color: var(--green); }
.met-val.c { color: var(--cyan); }
.met-val.b { color: var(--blue); }
.met-val.a { color: var(--amber); }
.met-val.o { color: var(--orange); }
.met-val.v { color: var(--violet); }
.met-lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── SPLIT BODY ── */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
}
.split-col { padding: 44px 52px; }
.split-col:first-child { border-right: 1px solid var(--border); }

.col-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--dim); margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
}
.col-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.prob-text { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.prob-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prob-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--muted); line-height: 1.55;
}
.prob-list li .x {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
    background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: var(--red); font-weight: 700;
}

/* Feature cards */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fc {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: var(--r-sm); padding: 14px 16px;
    transition: border-color .2s, transform .2s;
    cursor: default;
}
.fc:hover { border-color: var(--border-b); transform: translateY(-2px); }
.fc-icon { font-size: 18px; margin-bottom: 6px; }
.fc-name { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.fc-desc { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── MOCKUP ── */
.mockup-wrap {
    border-top: 1px solid var(--border);
    background: var(--bg3);
    padding: 36px 52px 44px;
}
.mock-label {
    font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--dim); margin-bottom: 18px;
}
.mock-frame {
    border: 1px solid var(--border-b); border-radius: 14px; overflow: hidden;
    background: var(--bg);
}
.mock-bar {
    display: flex; align-items: center; gap: 6px; padding: 10px 14px;
    background: rgba(255,255,255,.02); border-bottom: 1px solid var(--border);
}
.mb-dot { width: 9px; height: 9px; border-radius: 50%; }
.mb-r{background:#ef4444;} .mb-y{background:#f59e0b;} .mb-g{background:#10b981;}
.mock-url {
    flex: 1; height: 20px; background: var(--bg2); border-radius: 4px;
    margin-left: 6px; display: flex; align-items: center; padding: 0 8px;
    font-size: 10px; color: var(--dim);
}

/* ── SHOP UI ── */
.shop-ui { display: grid; grid-template-columns: 220px 1fr; min-height: 360px; }
.shop-sidebar { border-right: 1px solid var(--border); padding: 16px; }
.shop-sidebar-title {
    font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--dim); margin-bottom: 10px; padding: 0 6px;
}
.filter-group { margin-bottom: 14px; }
.filter-label { font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 6px; padding: 0 6px; }
.filter-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 5px 6px; font-size: 11px; color: var(--muted);
    border-radius: 6px; cursor: default; transition: background .15s;
}
.filter-item:hover { background: rgba(255,255,255,.04); color: var(--text); }
.filter-item.active { color: var(--green); background: rgba(16,185,129,.07); }
.filter-count {
    font-size: 10px; background: var(--bg3); border: 1px solid var(--border);
    border-radius: 4px; padding: 1px 5px; color: var(--dim);
}
.price-range {
    padding: 0 6px; margin-top: 4px;
}
.price-slider { width: 100%; height: 2px; background: var(--border); border-radius: 1px; position: relative; }
.price-fill { position: absolute; left: 10%; right: 30%; top: 0; height: 100%; background: var(--green); border-radius: 1px; }
.price-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-top: 6px; }

.shop-main { padding: 16px; }
.shop-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
}
.shop-search {
    display: flex; align-items: center; gap: 6px;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 8px; padding: 6px 12px; font-size: 11px; color: var(--dim);
    flex: 1; max-width: 280px;
}
.shop-sort {
    font-size: 11px; color: var(--muted);
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 8px; padding: 6px 12px;
    display: flex; align-items: center; gap: 6px;
}
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.prod-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 10px; overflow: hidden;
    cursor: default; transition: border-color .2s;
}
.prod-card:hover { border-color: var(--border-b); }
.prod-img {
    height: 80px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    border-bottom: 1px solid var(--border);
}
.prod-img.bg1 { background: rgba(16,185,129,.06); }
.prod-img.bg2 { background: rgba(79,142,247,.06); }
.prod-img.bg3 { background: rgba(245,158,11,.06); }
.prod-img.bg4 { background: rgba(139,92,246,.06); }
.prod-img.bg5 { background: rgba(6,182,212,.06); }
.prod-img.bg6 { background: rgba(249,115,22,.06); }
.prod-info { padding: 10px; }
.prod-name { font-size: 11px; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.prod-brand { font-size: 10px; color: var(--dim); margin-bottom: 5px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 12px; font-weight: 700; color: var(--green); }
.prod-old { font-size: 10px; color: var(--dim); text-decoration: line-through; }
.prod-cart {
    width: 22px; height: 22px;
    background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.25);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 11px; transition: background .15s;
}
.prod-card:hover .prod-cart { background: rgba(16,185,129,.3); }
.prod-stars { font-size: 9px; color: var(--amber); margin-top: 3px; }
.prod-badge {
    position: absolute; top: 6px; right: 6px;
    font-size: 9px; font-weight: 700; padding: 2px 5px;
    border-radius: 4px; background: var(--red); color: #fff;
}

/* cart panel */
.cart-panel {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px; margin-top: 8px;
}
.cart-title {
    font-size: 11px; font-weight: 600; color: var(--text);
    margin-bottom: 8px; display: flex; justify-content: space-between;
}
.cart-item {
    display: flex; align-items: center; gap: 8px;
    padding: 5px 0; border-bottom: 1px solid var(--border);
    font-size: 11px;
}
.cart-item:last-of-type { border-bottom: none; }
.cart-ico { font-size: 14px; }
.cart-name { flex: 1; color: var(--text); }
.cart-qty { color: var(--muted); }
.cart-sum { color: var(--green); font-weight: 600; }
.cart-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 8px; font-size: 12px; font-weight: 600;
    color: var(--text);
}
.cart-btn {
    width: 100%; margin-top: 8px; padding: 7px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border: none; border-radius: 7px; font-size: 11px; font-weight: 600;
    color: #fff; cursor: pointer; font-family: var(--font-b);
}

/* ── CAR PLATFORM UI ── */
.car-ui { padding: 20px; }
.car-search-bar {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg2); border: 1px solid var(--border-b);
    border-radius: 12px; padding: 12px 18px;
    margin-bottom: 16px;
}
.cs-field {
    flex: 1; font-size: 12px; color: var(--muted);
    border-right: 1px solid var(--border); padding-right: 12px;
    display: flex; flex-direction: column; gap: 2px;
}
.cs-field:last-of-type { border-right: none; padding-right: 0; }
.cs-label { font-size: 9px; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; }
.cs-val { font-size: 12px; color: var(--text); font-weight: 500; }
.cs-btn {
    padding: 8px 18px; border: none; border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    color: #fff; font-size: 12px; font-weight: 600;
    cursor: pointer; font-family: var(--font-b); white-space: nowrap;
}
.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.car-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden; cursor: default;
    transition: border-color .2s, transform .15s;
}
.car-card:hover { border-color: var(--border-b); transform: translateY(-2px); }
.car-img {
    height: 90px; display: flex; align-items: center; justify-content: center;
    font-size: 36px; border-bottom: 1px solid var(--border);
    position: relative;
}
.car-img.ci1 { background: linear-gradient(135deg, rgba(249,115,22,.08), rgba(245,158,11,.06)); }
.car-img.ci2 { background: linear-gradient(135deg, rgba(79,142,247,.08), rgba(6,182,212,.06)); }
.car-img.ci3 { background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(6,182,212,.06)); }
.car-badge-check {
    position: absolute; top: 7px; right: 7px;
    font-size: 9px; font-weight: 700; padding: 2px 6px;
    border-radius: 4px; background: rgba(16,185,129,.15);
    color: var(--green); border: 1px solid rgba(16,185,129,.25);
}
.car-badge-hot {
    position: absolute; top: 7px; right: 7px;
    font-size: 9px; font-weight: 700; padding: 2px 6px;
    border-radius: 4px; background: rgba(249,115,22,.15);
    color: var(--orange); border: 1px solid rgba(249,115,22,.25);
}
.car-info { padding: 12px; }
.car-name { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.car-spec { font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.car-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.car-tag {
    font-size: 9px; padding: 2px 6px; border-radius: 4px;
    background: var(--bg3); border: 1px solid var(--border); color: var(--dim);
}
.car-foot { display: flex; align-items: center; justify-content: space-between; }
.car-price { font-size: 14px; font-weight: 800; color: var(--orange); font-family: var(--font-h); }
.car-action {
    font-size: 10px; font-weight: 600; padding: 4px 10px;
    background: rgba(249,115,22,.12); color: var(--orange);
    border: 1px solid rgba(249,115,22,.2); border-radius: 6px; cursor: pointer;
}
.car-card:hover .car-action { background: rgba(249,115,22,.22); }

/* seller panel */
.seller-panel {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.sp-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px;
}
.sp-title { font-size: 11px; font-weight: 600; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.sp-title span { font-size: 13px; }
.sp-step {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 10px; color: var(--muted); margin-bottom: 6px; line-height: 1.4;
}
.sp-num {
    width: 16px; height: 16px; flex-shrink: 0;
    background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.2);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: var(--orange);
}
.check-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 0; border-bottom: 1px solid var(--border);
    font-size: 11px;
}
.check-item:last-child { border-bottom: none; }
.check-name { color: var(--text); }
.check-status {
    font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 4px;
}
.st-ok { background: rgba(16,185,129,.12); color: var(--green); }
.st-warn { background: rgba(245,158,11,.12); color: var(--amber); }
.st-bad { background: rgba(239,68,68,.12); color: var(--red); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}

/* ── DIVIDER ── */
.case-divider {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 0 80px; color: var(--dim); font-size: 12px;
    font-family: var(--font-h); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.case-divider::before, .case-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── TECH STACK SECTION ── */
.tech-section { padding: 0 0 100px; }
.section-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--dim); margin-bottom: 12px; display: block;
}
.section-title {
    font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800; line-height: 1.15; letter-spacing: -.02em;
    color: #fff; margin-bottom: 16px;
}
.section-lead { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.7; margin-bottom: 40px; }

.tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
.tech-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px 14px; text-align: center;
    transition: border-color .2s, transform .2s; cursor: default;
}
.tech-card:hover { border-color: var(--border-b); transform: translateY(-3px); }
.tech-icon { font-size: 26px; margin-bottom: 8px; }
.tech-name { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.tech-role { font-size: 10px; color: var(--dim); }

/* ── QUOTE ── */
.quote-section { padding: 0 0 100px; }
.quote-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 24px; padding: 56px 64px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; overflow: hidden;
}
.quote-card::before {
    content: '«';
    position: absolute; top: -40px; left: 30px;
    font-size: 220px; color: rgba(16,185,129,.04);
    font-family: var(--font-h); font-weight: 800; line-height: 1; pointer-events: none;
}
.q-text { font-size: clamp(17px, 2vw, 22px); color: var(--text); font-style: italic; line-height: 1.65; margin-bottom: 24px; }
.q-author-name { font-weight: 600; color: #fff; }
.q-author-role { font-size: 13px; color: var(--muted); }
.q-visual { display: flex; flex-direction: column; gap: 10px; }
.q-stat {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 10px; padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
}
.q-stat-val { font-family: var(--font-h); font-size: 26px; font-weight: 800; }
.q-stat-val.g { color: var(--green); }
.q-stat-val.a { color: var(--amber); }
.q-stat-val.c { color: var(--cyan); }
.q-stat-lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── CTA ── */
.cta-section {
    padding: 80px 0 120px; text-align: center; position: relative;
}
.cta-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 700px; height: 300px;
    background: radial-gradient(ellipse, rgba(139,92,246,.1), transparent 70%);
    pointer-events: none;
}
.cta-section .section-title { margin-bottom: 14px; }
.cta-section p { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 40px; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: #fff; border: none; border-radius: 12px; padding: 15px 30px;
    font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none;
    transition: opacity .2s, transform .2s; font-family: var(--font-b);
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text);
    border: 1px solid var(--border-b); border-radius: 12px;
    padding: 15px 30px; font-size: 15px; font-weight: 500;
    text-decoration: none; margin-left: 10px;
    transition: border-color .2s, transform .2s;
}
.btn-ghost:hover { border-color: var(--muted); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 13px; color: var(--dim); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

@media(max-width:900px){
    .split { grid-template-columns: 1fr; }
    .split-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
    .metrics-row { flex-wrap: wrap; }
    .met { flex: 1 1 45%; min-width: 110px; }
    .case-head { padding: 40px 32px 36px; }
    .split-col { padding: 36px 32px; }
    .mockup-wrap { padding: 28px 32px 36px; }
    .shop-ui { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .prod-grid { grid-template-columns: repeat(2,1fr); }
    .car-grid { grid-template-columns: 1fr 1fr; }
    .seller-panel { grid-template-columns: 1fr; }
    .quote-card { grid-template-columns: 1fr; gap: 32px; }
    .hero-metrics { flex-wrap: wrap; border: none; gap: 0; }
    .hm { border: 1px solid var(--border); border-radius: 12px; margin: 4px; }
    .feat-grid { grid-template-columns: 1fr; }
}