/* ============================================================
   CARFAST v2 — Premium Automotive Design System
   Inspired by tesla.com & byd.com
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
    /* Core palette — dark automotive */
    --color-dark: #0a0a0a;
    --color-dark-2: #1a1a1a;
    --color-dark-3: #2a2a2a;
    --color-light: #ffffff;
    --color-gray: #f5f5f5;
    --color-gray-2: #e8e8e8;
    --color-accent: #e31e24;
    --color-accent-hover: #c71a1f;
    --color-accent-light: rgba(227,30,36,.08);

    /* Mapped to existing class names (backwards compat) */
    --primary: #e31e24;
    --primary-hover: #c71a1f;
    --primary-light: rgba(227,30,36,.06);
    --secondary: #0a0a0a;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #999999;
    --bg: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #0a0a0a;
    --border: #e0e0e0;
    --border-light: #f0f0f0;

    /* Shadows — softer for premium feel */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.14);

    /* Radii — sharper for premium */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Typography — Inter */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Layout */
    --container: 1240px;
    --transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    --ease: cubic-bezier(.4, 0, .2, 1);

    /* Legacy compat aliases */
    --brand: #e31e24;
    --brand-light: #ff4d52;
    --brand2: #0a0a0a;
    --muted: #6b6b6b;
    --soft: #999999;
    --line: #e0e0e0;
    --panel: #ffffff;
    --panel2: #f5f5f5;
    --warn: #f59e0b;
    --danger: #ef4444;
    --max: 1240px;
    --glass: rgba(0,0,0,.03);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    font-weight: var(--font-weight-regular);
    letter-spacing: -0.01em;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.no-scroll { overflow: hidden; }

/* ===== Container ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    width: 100%;
}

/* ===== Skip link / SR ===== */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 2.625rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p { color: var(--text-muted); line-height: 1.7; }

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    border-color: var(--text);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn.primary,
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn.primary:hover,
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(64,95,242,.3);
}

.btn.secondary,
.btn-secondary {
    background: var(--bg-light);
    color: var(--text);
    border-color: var(--border);
}

.btn.secondary:hover,
.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--text);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm, .btn.small { padding: 8px 18px; font-size: 13px; }

.btn:disabled, .btn.loading {
    opacity: 0.5;
    pointer-events: none;
}

.btn svg { flex-shrink: 0; }

/* ===== Badge ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, box-shadow .3s, color .3s;
}

.topbar.scrolled {
    background: rgba(255,255,255,.97);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

/* Transparent header on hero pages */
.topbar.topbar--transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.topbar.topbar--transparent .nav a,
.topbar.topbar--transparent .nav-item,
.topbar.topbar--transparent .currencySwitch a,
.topbar.topbar--transparent .langSwitch-current {
    color: rgba(255,255,255,0.85) !important;
}
.topbar.topbar--transparent .langSwitch-dropdown .langSwitch-option {
    color: #1a1a2e !important;
}
.topbar.topbar--transparent .langSwitch-dropdown .langSwitch-option.active {
    color: #405FF2 !important;
}
.topbar.topbar--transparent .nav a:hover,
.topbar.topbar--transparent .nav a.active {
    color: #fff !important;
}
.topbar.topbar--transparent .hamburger {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.topbar.topbar--transparent .hamburger span {
    background: var(--text);
}
/* Scrolled — back to normal */
.topbar.topbar--transparent.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.topbar.topbar--transparent.scrolled .nav a,
.topbar.topbar--transparent.scrolled .nav-item,
.topbar.topbar--transparent.scrolled .currencySwitch a,
.topbar.topbar--transparent.scrolled .langSwitch-current {
    color: var(--text) !important;
}
.topbar.topbar--transparent.scrolled .nav a:hover,
.topbar.topbar--transparent.scrolled .nav a.active {
    color: var(--primary) !important;
}
.topbar.topbar--transparent.scrolled .hamburger {
    background: none;
    box-shadow: none;
}
.topbar.topbar--transparent.scrolled .hamburger span {
    background: var(--text);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
}

.logo img { filter: brightness(0) invert(1); }
.brand:hover .logo { transform: scale(1.05); }
.brand b { font-size: 16px; letter-spacing: .01em; color: var(--text); }
.brand span { display: block; color: var(--text-muted); font-size: 11px; margin-top: 1px; }

.navlinks {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navlinks a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: color .2s, background .2s;
    position: relative;
}

.navlinks a:hover { color: var(--primary); background: var(--primary-light); }
.navlinks a.active { color: var(--primary); font-weight: 600; }

.navlinks a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s ease, left .3s ease;
    border-radius: 1px;
}

.navlinks a:hover::after,
.navlinks a.active::after {
    width: 60%;
    left: 20%;
}

.nav > .btn.primary { flex-shrink: 0; }

/* Currency switch */
.currencySwitch {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-right: 4px;
    padding-right: 12px;
    border-right: 1px solid var(--border);
}

.currencySwitch-item {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: color .2s, background .2s;
    letter-spacing: .3px;
}

.currencySwitch-item:hover { color: var(--text); background: var(--bg-light); }
.currencySwitch-item.active { color: var(--primary); background: var(--primary-light); }

/* Language switch — dropdown */
.langSwitch {
    position: relative;
    margin-right: 8px;
}
.langSwitch-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 9999px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}
.langSwitch-current:hover {
    border-color: var(--primary);
}
.langSwitch-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px;
    z-index: 200;
}
.langSwitch.open .langSwitch-dropdown {
    display: block;
}
.langSwitch-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #1a1a2e !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s;
    white-space: nowrap;
}
.langSwitch-option:hover {
    background: #f5f7fa;
    color: #1a1a2e !important;
}
.langSwitch-option.active {
    color: #405FF2 !important;
    font-weight: 600;
}
.langFlag { font-size: 24px; vertical-align: middle; line-height: 1; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background .2s;
}

.hamburger:hover { background: var(--bg-light); }

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobileNav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.mobileNav.active {
    transform: translateX(0);
}

.mobileNav > a {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background .2s, color .2s;
}

