/* ===== JAECOO MALAYSIA - Premium Dark Theme CSS ===== */
:root {
    --primary: #00BFA6;
    --primary-dark: #009688;
    --primary-light: #1DE9B6;
    --accent: #FFD700;
    --dark: #0A0F1A;
    --dark-2: #111827;
    --dark-3: #1A2332;
    --dark-4: #243044;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.15);
    --gradient-hero: linear-gradient(135deg, #0A0F1A 0%, #1A2332 50%, #0D1B2A 100%);
    --gradient-card: linear-gradient(145deg, #1A2332 0%, #111827 100%);
    --gradient-primary: linear-gradient(135deg, #00BFA6 0%, #009688 100%);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(0,191,166,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --header-h: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-white); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark); }
.section-gradient { background: var(--gradient-hero); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-header .accent-line {
    width: 60px; height: 3px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    transition: var(--transition);
}
.header.scrolled { background: rgba(10, 15, 26, 0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text {
    font-size: 1.8rem; font-weight: 800; color: var(--text-white);
    letter-spacing: 4px; text-transform: uppercase;
}
.logo-tagline { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.main-nav ul { display: flex; gap: 8px; align-items: center; }
.main-nav a {
    color: var(--text-light); font-size: 0.9rem; font-weight: 500;
    padding: 8px 16px; border-radius: 8px; letter-spacing: 0.5px;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: rgba(0,191,166,0.08); }
.header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-primary); color: var(--dark) !important;
    padding: 10px 24px; border-radius: 8px; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase;
    transition: var(--transition); border: none; cursor: pointer;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: var(--dark) !important; }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; z-index: 1001;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px; background: var(--text-white);
    position: absolute; left: 0; transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 16px 0;
    margin-top: var(--header-h);
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list li:not(:last-child)::after {
    content: '/'; margin-left: 8px; color: var(--text-dim);
}
.breadcrumb-list .current { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 8px; font-weight: 700;
    font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase;
    transition: var(--transition); border: none; cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--gradient-primary); color: var(--dark);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: var(--dark); }
.btn-outline {
    background: transparent; color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--dark); }
.btn-white {
    background: var(--text-white); color: var(--dark);
}
.btn-white:hover { background: var(--text-light); transform: translateY(-2px); color: var(--dark); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; margin-top: var(--header-h);
    background: var(--gradient-hero);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 1;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.3; filter: brightness(0.5);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right, rgba(10,15,26,0.95) 0%, rgba(10,15,26,0.6) 50%, rgba(10,15,26,0.3) 100%);
}
.hero-content {
    position: relative; z-index: 3;
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text .hero-label {
    display: inline-block; background: rgba(0,191,166,0.1);
    color: var(--primary); padding: 6px 16px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 20px;
    border: 1px solid rgba(0,191,166,0.2);
}
.hero-text h1 { margin-bottom: 20px; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.hero-text h1 span { color: var(--primary); }
.hero-text .hero-desc {
    color: var(--text-muted); font-size: 1.1rem; margin-bottom: 12px; max-width: 520px;
}
.hero-price {
    font-size: 1.4rem; color: var(--text-white); font-weight: 700; margin-bottom: 32px;
}
.hero-price span { color: var(--primary); font-size: 2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: var(--radius-lg); }

/* ===== MODEL CARDS ===== */
.models-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}
.model-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,191,166,0.3);
    box-shadow: var(--shadow-glow);
}
.model-card-image {
    position: relative; overflow: hidden;
    aspect-ratio: 16/10;
}
.model-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.model-card:hover .model-card-image img { transform: scale(1.05); }
.model-card-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--gradient-primary); color: var(--dark);
    padding: 4px 12px; border-radius: 6px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px;
}
.model-card-body { padding: 28px; }
.model-card-body h3 { margin-bottom: 8px; font-size: 1.4rem; }
.model-card-body .model-tagline {
    color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px;
}
.model-card-price {
    font-size: 1.1rem; color: var(--primary); font-weight: 700; margin-bottom: 20px;
}
.model-card-price small { color: var(--text-muted); font-weight: 400; font-size: 0.8rem; }
.model-card-specs {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    margin-bottom: 24px; padding-top: 20px;
    border-top: 1px solid var(--border);
}
.model-card-specs .spec-item { text-align: center; }
.model-card-specs .spec-value {
    font-size: 1.1rem; font-weight: 700; color: var(--text-white);
}
.model-card-specs .spec-label {
    font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.5px;
}
.model-card-actions { display: flex; gap: 12px; }
.model-card-actions .btn { flex: 1; padding: 12px 16px; font-size: 0.8rem; }

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    border-color: rgba(0,191,166,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.feature-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: rgba(0,191,166,0.1);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 32px; height: 32px; fill: var(--primary); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== SPEC TABLE ===== */
.spec-table-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th {
    background: rgba(0,191,166,0.1); color: var(--primary);
    padding: 16px 24px; text-align: left; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.spec-table td {
    padding: 14px 24px; border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--text-muted); font-weight: 500; width: 40%; }
.spec-table td:nth-child(2) { color: var(--text-white); font-weight: 600; }
.spec-table tr:hover td { background: rgba(0,191,166,0.03); }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { border-radius: var(--radius-lg); width: 100%; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,191,166,0.05) 0%, transparent 70%);
}
.page-header h1 { margin-bottom: 12px; position: relative; }
.page-header p { color: var(--text-muted); font-size: 1.1rem; position: relative; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 16/10; position: relative;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-hero);
    padding: 80px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,191,166,0.08) 0%, transparent 60%);
}
.cta-section h2 { margin-bottom: 16px; position: relative; }
.cta-section p { color: var(--text-muted); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 8px; color: var(--text-light);
    font-size: 0.9rem; font-weight: 500;
}
.form-control {
    width: 100%; padding: 14px 18px;
    background: var(--dark-3); border: 1px solid var(--border-light);
    border-radius: 8px; color: var(--text-white);
    font-size: 0.95rem; font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,191,166,0.15);
}
.form-control::placeholder { color: var(--text-dim); }
select.form-control { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.form-check input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px;
    accent-color: var(--primary); cursor: pointer;
}
.form-check label { font-size: 0.85rem; color: var(--text-muted); cursor: pointer; }

