:root {
    --primary: #1a237e;
    --primary-dark: #0d1642;
    --secondary: #ffd700;
    --accent: #3949ab;
    --text: #212529;
    --text-light: #6c757d;
    --bg: #ffffff;
    --bg-light: #f4f6fb;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 18px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; padding-left: 16px; padding-right: 16px; }

/* Header */
.main-header {
    position: sticky; top: 0; z-index: 1000;
    background: linear-gradient(180deg, #0b1230 0%, #070b20 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-pattern {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.03) 2px,
        rgba(255,255,255,0.03) 4px
    );
}
.main-header .navbar { position: relative; z-index: 1; }

.navbar { padding: 10px 0; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand .brand-logo { height: 50px; width: 50px; min-width: auto; padding: 0; border-radius: 50%; object-fit: cover; display: block; border: 2px solid rgba(255,215,0,0.4); background: rgba(255,255,255,0.1); aspect-ratio: 1 / 1; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-size: 1.2rem; font-weight: 900; color: var(--primary);
    letter-spacing: -0.6px; line-height: 1.1;
}
.brand-gold { color: #ffd700; }
.brand-white { color: #ffffff; }
.brand-normal { color: var(--primary); }
.brand-tagline { font-size: 0.68rem; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.2px; }

.nav-link {
    color: rgba(255,255,255,0.9) !important; font-weight: 600; font-size: 0.92rem;
    padding: 10px 14px !important; border-radius: var(--radius-sm);
    transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: #ffd700 !important; background: rgba(255,255,255,0.08); }

.phone-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
    background: rgba(255,255,255,0.1); color: white; border-radius: 50px;
    font-weight: 700; font-size: 0.88rem; letter-spacing: 0.2px;
    border: 1px solid rgba(255,255,255,0.15);
}
.phone-btn:hover { background: rgba(255,255,255,0.2); color: white; transform: translateY(-2px); }

.whatsapp-btn {
    width: 44px; height: 44px; border-radius: 50%; background: #25D366;
    color: white; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.whatsapp-btn:hover { background: #128C7E; color: white; transform: translateY(-2px); }

.navbar-toggler { border: none; padding: 6px; box-shadow: none !important; }
.navbar-toggler:focus { box-shadow: none; }

/* Mobile bottom bar */
.mobile-contact-bar {
    display: none; background: var(--primary); padding: 10px 12px;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    justify-content: space-around; gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-contact-bar a {
    color: white; font-weight: 700; font-size: 0.82rem;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 8px 12px; border-radius: 12px; background: rgba(255,255,255,0.1);
    flex: 1;
}
.mobile-contact-bar a:hover { background: rgba(255,255,255,0.2); color: white; }

/* Hero */
.hero-section {
    position: relative; min-height: 42svh; display: flex; align-items: center; padding-top: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,215,0,0.12) 0%, transparent 45%),
        linear-gradient(135deg, #0d1642 0%, #1a237e 55%, #283593 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="180" cy="80" r="1.6" fill="rgba(255,255,255,0.08)"/><circle cx="100" cy="160" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="60" cy="120" r="0.8" fill="rgba(255,215,0,0.12)"/></svg>');
    background-size: 250px;
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; padding: 10px 0 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
    background: rgba(255,215,0,0.14); color: var(--secondary);
    border: 1px solid rgba(255,215,0,0.35); border-radius: 50px;
    font-size: 0.82rem; font-weight: 700; margin-bottom: 22px;
    animation: fadeInDown 0.8s ease;
}
.hero-title {
    font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 900;
    color: white; line-height: 1.08; margin-bottom: 18px;
    letter-spacing: -1.2px; animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem); color: rgba(255,255,255,0.82);
    margin-bottom: 30px; max-width: 520px; line-height: 1.75;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; animation: fadeInUp 0.8s ease 0.3s both; }
.btn-hero-primary {
    padding: 14px 28px; background: var(--secondary); color: var(--primary);
    border-radius: 50px; font-weight: 800; font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(255,215,0,0.25); transition: var(--transition);
    letter-spacing: 0.2px;
}
.btn-hero-primary:hover { background: #ffed4a; color: var(--primary); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,215,0,0.35); }
.btn-hero-secondary {
    padding: 14px 28px; background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.35); border-radius: 50px;
    font-weight: 700; font-size: 0.95rem; backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { border-color: white; background: rgba(255,255,255,0.12); color: white; transform: translateY(-3px); }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-stat h3 { color: var(--secondary); font-size: 1.9rem; font-weight: 900; margin-bottom: 4px; }
.hero-stat p { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin: 0; font-weight: 500; }

.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.18); border-radius: 28px;
    padding: 44px; text-align: center; color: white; position: relative;
    animation: float 3.5s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.hero-card-icon { font-size: 4.8rem; margin-bottom: 18px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }
.hero-card h4 { font-size: 1.45rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.hero-card p { opacity: 0.85; margin: 0; font-size: 0.95rem; }

.scroll-down {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    animation: bounce 2.2s infinite; z-index: 2;
}
.scroll-down a { color: rgba(255,255,255,0.75); font-size: 1.4rem; display: block; }

/* Sections */
.section-header { margin-bottom: 44px; }
.section-tag {
    display: inline-block; padding: 7px 16px; background: rgba(26,35,126,0.08);
    color: var(--primary); border-radius: 50px; font-size: 0.82rem;
    font-weight: 700; margin-bottom: 14px; letter-spacing: 0.3px;
}
.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900;
    color: var(--primary); margin-bottom: 12px; letter-spacing: -0.7px;
}
.section-subtitle { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* Brands */
.brands-section { overflow: hidden; background: linear-gradient(180deg, var(--bg-light) 0%, #eef1f7 100%); padding: 28px 0; }
.brands-scroll { overflow: hidden; margin: 0 -8px; padding: 8px 0; }
.brands-track { display: flex; gap: 14px; animation: scroll 35s linear infinite; width: max-content; }
.brand-item { flex-shrink: 0; }
.brand-item:nth-child(6n+1) .brand-logo { background: #1a237e; color: #fff; }
.brand-item:nth-child(6n+1) .brand-logo i { color: #ffd700; }
.brand-item:nth-child(6n+2) .brand-logo { background: #00695c; color: #fff; }
.brand-item:nth-child(6n+2) .brand-logo i { color: #b2dfdb; }
.brand-item:nth-child(6n+3) .brand-logo { background: #e65100; color: #fff; }
.brand-item:nth-child(6n+3) .brand-logo i { color: #ffcc80; }
.brand-item:nth-child(6n+4) .brand-logo { background: #4a148c; color: #fff; }
.brand-item:nth-child(6n+4) .brand-logo i { color: #ce93d8; }
.brand-item:nth-child(6n+5) .brand-logo { background: #1b5e20; color: #fff; }
.brand-item:nth-child(6n+5) .brand-logo i { color: #a5d6a7; }
.brand-item:nth-child(6n+6) .brand-logo { background: #b71c1c; color: #fff; }
.brand-item:nth-child(6n+6) .brand-logo i { color: #ef9a9a; }
.brand-logo {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    white-space: nowrap; font-weight: 700;
    min-width: 160px; justify-content: center; transition: var(--transition);
}
.brand-logo:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.brand-logo i { color: var(--primary); font-size: 1.4rem; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Car cards */
.car-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    height: 100%; display: flex; flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}
.car-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.car-image-wrapper {
    position: relative; overflow: hidden; height: 210px; background: linear-gradient(135deg, #f0f2f5 0%, #e8ebf0 100%);
}
.car-image {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.car-card:hover .car-image { transform: scale(1.1); }
.car-image-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,35,126,0.2) 0%, rgba(26,35,126,0.75) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.car-card:hover .car-image-overlay { opacity: 1; }
.btn-view {
    padding: 10px 26px; background: white; color: var(--primary);
    border-radius: 50px; font-weight: 700; font-size: 0.88rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-view:hover { background: var(--secondary); color: var(--primary); transform: translateY(-2px); }
.car-badge {
    position: absolute; top: 14px; left: 14px; padding: 7px 14px;
    background: var(--secondary); color: var(--primary);
    border-radius: 50px; font-size: 0.72rem; font-weight: 800;
    z-index: 2; text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,215,0,0.35);
}
.car-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.car-brand { color: var(--primary); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 0.5px; }
.car-title {
    font-size: 1.08rem; font-weight: 800; color: var(--text);
    margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.2px;
}
.car-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.meta-item {
    display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px;
    background: var(--bg-light); border-radius: 50px;
    font-size: 0.78rem; color: var(--text-light); font-weight: 600;
}
.meta-item i { color: var(--primary); font-size: 0.72rem; }
.car-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; border-top: 1px solid #f0f0f0; margin-top: auto;
}
.car-price { font-size: 1.25rem; font-weight: 900; color: var(--primary); }
.btn-details {
    padding: 8px 18px; background: var(--primary); color: white;
    border-radius: 50px; font-weight: 700; font-size: 0.84rem;
    box-shadow: 0 4px 14px rgba(26,35,126,0.25);
}
.btn-details:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); }

/* Why us */
.feature-card {
    background: white; padding: 28px 22px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(26,35,126,0.08); }
.feature-icon {
    width: 72px; height: 72px; border-radius: 22px;
    background: rgba(26,35,126,0.07); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; margin: 0 auto 18px; transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--primary); color: white; transform: scale(1.05); }
.feature-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.feature-card p { color: var(--text-light); font-size: 0.88rem; margin: 0; line-height: 1.5; }

/* Testimonials */
.testimonial-card {
    background: white; padding: 28px; border-radius: var(--radius);
    box-shadow: var(--shadow); height: 100%; transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { color: var(--secondary); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
    font-style: italic; color: var(--text-light); margin-bottom: 18px;
    font-size: 0.95rem; line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
}
.author-info h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

/* CTA */
.cta-section { padding: 70px 0; }
.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 56px 36px; border-radius: 28px; text-align: center; color: white;
    position: relative; overflow: hidden;
}
.cta-card::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 180px; height: 180px; background: rgba(255,215,0,0.12); border-radius: 50%;
}
.cta-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900; margin-bottom: 14px; position: relative; letter-spacing: -0.5px; }
.cta-card p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 24px; position: relative; }
.btn-cta {
    padding: 14px 34px; background: var(--secondary); color: var(--primary);
    border-radius: 50px; font-weight: 800; font-size: 0.95rem;
    box-shadow: 0 8px 28px rgba(255,215,0,0.3); position: relative;
}
.btn-cta:hover { background: #ffed4a; color: var(--primary); transform: translateY(-3px); }

/* Footer */
.main-footer { background: linear-gradient(180deg, #0b1230 0%, #070b20 100%); color: white; padding-top: 56px; position: relative; overflow: hidden; }
.footer-pattern {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.03) 2px,
        rgba(255,255,255,0.03) 4px
    );
}
.footer-main { position: relative; z-index: 1; }
.footer-about .footer-logo { margin-bottom: 18px; }
.footer-about .footer-logo img { height: 48px; border-radius: 8px; }
.footer-about h3 { font-size: 1.35rem; font-weight: 900; margin-bottom: 10px; }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.6; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: var(--transition); border: 1px solid rgba(255,255,255,0.08);
}
.social-links a:hover { background: var(--secondary); color: var(--primary); transform: translateY(-3px); border-color: transparent; }

.footer-links h4, .footer-contact h4 {
    font-size: 0.95rem; font-weight: 800; margin-bottom: 18px; color: white; letter-spacing: 0.3px;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.72); font-size: 0.9rem; font-weight: 500; }
.footer-links ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact ul { list-style: none; padding: 0; }
.footer-contact ul li {
    color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 12px;
    display: flex; align-items: flex-start; gap: 10px; font-weight: 500;
}
.footer-contact ul li i { color: var(--secondary); margin-top: 3px; }
.footer-contact ul li a { color: rgba(255,255,255,0.72); font-weight: 500; }
.footer-contact ul li a:hover { color: var(--secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0;
    margin-top: 44px; text-align: center; position: relative; z-index: 1;
}
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }

.floating-whatsapp {
    position: fixed; bottom: 84px; right: 18px; z-index: 998;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    animation: pulse 2.2s infinite;
}
.floating-whatsapp:hover { background: #128C7E; color: white; transform: scale(1.05); }

@keyframes pulse {
    0% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 8px 36px rgba(37,211,102,0.75); }
    100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

.min-vh-75 { min-height: 75vh; }

/* Section backgrounds */
.section-bg-1 { background: #f4f6fb; }
.section-bg-2 { background: #ffffff; }
.section-bg-3 { background: #f8f9fa; }
.section-bg-4 { background: #f1f4f8; }
.section-bg-5 { background: #ffffff; }
.section-bg-6 { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: white; }
.section-bg-6 .section-tag { background: rgba(255,255,255,0.15); color: #ffd700; }
.section-bg-6 .section-title { color: white; }
.section-bg-6 .section-subtitle { color: rgba(255,255,255,0.85); }

/* Responsive */
@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 70px 0 50px; }
    .hero-stats { gap: 22px; margin-top: 28px; }
    .footer-bottom { text-align: center; }
    .navbar-collapse { background: white; padding: 12px; border-radius: 14px; margin-top: 10px; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.06); }
    .nav-link { padding: 10px 12px !important; border-radius: 10px; }
    .header-contact { display: none !important; }
}

@media (max-width: 767px) {
    .hero-section { padding: 50px 0 36px; }
    .hero-content { padding: 0; }
    .hero-title { font-size: 1.65rem; margin-bottom: 12px; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 16px; }
    .hero-badge { padding: 6px 14px; font-size: 0.75rem; margin-bottom: 14px; }
    .hero-buttons { flex-direction: column; gap: 8px; margin-bottom: 20px; }
    .hero-buttons .btn { width: 100%; text-align: center; justify-content: center; padding: 12px 18px; font-size: 0.88rem; }
    .hero-image { margin-top: 24px; }
    .hero-card { padding: 28px 22px; border-radius: 20px; }
    .hero-card-icon { font-size: 3rem; margin-bottom: 12px; }
    .hero-card h4 { font-size: 1.1rem; }
    .hero-card p { font-size: 0.82rem; }
    .hero-stats { gap: 14px; margin-top: 18px; }
    .hero-stat h3 { font-size: 1.4rem; }
    .hero-stat p { font-size: 0.78rem; }
    .scroll-down { bottom: 10px; }
    .car-image-wrapper { height: 190px; }
    .car-body { padding: 16px; }
    .car-title { font-size: 1rem; }
    .car-price { font-size: 1.1rem; }
    .cta-card { padding: 40px 22px; border-radius: 22px; }
    .floating-whatsapp { width: 52px; height: 52px; font-size: 1.45rem; bottom: 76px; right: 14px; }
    .mobile-contact-bar { display: flex; }
    .footer-about, .footer-links, .footer-contact { margin-bottom: 24px; }
    .hero-stats { gap: 18px; }
    .hero-stat h3 { font-size: 1.6rem; }
    .section-header { margin-bottom: 32px; }
    .testimonial-card { padding: 22px; }
    .feature-card { padding: 24px 18px; }
    body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .hero-section { padding: 40px 0 28px; }
    .hero-card { padding: 22px 18px; border-radius: 18px; }
    .hero-card-icon { font-size: 2.5rem; margin-bottom: 10px; }
    .hero-card h4 { font-size: 1rem; }
    .hero-card p { font-size: 0.75rem; }
    .hero-title { font-size: 1.45rem; margin-bottom: 10px; }
    .hero-subtitle { font-size: 0.82rem; }
    .hero-stat h3 { font-size: 1.25rem; }
    .hero-stat p { font-size: 0.72rem; }
    .brand-logo { min-width: 140px; padding: 12px 16px; font-size: 0.85rem; }
    .car-image-wrapper { height: 170px; }
    .hero-title { font-size: 1.85rem; }
    .container { padding-left: 14px; padding-right: 14px; }
    .btn-hero-primary, .btn-hero-secondary { padding: 13px 22px; font-size: 0.9rem; }
}