.mobileNav > a:hover { background: var(--bg-light); }
.mobileNav > a.active { color: var(--primary); background: var(--primary-light); }

.mobileNav .btn {
    margin-top: 12px;
    width: 100%;
}

.mobileNav .mobileLangSwitch {
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.mobileNav .mobileLangSwitch a {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.mobileNav .mobileLangSwitch a:hover { color: var(--text); background: var(--bg-light); }
.mobileNav .mobileLangSwitch a.active { color: var(--primary); background: var(--primary-light); }

.mobileNav .mobileCurrencySwitch {
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 8px 0;
}

.mobileNav .mobileCurrencySwitch a {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: color .2s, background .2s, border-color .2s;
}

.mobileNav .mobileCurrencySwitch a:hover { color: var(--text); border-color: var(--primary); }
.mobileNav .mobileCurrencySwitch a.active { color: var(--primary); background: var(--primary-light); border-color: var(--primary); }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash {
    padding: 14px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 900;
}

.flash .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.flash-success { background: #ecfdf5; color: #065f46; }
.flash-error { background: #fef2f2; color: #991b1b; }
.flash-warning { background: #fffbeb; color: #92400e; }
.flash-info { background: #eff6ff; color: #1e40af; }

.flash-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 4px;
    line-height: 1;
}

.flash-close:hover { opacity: 1; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Hero background carousel */
.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(64,95,242,.12), transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,.08), transparent 70%);
    pointer-events: none;
    z-index: 2;
}

/* Hero badge on dark background */
.hero .badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

.hero .badge .dot {
    background: #fff;
}

/* Hero secondary button on dark background */
.hero .btn:not(.primary) {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.hero .btn:not(.primary):hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.heroCard {
    position: relative;
}

.heroInner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
    animation: heroTitleIn .8s .2s var(--ease) both;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    line-height: 1.7;
}

.heroActions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: heroTitleIn .8s .4s var(--ease) both;
}

@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.heroStats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stat b {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.stat span { color: var(--text-muted); font-size: 12px; line-height: 1.5; }

/* Side card */
.sideCard {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow);
    animation: slideInRight .8s .3s var(--ease) both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.sideCard h2 { font-size: 20px; font-weight: 700; }

.sideUspList { display: flex; flex-direction: column; gap: 12px; }

.sideUspItem {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius);
    transition: background .2s;
}

.sideUspItem:hover { background: var(--bg-light); }

.sideUspIcon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.sideUspIcon svg { width: 20px; height: 20px; }
.sideUspItem b { display: block; font-size: 14px; font-weight: 600; }
.sideUspItem span { display: block; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== Hero Search Bar ===== */
.hero-search {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-top: 8px;
}

.hero-search form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-search select {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--bg-light);
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: border-color .2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.hero-search select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64,95,242,.1);
}

.hero-search .btn {
    padding: 12px 28px;
    flex-shrink: 0;
}

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
section {
    padding: 80px 0;
}

.bg-light { background: var(--bg-light); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.section-header h2 {
    margin: 0;
}

.sectionTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}

.sectionTitle h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sectionTitle p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 480px;
    margin-top: 8px;
}

/* ===== Grids ===== */
.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================================
   CAR BANNER / CAROUSEL
   ============================================================ */
.carBanner {
    padding: 60px 0;
    background: var(--bg-light);
}

.carBanner-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--bg);
    box-shadow: var(--shadow-lg);
}

.carBanner-slide {
    display: none;
}

.carBanner-slide.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    min-height: 380px;
}

.carBanner-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.carBanner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.carBanner-img:hover img { transform: scale(1.03); }

.carBanner-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.carBanner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.carBanner-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: dotPulse 2s ease-in-out infinite;
}

.carBanner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.carBanner-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.carBanner-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.carBanner-specs span {
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.carBanner-cta {
    margin-top: 8px;
}

.carBanner-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--border-light);
}

.carBanner-prev,
.carBanner-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carBanner-prev:hover,
.carBanner-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.carBanner-dots {
    display: flex;
    gap: 6px;
}

.carBanner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.carBanner-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ============================================================
   COUNTER STATS
   ============================================================ */
.counters {
    padding: 0;
}

.counterCard {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.counterCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.counterNum {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.counterSuffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 2px;
}

.counterLabel {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   CARDS (Service/Feature cards)
   ============================================================ */
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card h3 { margin: 12px 0 8px; font-size: 17px; font-weight: 700; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

.iconWrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.iconWrap img { filter: none; }

.card:hover .iconWrap {
    background: var(--primary);
    color: #fff;
}

.card:hover .iconWrap img { filter: brightness(0) invert(1); }

/* Feature cards (Why CARFAST) */
.features-section {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 0;
}

.features-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: transform .3s, background .3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.1);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(64,95,242,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}

.feature-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; }

/* ============================================================
   STEPS / TIMELINE
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    counter-increment: step;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); }

/* Connecting line between steps */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -14px;
    width: 26px;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

/* ============================================================
   SERVICES SECTION — Blue Background
   ============================================================ */
.services-section {
    background: var(--primary);
    color: #fff;
    padding: 80px 0;
}

.services-section h2 {
    color: #fff;
}

.services-section p {
    color: rgba(255,255,255,0.8);
}

.section-header-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-badge-light {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
    transition: transform .3s ease, background .3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

.service-card h3 {
    margin: 12px 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.7;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.service-icon img {
    filter: brightness(0) invert(1);
}

.services-section-btn {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
}

.services-section-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* ============================================================
   NEWSLETTER STANDALONE SECTION
   ============================================================ */
.newsletter-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 40px 48px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.newsletter-text h3 {
    font-size: 1.375rem;
    margin-bottom: 6px;
}

.newsletter-text p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input[type="email"] {
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    width: 280px;
    font-family: var(--font);
    font-size: 14px;
    transition: border-color .2s;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64,95,242,.1);
}

/* v1 timeline compat */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
    padding-top: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 32px;
    right: 32px;
    height: 2px;
    background: var(--border);
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-marker {
    margin: 0 auto 16px;
}

.num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.timeline-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform .3s, box-shadow .3s;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.timeline-content b { font-size: 15px; display: block; margin-bottom: 6px; }
.timeline-content p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blogCard {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blogCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.blogCard-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}

.blogCard:hover .blogCard-img { transform: scale(1.03); }

.blogCard-date {
    font-size: 13px;
    color: var(--text-muted);
    padding: 16px 20px 0;
}

.blogCard h3 {
    font-size: 17px;
    font-weight: 700;
    padding: 8px 20px 0;
    line-height: 1.3;
}

.blogCard p {
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 20px 0;
    line-height: 1.6;
    flex: 1;
}

.blogCard-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap .2s;
}

.blogCard:hover .blogCard-link { gap: 8px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.ctaBanner {
    padding: 0;
    margin-bottom: 80px;
}

.ctaInner {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.ctaInner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
    pointer-events: none;
}

.ctaText h2 { color: #fff; font-size: 1.75rem; }
.ctaText p { color: rgba(255,255,255,.8); margin-top: 8px; font-size: 15px; }

.ctaActions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ctaActions .btn {
    border-color: rgba(255,255,255,.25);
    color: #fff;
    background: transparent;
}

.ctaActions .btn:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.4);
}

.ctaActions .btn.primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.ctaActions .btn.primary:hover {
    background: rgba(255,255,255,.9);
}

/* CTA section (simpler version for homepage) */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f0f3ff 0%, #e8edff 100%);
}