/* ===== CONTACT INFO ===== */
.contact-info-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px; margin-bottom: 40px;
}
.contact-info-card {
    background: var(--gradient-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; text-align: center;
}
.contact-info-card .icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: rgba(0,191,166,0.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.contact-info-card .icon svg { width: 28px; height: 28px; fill: var(--primary); }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.contact-info-card a { color: var(--primary); }

/* ===== DEALER CARD ===== */
.dealer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.dealer-card {
    background: var(--gradient-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    transition: var(--transition);
}
.dealer-card:hover { border-color: rgba(0,191,166,0.3); box-shadow: var(--shadow-glow); }
.dealer-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.dealer-card .dealer-address { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.dealer-card .dealer-actions { display: flex; gap: 12px; }

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; padding: 40px 0;
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 2.5rem; font-weight: 800; color: var(--primary);
    line-height: 1.2;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px; counter-reset: step;
}
.process-step {
    text-align: center; position: relative;
    counter-increment: step;
}
.process-step::before {
    content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; margin: 0 auto 20px;
    background: var(--gradient-primary); color: var(--dark);
    border-radius: 50%; font-size: 1.2rem; font-weight: 800;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 12px; color: var(--primary); }
.legal-content p { color: var(--text-muted); }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 8px; padding-left: 8px; position: relative; }
.legal-content ul li::before { content: ''; position: absolute; left: -12px; top: 10px; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.legal-content .updated { color: var(--text-muted); font-style: italic; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 40px;
}
.footer-brand .logo-text { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer h4 {
    color: var(--text-white); font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer ul a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--dark-3); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--text-muted); }
.footer-social a:hover svg { fill: var(--dark); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0; text-align: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: var(--text-muted); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== HIGHLIGHT SPECS ===== */
.highlight-specs {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin: 40px 0;
}
.highlight-spec {
    text-align: center; padding: 24px;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.highlight-spec .value {
    font-size: 2rem; font-weight: 800; color: var(--primary);
    line-height: 1.2;
}
.highlight-spec .unit { font-size: 0.9rem; color: var(--text-muted); }
.highlight-spec .label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===== VARIANT TABS ===== */
.variant-tabs {
    display: flex; gap: 8px; justify-content: center;
    margin-bottom: 40px; flex-wrap: wrap;
}
.variant-tab {
    padding: 10px 24px; border-radius: 8px;
    background: var(--dark-3); border: 1px solid var(--border);
    color: var(--text-muted); font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.variant-tab:hover, .variant-tab.active {
    background: rgba(0,191,166,0.1); border-color: var(--primary);
    color: var(--primary);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--gradient-card); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    padding: 20px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.faq-question:hover { background: rgba(0,191,166,0.03); }
.faq-question h3 { font-size: 1rem; margin: 0; font-weight: 600; }
.faq-question .faq-toggle {
    width: 24px; height: 24px; flex-shrink: 0;
    color: var(--primary); transition: var(--transition);
    font-size: 1.5rem; line-height: 1;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.9rem; }

/* ===== MAP PLACEHOLDER ===== */
.map-container {
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); height: 400px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 40px;
}
.map-container p { color: var(--text-dim); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text .hero-desc { margin: 0 auto 12px; }
    .hero-actions { justify-content: center; }
    .hero-image { display: none; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .highlight-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .section { padding: 60px 0; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
        height: 100vh; background: var(--dark-2);
        padding: 100px 32px 32px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        z-index: 999;
    }
    .main-nav.active { right: 0; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 14px 16px; font-size: 1rem; }
    .header-cta { display: none; }
    .hero { min-height: 80vh; }
    .hero-text h1 { font-size: 2rem; }
    .models-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .highlight-specs { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .model-card-specs { grid-template-columns: repeat(2, 1fr); }
    .section-header { margin-bottom: 40px; }
    .spec-table td, .spec-table th { padding: 12px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .process-steps { grid-template-columns: 1fr; }
    .highlight-specs { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .dealer-grid { grid-template-columns: 1fr; }
}