.cta-section h2 { margin-bottom: 12px; }
.cta-section p { color: var(--text-muted); margin-bottom: 24px; font-size: 1.05rem; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   CAR CARDS (listings)
   ============================================================ */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.car-card {
    background: var(--color-light);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.car-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.car-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--color-gray);
}

.car-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.car-card:hover .car-card-img { transform: scale(1.06); }

.car-card-img-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

.car-card-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.car-card-wish:hover { background: #fff; color: #ef4444; }
.car-card-wish.active { background: #fff; color: #ef4444; }
.car-card-wish.active svg { fill: #ef4444; }

.car-card-preview-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    padding: 6px 12px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s, transform .3s;
}

.car-card:hover .car-card-preview-btn {
    opacity: 1;
    transform: translateY(0);
}

.car-card-preview-btn:hover { background: #fff; }

.car-card-body { /* premium card body */
    padding: 20px;
}

.car-card-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 6px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.car-card-title-link {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}

.car-card-title-link:hover { color: var(--primary); }

.car-card-price {
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.car-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.car-spec-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: var(--color-gray);
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

.car-spec-item svg { color: var(--text-light); flex-shrink: 0; }

.car-card-detail-btn {
    width: 100%;
    justify-content: center;
}

/* Glass card compat */
.glass-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

/* ============================================================
   CARS FILTER BAR
   ============================================================ */
.cars-filters-section {
    padding: 24px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 72px;
    z-index: 50;
}

.cars-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 120px;
}

.filter-group--search { flex: 1.5; }
.filter-group--year { flex: 0.7; min-width: 90px; }
.filter-group--sort { flex: 1; }

.filter-input-wrap {
    position: relative;
}

.filter-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.filter-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s;
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64,95,242,.1);
}

.filter-input::placeholder { color: var(--text-light); }

.filter-select {
    width: 100%;
    padding: 10px 32px 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    cursor: pointer;
    transition: border-color .2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64,95,242,.1);
}

.filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.filter-reset { text-decoration: none; }

/* Cars grid section */
.cars-grid-section {
    padding: 40px 0 80px;
    background: var(--bg-light);
}

.cars-empty {
    text-align: center;
    padding: 80px 20px;
}

.cars-empty svg {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cars-empty h2 { font-size: 1.25rem; margin-bottom: 8px; }
.cars-empty p { color: var(--text-muted); margin-bottom: 20px; }

/* Legacy compat for old filter styles */
.carsFilter { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 0; }
.carsFilter-row { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
.carsFilter-field { flex: 1; min-width: 120px; }
.carsFilter-search { position: relative; }
.carsFilter-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.carsFilter-search input { padding-left: 36px; }

.carsFilter-field input,
.carsFilter-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--bg);
    color: var(--text);
    transition: border-color .2s;
}

.carsFilter-field input:focus,
.carsFilter-field select:focus {
    outline: none;
    border-color: var(--primary);
}

.carsFilter-field select { cursor: pointer; }
.carsFilter-field input::placeholder { color: var(--text-light); }

.carsFilter-status { font-size: 13px; color: var(--text-muted); padding: 8px 0; }

.carsFilter-reset {
    padding: 6px 14px;
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg);
    cursor: pointer;
    transition: var(--transition);
}

.carsFilter-reset:hover { border-color: var(--text); color: var(--text); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 0 0;
}

.pagination-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg);
    transition: var(--transition);
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pagination-pages {
    display: flex;
    gap: 4px;
}

.pagination-page {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.pagination-page:hover { background: var(--bg-light); color: var(--primary); }

.pagination-page.current {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.pagination-ellipsis {
    width: 36px;
    text-align: center;
    color: var(--text-muted);
}

/* ============================================================
   CAR DETAIL PAGE
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
    padding: 90px 0 0;
    background: var(--bg-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb-list li { display: flex; align-items: center; }
.breadcrumb-list a { color: var(--text-muted); transition: color .2s; }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-sep { margin: 0 8px; color: var(--text-light); }
.breadcrumb-list li[aria-current] span { color: var(--text); font-weight: 500; }

/* Detail layout */
.car-detail-section {
    padding: 0 0 80px;
    background: var(--color-light);
}

.car-detail-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-top: 24px;
}

/* Gallery */
.car-detail-gallery {
    position: relative;
    min-width: 0;
}

.car-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-dark);
    border: none;
    aspect-ratio: 16/10;
}

.car-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.car-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    border: none;
    font-size: 20px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.car-gallery-prev { left: 12px; }
.car-gallery-next { right: 12px; }
.car-gallery-nav:hover { background: #fff; box-shadow: var(--shadow); }

.car-gallery-expand {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    border: none;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.car-gallery-expand:hover { background: #fff; box-shadow: var(--shadow); }

.car-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.car-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.car-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.car-gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s;
    background: none;
    padding: 0;
}

.car-gallery-thumb:hover,
.car-gallery-thumb.active {
    border-color: var(--primary);
}

.car-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail info panel — premium */
.car-detail-info {
    background: var(--color-light);
    border: none;
    border-radius: 0;
    padding: 8px 0 0;
}

.car-detail-title {
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.car-detail-price {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.car-detail-quick-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.car-detail-quick-specs li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.car-detail-quick-specs li span { color: var(--text-muted); }
.car-detail-quick-specs li strong { color: var(--text); font-weight: 600; }

.car-detail-cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.car-detail-cta .btn { flex: 1; justify-content: center; min-width: 140px; }

.car-detail-secondary-actions {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.car-share-btn,
.car-wish-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.car-share-btn:hover,
.car-wish-btn:hover { color: var(--primary); background: var(--primary-light); }

/* Detail body (specs, equipment, description) */
.car-detail-body {
    margin-bottom: 40px;
}

.car-specs-table-wrap,
.car-equipment-wrap,
.car-description-wrap,
.car-vin-wrap,
.car-videos-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}

.car-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.car-specs-table th,
.car-specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.car-specs-table th {
    text-align: left;
    font-weight: 500;
    color: var(--text-muted);
    width: 40%;
}

.car-specs-table td {
    text-align: right;
    font-weight: 600;
    color: var(--text);
}

.car-specs-table tr:last-child th,
.car-specs-table tr:last-child td {
    border-bottom: none;
}

.car-equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.car-equipment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 6px 0;
    color: var(--text);
}

.car-equipment-item svg { color: var(--primary); flex-shrink: 0; }

.car-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

.car-vin-wrap {
    border-left: 3px solid var(--primary);
}

.car-vin-wrap .section-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-vin-wrap .section-subtitle svg { color: var(--primary); }

.car-vin-info {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.car-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.car-video {
    width: 100%;
    max-height: 400px;
    border-radius: var(--radius);
    background: #000;
    object-fit: contain;
}

/* Bottom CTA */
.car-detail-bottom-cta {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.car-detail-bottom-cta-text h2 { font-size: 1.25rem; margin-bottom: 4px; }
.car-detail-bottom-cta-text p { font-size: 14px; }

.car-detail-bottom-cta-actions {
    display: flex;
    gap: 8px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox[hidden] { display: none; }

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-close:hover { background: rgba(255,255,255,.2); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   CAR DETAIL MODAL (Quick Preview)
   ============================================================ */
.carDetail-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.carDetail-overlay[hidden] { display: none; }

.carDetail {
    background: var(--bg);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.carDetail-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    color: var(--text);
}

.carDetail-close:hover { background: var(--border); }

.carDetail-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 16px;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.carDetail-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.carDetail-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.carDetail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.carDetail-spec {
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.carDetail-actions {
    display: flex;
    gap: 8px;
}

.carDetail-actions .btn { flex: 1; justify-content: center; }

/* Legacy v1 detail panel compat */
.carDetail-topRow { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.carDetail-titleBlock h2 { font-size: 1.25rem; font-weight: 700; }
.carDetail-titleBlock .carDetail-origin { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.carDetail-priceBlock { text-align: right; }
.carDetail-priceTag { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.carDetail-vin { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--bg-light); border-radius: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.carDetail-vin svg { flex-shrink: 0; }

.carDetail-specItem {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.carDetail-specItem .specLabel { color: var(--text-muted); }
.carDetail-specItem .specValue { font-weight: 600; color: var(--text); }

.carDetail-section { margin-top: 16px; }
.carDetail-section h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.carDetail-section p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.carDetail-equipList { display: flex; flex-wrap: wrap; gap: 6px; }
.carDetail-equipItem {
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-muted);
}

.carDetail-cta { display: flex; gap: 8px; margin-top: 16px; }
.carDetail-cta .btn { flex: 1; justify-content: center; }
.carDetail-shareBtn { flex: 0 0 auto !important; gap: 6px; display: inline-flex; align-items: center; }

.carDetail-videos { display: flex; flex-direction: column; gap: 12px; }
.carDetail-video { width: 100%; max-height: 400px; border-radius: var(--radius); background: #000; object-fit: contain; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-info b { font-size: 14px; display: block; }
.testimonial-info span { font-size: 13px; color: var(--text-muted); }

.testimonial-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.testimonial-car { font-size: 13px; color: var(--primary); font-weight: 500; }

.stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    background: var(--bg);
    overflow: hidden;
    transition: box-shadow .3s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question,
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}

.faq-question:hover,
.faq-trigger:hover { color: var(--primary); }

.faq-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform .3s var(--ease);
    display: inline-block;
    flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer,
.faq-panel { padding: 0 20px 16px; }

.faq-body,
.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.kontaktGrid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    padding-bottom: 60px;
}

.kontaktItem {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.kontaktItem:last-child { border-bottom: none; }

.kontaktIcon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.kontaktItem b { display: block; font-size: 14px; margin-bottom: 2px; }
.kontaktItem span,
.kontaktItem a { font-size: 14px; color: var(--text-muted); }
.kontaktItem a:hover { color: var(--primary); }

/* Contact form */
.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s, box-shadow .2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64,95,242,.1);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

/* Legacy form compat */
.quickForm { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--bg);
    color: var(--text);
    transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64,95,242,.1);
}

.field.error input,
.field.error select,
.field.error textarea {
    border-color: var(--danger);
}

.field .error-msg {
    font-size: 12px;
    color: var(--danger);
    margin-top: 4px;
}

.full { grid-column: 1 / -1; }

.formSuccess {
    text-align: center;
    padding: 32px;
}

.formSuccess .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(16,185,129,.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.formSuccess h3 { font-size: 20px; font-weight: 700; }
.formSuccess p { color: var(--text-muted); font-size: 14px; max-width: 300px; margin: 8px auto 0; }

/* ============================================================
   PAGE HERO (Subpages)
   ============================================================ */
.page-hero {
    padding: 120px 0 60px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero--no-image {
    background: var(--bg-light);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-title,
.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    animation: heroTitleIn .6s .1s var(--ease) both;
}

.page-hero-sub,
.page-hero p {
    color: rgba(255,255,255,0.85);
    margin: 12px 0 0;
    font-size: 1.05rem;
    max-width: 640px;
    animation: heroTitleIn .6s .25s var(--ease) both;
}

/* Page hero without image (legal pages) */
.page-hero--no-image .page-hero-title,
.page-hero--no-image h1 {
    color: var(--text);
}

.page-hero--no-image .page-hero-sub,
.page-hero--no-image p {
    color: var(--text-muted);
}

/* ============================================================
   MEDIA / GALLERY GRID (Legacy)
   ============================================================ */
.media3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-light);
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.media:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.media:hover img { transform: scale(1.03); }

.media figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,.7);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footGrid4 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footCol-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: block;
}

.footCol-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footCol-links a {
    color: rgba(255,255,255,.45);
    font-size: 0.88rem;
    transition: color .2s;
    text-decoration: none;
}

.footCol-links a:hover { color: var(--color-accent); }

.footCol p {
    color: rgba(255,255,255,.35);
    font-size: 0.82rem;
    line-height: 1.7;
}

.footCol b { color: #fff; }

/* Footer newsletter */
.footNewsletter {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footNewsletter-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footNewsletter-text b {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.footNewsletter-text span {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

.footNewsletter-form {
    display: flex;
    gap: 8px;
}

.footNewsletter-form input[type="email"] {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 14px;
    min-width: 240px;
    transition: border-color .2s, box-shadow .2s;
}

.footNewsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,.35);
}

.footNewsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(64,95,242,.25);
}

.footNewsletter-form .btn {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.footNewsletter-form .btn:hover {
    background: var(--primary-hover);
}

.footNewsletter-msg {
    font-size: 13px;
    padding: 4px 0;
}

.newsletter-msg.success { color: #10b981; }
.newsletter-msg.error { color: #ef4444; }

/* Footer copyright */
.footCopy {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}

.footAdmin {
    color: rgba(255,255,255,.3);
    font-size: 12px;
    text-decoration: none;
    opacity: 0.4;
}

/* ============================================================
   FLOATING CONTACT
   ============================================================ */
.floatingContact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: bounceIn .6s 1s var(--ease) both;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(.3) translateY(20px); }
    50% { opacity: 1; transform: scale(1.05) translateY(-4px); }
    100% { transform: scale(1) translateY(0); }
}

.floatingContact-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(64,95,242,.35);
    transition: transform .2s, box-shadow .2s;
    animation: none;
}

.floatingContact-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(64,95,242,.45);
}

.floatingContact.open .floatingContact-toggle {
    background: var(--text);
}

.floatingContact-menu {
    position: absolute;
    bottom: 64px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .3s, transform .3s, visibility .3s;
}

.floatingContact.open .floatingContact-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floatingContact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    transition: transform .2s;
}

.floatingContact-item:hover {
    transform: translateX(-4px);
    color: #fff;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    padding: 16px 0;
    display: none;
}

.cookieBanner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookieBanner p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.cookieBanner p a {
    color: var(--primary);
    text-decoration: underline;
}

/* Legacy cookie compat */
.cookieBannerInner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookieContent { display: flex; align-items: center; gap: 12px; }
.cookieText { flex: 1; }
.cookieText b { display: block; margin-bottom: 4px; font-size: 15px; color: var(--text); }
.cookieText span { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.cookieActions { display: flex; gap: 8px; }

/* ============================================================
   REVEAL / ANIMATIONS
   ============================================================ */
.reveal,
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible,
[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   MISC LEGACY COMPAT
   ============================================================ */
.sectionGlow {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.12;
    margin: 0 auto;
    max-width: 600px;
}

/* USP grid (about page) */
.uspGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.uspItem {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .3s, box-shadow .3s;
}

.uspItem:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.uspIcon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.uspItem:hover .uspIcon {
    background: var(--primary);
    color: #fff;
}

.uspItem b { font-size: 16px; font-weight: 700; display: block; margin-bottom: 6px; }
.uspItem span { font-size: 14px; color: var(--text-muted); line-height: 1.6; display: block; }

/* Car list page legacy */
.carsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.carSale {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.carSale:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.carSale-gallery {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-light);
}

.carSale-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.carSale:hover .carSale-gallery img { transform: scale(1.03); }

.carSale-gallery-count {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.carSale-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
}

.carSale-thumb {
    width: 56px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s;
}

.carSale-thumb:hover,
.carSale-thumb.active {
    border-color: var(--primary);
}

.carSale-thumb img { width: 100%; height: 100%; object-fit: cover; }

.carSale-body { padding: 16px; }

.carSale-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.carSale-title { font-size: 16px; font-weight: 700; }

.carSale-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.carSale-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.carSale-spec {
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-muted);
}

.carSale-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.carSale-footer {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.carsEmpty {
    text-align: center;
    padding: 60px 20px;
}

.carsEmpty a {
    display: inline-flex;
    margin-top: 16px;
}

/* Sticky mobile CTA */
.stickyMobileCta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 12px rgba(0,0,0,.06);
    padding: 12px 16px;
    display: none;
    gap: 8px;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.stickyMobileCta.visible {
    transform: translateY(0);
}

/* Wishlist button compat */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn:hover { background: #fff; color: #ef4444; }
.wishlist-btn.active { background: #fff; color: #ef4444; }
.wishlist-btn.active svg { fill: #ef4444; }

/* Toast */
#toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    z-index: 10000;
    pointer-events: none;
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   LIGHT CARD (replaces glass-card for light theme)
   ============================================================ */
.light-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.light-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   PAGE HERO (Subpages — extended)
   ============================================================ */
.page-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-desc {
    color: rgba(255,255,255,0.85);
    margin: 12px auto 0;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.7;
    animation: heroTitleIn .6s .25s var(--ease) both;
}

.page-hero--no-image .page-hero-desc {
    color: var(--text-muted);
}

.page-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    animation: heroTitleIn .6s .35s var(--ease) both;
}

.hero-badge,
.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.page-hero--no-image .hero-badge {
    background: var(--primary-light);
    border-color: transparent;
    color: var(--primary);
}

/* Page hero breadcrumb on dark bg */
.page-hero .breadcrumb {
    padding: 0;
    background: transparent;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .breadcrumb span,
.page-hero .breadcrumb-sep,
.page-hero .breadcrumb-list li[aria-current] span {
    color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a:hover {
    color: #fff;
}

/* Page hero secondary button on dark bg */
.page-hero .btn.secondary,
.page-hero .btn:not(.primary) {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.page-hero .btn.secondary:hover,
.page-hero .btn:not(.primary):hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* ============================================================
   SECTION TITLE (centered headings for sections)
   ============================================================ */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-title + .section-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    border-bottom: none;
    padding-bottom: 0;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   SERVICES GRID (light theme override for inner pages)
   ============================================================ */
.hiw-services .service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.hiw-services .service-card:hover {
    background: var(--bg);
    box-shadow: var(--shadow-md);
}

.hiw-services .service-card h3 {
    color: var(--text);
}

.hiw-services .service-card p {
    color: var(--text-muted);
}

.hiw-services .service-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.hiw-services .service-icon img {
    filter: none;
}

.hiw-services .service-icon--default {
    background: var(--primary-light);
    color: var(--primary);
}

/* ============================================================
   HOW IT WORKS — STEPS TIMELINE
   ============================================================ */
.hiw-steps {
    padding: 80px 0;
    background: var(--bg-light);
}

.hiw-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hiw-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hiw-step-connector {
    display: none;
}

.hiw-step-content {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    flex: 1;
    width: 100%;
}

.hiw-step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hiw-step-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   HOW IT WORKS — CALCULATOR
   ============================================================ */
.hiw-calculator {
    padding: 80px 0;
}

.calc-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.calc-header {
    text-align: center;
    margin-bottom: 32px;
}

.calc-header .section-title {
    margin-bottom: 8px;
}

.calc-header .section-subtitle {
    margin-bottom: 12px;
}

.calc-exchange-note {
    font-size: 14px;
    color: var(--text-muted);
}

.calc-exchange-note strong {
    color: var(--text);
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.input-with-suffix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-suffix .form-input {
    padding-right: 60px;
}

.input-suffix {
    position: absolute;
    right: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    pointer-events: none;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.calc-result {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.calc-result-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.calc-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.calc-row:last-child { border-bottom: none; }

.calc-row-label { color: var(--text-muted); }
.calc-row-value { font-weight: 600; }

.calc-row--total {
    border-top: 2px solid var(--text);
    border-bottom: none;
    padding-top: 14px;
    margin-top: 4px;
}

.calc-row--total .calc-row-label {
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
}

.calc-total-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.calc-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

.calc-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.calc-form {
    /* no extra styling needed, uses .form-group etc. */
}

/* ============================================================
   HOW IT WORKS — CATEGORIES
   ============================================================ */
.hiw-categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-light);
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.category-card:hover .category-card-img { transform: scale(1.03); }

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.category-card-body {
    padding: 20px;
}

.category-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.category-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CTA CARD (light theme sections)
   ============================================================ */
.cta-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-card h2 {
    margin-bottom: 8px;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.cta-card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    padding: 60px 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap {
    /* wrapper */
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-form-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* Form elements */
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-required {
    color: #ef4444;
    margin-left: 2px;
}

.form-optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 13px;
    margin-left: 4px;
}

.form-error-hint {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
}

.form-group.has-error .form-error-hint {
    display: block;
}

.form-group--checkbox {
    margin-top: 16px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
}

/* Contact info */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 2px;
}

.contact-info-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

a.contact-info-value:hover {
    color: var(--primary);
}

.contact-whatsapp {
    margin-top: 16px;
}

.contact-response-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-response-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-response-badge strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-response-badge p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   ABOUT PAGE — USP SECTION
   ============================================================ */
.about-usp {
    padding: 80px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.usp-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.usp-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    background: var(--primary);
    color: #fff;
}

.usp-card:hover .usp-icon img {
    filter: brightness(0) invert(1);
}

.usp-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.usp-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   ABOUT PAGE — COUNTERS
   ============================================================ */
.counters--about {
    padding: 60px 0;
    background: var(--bg-light);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.counter-item {
    text-align: center;
    padding: 24px 16px;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.counter-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 2px;
}

.counter-label {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   ABOUT PAGE — TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .testimonial-stars {
    color: #f59e0b;
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .testimonial-text p {
    margin: 0;
    color: inherit;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    font-style: normal;
}

.testimonial-card .testimonial-car {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.testimonial-car-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 12px;
    background: var(--bg-light);
}

.testimonial-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-origin {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION (about page wrapper)
   ============================================================ */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-answer-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer-body p {
    margin: 0;
    color: inherit;
}

/* FAQ category groups (about page) */
.faq-category-group {
    margin-bottom: 24px;
}

.faq-category-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-more-cta {
    max-width: 800px;
    margin: 32px auto 0;
    text-align: center;
}

.faq-more-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.faq-more-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-remaining-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
}

.btn.secondary .faq-remaining-badge {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   BLOG SECTION (index page)
   ============================================================ */
.blog-section {
    padding: 60px 0 80px;
}

.blog-card {
    background: var(--color-light);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.blog-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img-placeholder {
    color: var(--text-light);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.06); }

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    display: block;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0 0 12px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap .2s;
    margin-top: auto;
}

.blog-card:hover .blog-card-link {
    gap: 8px;
}

/* Pagination active (blog uses .active instead of .current) */
.pagination-page.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    color: var(--text-light);
    margin: 0 auto 16px;
}

.empty-state h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================================
   BLOG DETAIL
   ============================================================ */
.blog-detail-hero {
    padding: 0 0 32px;
}

.blog-detail-hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 21/9;
    background: var(--bg-light);
}

.blog-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail {
    padding: 0 0 80px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.blog-detail-main {
    min-width: 0;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-detail-date,
.blog-detail-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-detail-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 32px;
}

/* Article prose content */
.blog-detail-content.prose,
.legal-body.prose,
.prose {
    line-height: 1.8;
    font-size: 15px;
    color: var(--text);
}

.prose h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.prose h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}

.prose p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.prose ul, .prose ol {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 6px;
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--primary-hover);
}

.prose blockquote {
    border-left: 3px solid var(--primary);
    padding: 12px 0 12px 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-muted);
}

.prose img {
    border-radius: var(--radius);
    margin: 24px 0;
}

/* ============================================================
   TEMPLATE: TEXT BLOCK
   ============================================================ */
.template-text {
    padding: 64px 0;
}

.template-text-inner {
    max-width: 720px;
    margin: 0 auto;
}

.template-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.template-text .prose {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: center;
}

/* Blog share */
.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
    flex-wrap: wrap;
}

.blog-share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.blog-share-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.blog-detail-back {
    padding-top: 24px;
}

/* Blog sidebar */
.blog-detail-sidebar {
    position: sticky;
    top: 96px;
}

.blog-sidebar-card {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.blog-sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-sidebar-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-sidebar-card .btn {
    margin-bottom: 12px;
}

.blog-sidebar-phone {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: color .2s;
}

.blog-sidebar-phone:hover {
    color: var(--primary-hover);
}

/* ============================================================
   LEGAL PAGES (cookies, privacy, terms)
   ============================================================ */
.legal-section {
    padding: 40px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
}

.legal-body {
    /* uses .prose for typography */
}

/* ============================================================
   RESPONSIVE (additions for new sections)
   ============================================================ */
@media (max-width: 1200px) {
    .heroGrid { gap: 24px; }
    .footGrid4 { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 1024px) {
    .navlinks { display: none; }
    .currencySwitch { display: none; }
    .langSwitch { display: none; }
    .nav > .btn.primary { display: none; }
    .hamburger { display: flex; }

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

    .sideCard {
        animation: none;
        opacity: 1;
    }

    .car-detail-layout {
        grid-template-columns: 1fr;
    }

    .grid3,
    .services-grid,
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .grid4,
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card::after { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .cars-grid,
    .car-grid { grid-template-columns: repeat(2, 1fr); }

    .ctaInner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .kontaktGrid { grid-template-columns: 1fr; }
    .footGrid4 { grid-template-columns: repeat(2, 1fr); }

    .contact-layout { grid-template-columns: 1fr; }
    .blog-detail-layout { grid-template-columns: 1fr; }
    .blog-detail-sidebar { position: static; }
    .hiw-timeline { grid-template-columns: repeat(2, 1fr); }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }

    .hero { padding: 120px 0 60px; }

    .hero h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }

    .hero-search form {
        flex-direction: column;
    }

    .hero-search select { min-width: 100%; }

    .carBanner-slide.active {
        grid-template-columns: 1fr;
    }

    .carBanner-img { aspect-ratio: 16/9; }

    .car-detail-bottom-cta {
        flex-direction: column;
        text-align: center;
    }

    .car-detail-bottom-cta-actions { width: 100%; }
    .car-detail-bottom-cta-actions .btn { flex: 1; }

    .stickyMobileCta { display: flex; }

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

    .footNewsletter { flex-direction: column; }
    .footNewsletter-form { width: 100%; }
    .footNewsletter-form input[type="email"] { flex: 1; min-width: 0; }

    .timeline::before { display: none; }
    .timeline { grid-template-columns: 1fr; }

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

    .cars-filters { flex-direction: column; }
    .filter-group { min-width: 100%; }
    .filter-group--year { min-width: 100%; }

    .cars-filters-section { position: static; }

    .hiw-steps { padding: 60px 0; }
    .hiw-calculator { padding: 60px 0; }
    .hiw-categories { padding: 60px 0; }
    .about-usp { padding: 60px 0; }
    .counters--about { padding: 40px 0; }
    .faq { padding: 60px 0; }
    .blog-section { padding: 40px 0 60px; }
    .contact-section { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .grid3,
    .services-grid,
    .blog-grid,
    .grid2 { grid-template-columns: 1fr; }

    .cars-grid,
    .car-grid { grid-template-columns: 1fr; }

    .stats-grid,
    .grid4 { grid-template-columns: repeat(2, 1fr); }

    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }

    .footGrid4 { grid-template-columns: 1fr; gap: 24px; }

    .hero { padding: 100px 0 48px; min-height: 400px; }

    .heroStats { flex-direction: column; gap: 8px; }

    .pagination-btn { padding: 6px 12px; font-size: 13px; }

    .ctaInner { padding: 28px 20px; }
    .ctaActions { flex-direction: column; width: 100%; }
    .ctaActions .btn { width: 100%; }

    .newsletter-card { padding: 24px 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { width: 100%; }

    .carDetail { margin: 12px; padding: 20px; }

    .hiw-timeline { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .calc-inputs { grid-template-columns: 1fr; }
    .calc-wrapper { padding: 24px; }
    .cta-card { padding: 28px 20px; }
    .page-hero-cta { flex-direction: column; align-items: stretch; }
    .cta-card-actions { flex-direction: column; align-items: stretch; }
    .blog-detail-share { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .floatingContact { bottom: 80px; }
    .carsFilter-row { flex-direction: column; }
    .carsFilter-field { min-width: 100%; }
}

/* ===== Print ===== */
@media print {
    .topbar, .mobileNav, .floatingContact, .cookieBanner, .stickyMobileCta { display: none !important; }
    body { background: #fff; color: #000; }
    footer { background: #fff; color: #333; }
}

/* ============================================================
   TEMPLATE SYSTEM — Nav Dropdowns
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    min-width: 200px; background: var(--card-bg, #fff);
    border: 1px solid var(--border, #e2e8f0); border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); padding: 8px 0; z-index: 100;
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
    display: block; padding: 8px 16px; color: var(--text, #1e293b);
    text-decoration: none; font-size: 14px;
}
.nav-dropdown-menu li a:hover { background: var(--bg-light, #f5f7fa); }

/* ============================================================
   CARFAST PREMIUM DESIGN SYSTEM
   ============================================================ */

/* --- Dark sections --- */
.section-dark {
    background: var(--color-dark);
    color: var(--color-light);
}
.section-dark-2 {
    background: var(--color-dark-2);
    color: var(--color-light);
}
.section-light {
    background: var(--color-light);
    color: var(--text);
}
.section-gray {
    background: var(--color-gray);
    color: var(--text);
}

/* --- Typography premium --- */
.heading-xl {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.heading-lg {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.heading-md {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.text-subtle {
    color: var(--text-muted);
    font-weight: var(--font-weight-light);
}

/* --- Buttons premium --- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-premium-primary {
    background: var(--color-accent);
    color: var(--color-light);
}
.btn-premium-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(227,30,36,0.3);
}
.btn-premium-outline {
    background: transparent;
    color: var(--color-light);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-premium-outline:hover {
    border-color: var(--color-light);
    color: var(--color-light);
    background: rgba(255,255,255,0.05);
}
.btn-premium-dark {
    background: var(--color-dark);
    color: var(--color-light);
}
.btn-premium-dark:hover {
    background: var(--color-dark-2);
    color: var(--color-light);
    transform: translateY(-1px);
}

/* --- Scroll reveal animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Premium card hover --- */
.card-premium {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-light);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* --- Fullscreen section --- */
.section-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.section-fullscreen .section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.section-fullscreen .section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-fullscreen .section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
}
.section-fullscreen .container {
    position: relative;
    z-index: 1;
}

/* --- Accent line --- */
.accent-line {
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-bottom: var(--space-md);
}

/* ============================================================
   PREMIUM HERO — Tesla/BYD inspired fullscreen hero
   ============================================================ */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-dark);
}
.premium-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.premium-hero__bg .hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.premium-hero__bg .hero-bg-slide.active {
    opacity: 1;
}
.premium-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.7) 0%,
        rgba(10,10,10,0.4) 40%,
        rgba(10,10,10,0.6) 100%
    );
    z-index: 1;
}
.premium-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}
.premium-hero__text {
    max-width: 680px;
}
.premium-hero__label {
    font-size: 0.82rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-lg);
}
.premium-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-light);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}
.premium-hero__subtitle {
    font-size: 1.1rem;
    font-weight: var(--font-weight-light);
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-xl);
}

/* Hero search bar */
.premium-hero__search {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 6px;
    margin-bottom: var(--space-xl);
}
.premium-hero__select {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--color-light);
    border: none;
    font-size: 0.9rem;
    font-family: var(--font);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.premium-hero__select:last-of-type {
    border-right: none;
}
.premium-hero__select option {
    background: var(--color-dark-2);
    color: var(--color-light);
}
.premium-hero__search .btn-premium {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius-lg) - 4px);
    font-size: 0.85rem;
}

/* Hero CTA buttons */
.premium-hero__cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Scroll indicator */
.premium-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: hero-scroll-bounce 2s infinite;
}
@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-hero {
        min-height: 100svh;
    }
    .premium-hero__content {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .premium-hero__title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .premium-hero__search {
        flex-direction: column;
        gap: 0;
    }
    .premium-hero__select {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0.875rem 1rem;
    }
    .premium-hero__select:last-of-type {
        border-bottom: none;
    }
    .premium-hero__search .btn-premium {
        border-radius: calc(var(--radius-lg) - 4px);
    }
    .premium-hero__cta {
        flex-direction: column;
    }
    .premium-hero__cta .btn-premium {
        text-align: center;
    }
}

/* --- Car card verified badge --- */
.car-card-verified {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #4ade80;
    font-size: 0.72rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 6px;
    letter-spacing: 0.02em;
}
.car-card-verified svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* ============================================================
   PREMIUM DETAIL — Sticky CTA on mobile
   ============================================================ */
@media (max-width: 768px) {
    .car-detail-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
    }

    .car-detail-section {
        padding-bottom: 90px; /* space for sticky CTA */
    }

    .car-detail-gallery {
        margin: 0 -24px; /* edge-to-edge on mobile */
    }

    .car-gallery-main {
        border-radius: 0;
    }

    .car-detail-info {
        padding: 20px 0;
    }

    .car-detail-title {
        font-size: 1.3rem;
    }

    .car-detail-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--color-light);
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        display: flex;
        gap: 8px;
        border-top: 1px solid var(--border);
    }

    .car-detail-cta .btn {
        flex: 1;
        justify-content: center;
        padding: 12px;
        font-size: 0.88rem;
    }

    /* Hide secondary actions on mobile */
    .car-detail-secondary-actions {
        display: none;
    }
}

/* Gallery smooth transitions */
.car-gallery-main-img {
    transition: opacity 0.3s ease;
}
.car-gallery-main-img.transitioning {
    opacity: 0.5;
}

/* ============================================================
   PREMIUM REDESIGN ADDITIONS — Tesla/BYD inspired
   ============================================================ */

/* Scroll-triggered fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sticky header — dark premium style on scroll */
.main-header {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.main-header.scrolled {
    background: rgba(10,10,10,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Dark scrolled topbar variant (premium dark) */
.topbar.topbar--dark-scrolled.scrolled {
    background: rgba(10,10,10,0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Premium section utilities (padding enhancements) */
.section-dark {
    padding: 5rem 0;
}
.section-light {
    padding: 5rem 0;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 2.5rem;
}

/* Premium button — generic class (complements btn-premium-*) */
.btn-premium-generic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-premium-generic:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227,30,36,0.3);
    text-decoration: none;
    color: #fff;
}
.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}
