/* Font loaded via <link> in HTML for better performance */

:root {
    --red: #D3121A;
    --red-hover: #b80f16;
    --red-light: #fef2f2;
    --black: #111;
    --gray-1: #333;
    --gray-2: #666;
    --gray-3: #999;
    --gray-4: #d4d4d4;
    --gray-5: #f4f4f5;
    --white: #fff;
    --radius: 12px;
    --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button { -webkit-tap-highlight-color: transparent; }

/* ── UTILITIES ── */
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--black); margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--gray-2); line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 14px; }
.section-cta-row { margin-top: 32px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: none; }
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.anim.in { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s ease; text-decoration: none; border-radius: var(--radius-sm); font-size: 0.88rem; line-height: 1; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-lg { padding: 14px 28px; }
.btn-xl { padding: 16px 36px; font-size: 0.95rem; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--black); font-weight: 700; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--gray-4); }
.btn-outline:hover { border-color: var(--black); }
.btn-outline-red { background: transparent; color: var(--red); border: 1.5px solid var(--red); border-radius: var(--radius-sm); }
.btn-outline-red:hover { background: var(--red); color: #fff; }

/* ── HERO OVERLAY ── */
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%); z-index: 1; pointer-events: none; }

/* ── NAVBAR ── */
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 0 6%; height: 60px; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.logo { font-size: 0.9rem; font-weight: 900; letter-spacing: 1px; color: var(--black); text-transform: uppercase; }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 0.82rem; font-weight: 500; color: var(--gray-2); transition: color 0.2s; }
.nav-link:hover { color: var(--black); }
.nav-link.active { color: var(--black); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 500; color: var(--gray-2); transition: color 0.2s; }
.nav-phone:hover { color: var(--black); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 20px; height: 1.5px; background: var(--black); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; background: var(--white); z-index: 999; padding: 100px 6% 40px; display: flex; flex-direction: column; justify-content: space-between; transform: translateX(100%); transition: transform 0.35s ease; }
.mobile-menu.open { transform: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--gray-5); }
.mobile-nav-links a { display: block; padding: 20px 0; font-size: 1.2rem; font-weight: 600; color: var(--black); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 10px; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding: 0; }
.hero-bg-image { position: absolute; inset: 0; background: url('../assets/hero.png') center/cover no-repeat; }

.hero-inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; width: 100%; padding: 0 6% 60px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.hero-content { max-width: 560px; animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-label { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -2px; line-height: 1.05; color: #fff; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero h1 em { font-style: normal; color: #fff; border-bottom: 3px solid rgba(255,255,255,0.4); padding-bottom: 2px; transition: border-color 0.4s; }
.hero h1 em:hover { border-color: #fff; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-link { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.hero-link:hover { color: #fff; }
.hero-link svg { transition: transform 0.2s; }
.hero-link:hover svg { transform: translateX(3px); }

/* ── FLOATING 3D BATTERY ── */
.hero-float-battery {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    perspective: 900px;
    animation: batteryFadeIn 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

@keyframes batteryFadeIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

.hero-float-battery-inner {
    position: relative;
    transform-style: preserve-3d;
    animation: batteryFloat 5s ease-in-out infinite;
    will-change: transform;
}

.hero-float-battery-inner img {
    width: 280px;
    height: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 8px 16px rgba(211, 18, 26, 0.15));
    transition: filter 0.4s ease;
}

.hero-float-battery:hover .hero-float-battery-inner img {
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 12px 24px rgba(211, 18, 26, 0.25));
}

.hero-float-shadow {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes batteryFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(2deg) rotateY(-4deg) rotateZ(0deg);
    }
    25% {
        transform: translateY(-18px) rotateX(-1deg) rotateY(3deg) rotateZ(1deg);
    }
    50% {
        transform: translateY(-28px) rotateX(3deg) rotateY(-2deg) rotateZ(-1deg);
    }
    75% {
        transform: translateY(-12px) rotateX(-2deg) rotateY(5deg) rotateZ(0.5deg);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        width: 140px;
        opacity: 0.8;
    }
    25% {
        width: 120px;
        opacity: 0.5;
    }
    50% {
        width: 100px;
        opacity: 0.35;
    }
    75% {
        width: 125px;
        opacity: 0.6;
    }
}

/* ── BRAND MARQUEE ── */
.brand-marquee { overflow: hidden; background: var(--white); padding: 16px 0; border-bottom: 1px solid var(--gray-5); }
.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.marquee-item img { width: 36px; height: 36px; object-fit: contain; mix-blend-mode: multiply; opacity: 0.7; }
.marquee-item span { font-size: 0.78rem; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── BRANDS SHOWCASE ── */
.brands-showcase { padding: 100px 6%; background: var(--gray-5); }

/* Main 4 brands */
.brands-main { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; margin-bottom: 48px; max-width: 1080px; margin-left: auto; margin-right: auto; }
.brand-main-card { display: flex; align-items: center; gap: 0; padding: 0; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-align: left; overflow: hidden; }
.brand-main-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--bc); }
.brand-main-left { flex: 1; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.brand-id-row { display: flex; align-items: center; gap: 14px; }
.brand-logo-img { height: 36px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.brand-logo-sm { height: 36px; }
.brand-main-name { font-size: 1.4rem; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.brand-main-badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.62rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; width: fit-content; }
.brand-main-desc { font-size: 0.82rem; color: var(--gray-2); line-height: 1.5; }
.brand-main-battery { width: 160px; height: 100%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--white); padding: 20px; }
.brand-main-battery img { max-width: 100%; max-height: 120px; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.brand-main-card:hover .brand-main-battery img { transform: scale(1.08) translateY(-4px); }

.brands-also-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-3); margin-bottom: 20px; }

/* Secondary brand cards */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1080px; margin-left: auto; margin-right: auto; }
.brand-card { display: flex; flex-direction: column; align-items: center; padding: 24px 20px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-align: center; gap: 8px; }
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--bc); }
.brand-card .brand-logo-img { height: 36px; margin-bottom: 6px; }
.brand-card-img { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.brand-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.brand-card:hover .brand-card-img img { transform: scale(1.08) translateY(-4px); }
.brand-tag { font-size: 0.68rem; font-weight: 600; color: var(--gray-3); text-transform: uppercase; letter-spacing: 1px; }

/* ── TRUST BAR ── */
.trust-section { padding: 0; border-bottom: 1px solid var(--gray-5); }
.trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; padding: 28px 6%; gap: 0; }
.trust-item { padding: 0 28px; font-size: 0.88rem; color: var(--gray-2); white-space: nowrap; }
.trust-item strong { color: var(--black); font-weight: 700; }
.trust-sep { width: 1px; height: 20px; background: var(--gray-4); }

/* ── SERVICES ── */
.services-section { padding: 100px 6%; background: var(--gray-5); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1080px; margin: 32px auto 0; }
.svc-card { padding: 28px 24px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); transition: all 0.3s ease; }
.svc-card:hover { border-color: var(--red); box-shadow: 0 8px 24px rgba(211,18,26,0.06); transform: translateY(-2px); }
.svc-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.svc-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--red-light); display: flex; align-items: center; justify-content: center; color: var(--red); }
.svc-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-3); padding: 3px 10px; border-radius: 50px; border: 1px solid var(--gray-4); }
.svc-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p { font-size: 0.85rem; color: var(--gray-2); line-height: 1.6; }

.numbers-section { padding: 80px 6%; background: var(--black); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; text-align: center; }
.number-block { padding: 24px; }
.number-val { font-size: 2.8rem; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.number-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }



/* ── MAP ── */
.map-section { padding: 100px 6%; background: var(--gray-5); }
.map-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.map-info h2 { margin-bottom: 32px; }
.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.info-item h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-3); margin-bottom: 4px; }
.info-item p { font-size: 0.95rem; color: var(--black); line-height: 1.6; }
.map-frame { border-radius: var(--radius); overflow: hidden; height: 400px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ── VEHICLES ── */
.vehicles-section { padding: 100px 6%; }
.vehicles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vehicle-card { padding: 20px; border: 1px solid var(--gray-5); border-radius: var(--radius-sm); transition: all 0.25s ease; }
.vehicle-card:hover { border-color: var(--red); background: var(--red-light); }
.vehicle-card h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; transition: color 0.2s; }
.vehicle-card:hover h4 { color: var(--red); }
.vehicle-card p { font-size: 0.82rem; color: var(--gray-2); line-height: 1.5; }

/* ── ABOUT ── */
.about-section { padding: 100px 6%; background: var(--gray-5); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.about-p { font-size: 0.95rem; color: var(--gray-2); line-height: 1.75; margin-bottom: 16px; }
.about-details { display: flex; flex-direction: column; gap: 24px; }
.about-detail { padding-left: 20px; border-left: 2px solid var(--gray-4); transition: border-color 0.3s; }
.about-detail:hover { border-left-color: var(--red); }
.about-detail h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.about-detail p { font-size: 0.88rem; color: var(--gray-2); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 100px 6%; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.t-card { border: 1px solid var(--gray-5); border-radius: var(--radius); padding: 28px; transition: all 0.3s ease; position: relative; }
.t-card::before { content: '\201C'; position: absolute; top: 16px; right: 20px; font-size: 3rem; line-height: 1; color: var(--gray-5); font-family: Georgia, serif; transition: color 0.3s; }
.t-card:hover { border-color: var(--gray-4); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.t-card:hover::before { color: var(--red-light); }
.t-card p { font-size: 0.92rem; color: var(--gray-1); line-height: 1.65; margin-bottom: 16px; font-style: normal; }
.t-card cite { font-style: normal; font-size: 0.85rem; font-weight: 600; color: var(--black); }
.t-card cite span { color: var(--gray-3); font-weight: 400; margin-left: 6px; }

/* ── FAQ ── */
.faq-section { padding: 100px 6%; background: var(--gray-5); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.faq-left .section-title { margin-bottom: 12px; }
.faq-left .section-sub { margin-bottom: 0; }
.faq-item { border-bottom: 1px solid var(--gray-4); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 0.95rem; font-weight: 600; color: var(--black); text-align: left; gap: 16px; }
.faq-chevron { transition: transform 0.3s; flex-shrink: 0; color: var(--gray-3); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 0.9rem; color: var(--gray-2); line-height: 1.7; padding-bottom: 0; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* ── FOOTER ── */
.cta-banner { background: var(--red); padding: 64px 6%; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 6px; }
.cta-banner-sub { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-white-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); border-radius: var(--radius-sm); }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 60px 6% 30px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-top: 10px; }
.footer .logo { color: #fff; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.85rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 0.78rem; }

/* ── WA FLOAT ── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; z-index: 900; box-shadow: 0 4px 16px rgba(37,211,102,0.3); transition: transform 0.2s; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ══ CATALOG PAGE ══ */
.cat-hero { background: var(--black); padding: 140px 6% 70px; text-align: center; }
.cat-hero-inner { max-width: 600px; margin: 0 auto; }
.cat-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 14px; display: block; }
.cat-h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1.08; margin-bottom: 16px; }
.cat-sub { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 480px; margin: 0 auto 36px; }
.cat-hero-stats { display: flex; align-items: center; justify-content: center; }
.cat-stat { display: flex; flex-direction: column; gap: 2px; padding: 0 28px; }
.cat-stat-n { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -1px; }
.cat-stat-l { font-size: 0.68rem; color: rgba(255,255,255,0.35); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.cat-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

.brand-nav-sticky { position: sticky; top: 60px; z-index: 90; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.06); padding: 12px 6%; }
.brand-nav-inner { max-width: 1080px; margin: 0 auto; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.brand-nav-inner::-webkit-scrollbar { display: none; }
.brand-nav-pill { padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: var(--gray-2); border: 1.5px solid var(--gray-5); white-space: nowrap; transition: all 0.25s cubic-bezier(0.16,1,0.3,1); flex-shrink: 0; }
.brand-nav-pill:hover { border-color: var(--gray-4); color: var(--black); }
.brand-nav-pill.active { background: var(--black); color: #fff; border-color: var(--black); transform: scale(1.02); }

.brand-section { padding: 72px 6%; border-bottom: 1px solid var(--gray-5); }
.brand-section:nth-child(even) { background: var(--gray-5); }
.brand-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.brand-header-left { display: flex; align-items: center; gap: 14px; }
.brand-icon-lg { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.brand-icon-lg span { font-size: 1.3rem; font-weight: 900; color: #fff; }
.brand-img-sm { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--gray-5); flex-shrink: 0; }
.brand-img-sm img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.brand-h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.8px; }
.brand-origin-tag { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-3); }
.brand-rating { display: flex; align-items: center; gap: 5px; }
.star-filled { color: #f5a623; font-size: 0.85rem; }
.rating-num { font-size: 0.85rem; font-weight: 700; }
.brand-desc { font-size: 0.92rem; color: var(--gray-2); line-height: 1.7; max-width: 640px; margin-bottom: 24px; }
.brand-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 32px; }
.bf-item { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-sm); padding: 14px; }
.brand-section:nth-child(even) .bf-item { background: var(--white); }
.bf-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-3); display: block; margin-bottom: 2px; }
.bf-val { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.prods-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-3); margin-bottom: 16px; }
.prods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
.prod-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); overflow: hidden; transition: all 0.2s ease; }
.brand-section:nth-child(even) .prod-card { border-color: rgba(0,0,0,0.08); }
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.prod-card-top { padding: 18px 18px 14px; border-bottom: 2px solid var(--accent, var(--gray-4)); }
.prod-badge-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.prod-badge { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 8px; border-radius: 50px; color: #fff; }
.prod-amp { font-size: 1rem; font-weight: 800; color: var(--black); }
.prod-model { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.8px; }
.prod-card-body { padding: 18px; }
.prod-use { font-size: 0.75rem; font-weight: 600; color: var(--gray-2); margin-bottom: 4px; }
.prod-fit { font-size: 0.8rem; color: var(--gray-3); line-height: 1.5; margin-bottom: 14px; }
.prod-meta { display: flex; gap: 14px; margin-bottom: 16px; }
.prod-meta-item { display: flex; align-items: center; gap: 4px; font-size: 0.7rem; font-weight: 600; color: var(--gray-2); }
.prod-meta-item svg { color: var(--red); }
.prod-cta { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 11px; border-radius: var(--radius-sm); background: var(--red); color: #fff; font-size: 0.82rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s; }
.prod-cta:hover { background: var(--red-hover); }
.brand-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cat-cta-final { background: var(--black); padding: 80px 6%; }
.cat-cta-final .section-title { color: #fff; }
.cat-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── WIZARD ASSISTANT ── */
.wizard { max-width: 680px; margin: 32px auto 0; }
.wiz-step { display: none; }
.wiz-step.active { display: block; animation: wizFade 0.3s ease; }
@keyframes wizFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wiz-q { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin: 0 0 18px; font-weight: 500; }
.wiz-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wiz-opt { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px 12px; border-radius: 16px; border: 2px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); cursor: pointer; transition: all 0.25s; font-family: inherit; backdrop-filter: blur(4px); }
.wiz-opt:hover { border-color: var(--red); background: rgba(204,0,0,0.12); color: #fff; transform: translateY(-2px); }
.wiz-opt svg { opacity: 0.7; }
.wiz-opt:hover svg { opacity: 1; }
.wiz-opt-t { font-size: 0.92rem; font-weight: 700; }
.wiz-opt-s { font-size: 0.72rem; opacity: 0.6; }
.wiz-back { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 12px; font-family: inherit; transition: color 0.2s; }
.wiz-back:hover { color: #fff; }
.wiz-type-tag { font-size: 0.72rem; background: var(--red); color: #fff; padding: 3px 10px; border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; vertical-align: middle; }
.cat-search-wrap { position: relative; }
.cat-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gray-3); pointer-events: none; }
.cat-search { width: 100%; padding: 14px 20px 14px 46px; font-size: 0.95rem; font-family: inherit; border: 2px solid var(--gray-4); border-radius: 14px; background: var(--white); color: var(--black); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.cat-search:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(204,0,0,0.08); }
.cat-search::placeholder { color: var(--gray-3); font-size: 0.85rem; }
.wiz-suggest { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.wiz-sug-btn { padding: 6px 14px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.wiz-sug-btn:hover { background: var(--red); border-color: var(--red); }
.wiz-no-match { color: rgba(255,255,255,0.5); font-size: 0.85rem; padding: 8px 0; }
.wiz-results { margin-top: 20px; max-height: 500px; overflow-y: auto; }
.wiz-results-label { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; margin: 0 0 12px; }
.wiz-brand-group { margin-bottom: 16px; }
.wiz-brand-name { color: #fff; font-size: 0.95rem; font-weight: 800; margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.wiz-brand-count { background: var(--red); color: #fff; font-size: 0.68rem; padding: 2px 8px; border-radius: 50px; font-weight: 700; }
.wiz-results .prods-grid { grid-template-columns: 1fr; }
.wiz-results .prod-card { background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); }
.wiz-wa { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 16px; text-decoration: none; transition: color 0.2s; }
.wiz-wa:hover { color: #25d366; }
.wiz-skip { display: block; color: rgba(255,255,255,0.35); font-size: 0.82rem; text-decoration: none; margin-top: 28px; transition: color 0.2s; }
.wiz-skip:hover { color: rgba(255,255,255,0.7); }
/* ── BATTERY SIZE ROW ── */
.prod-size-row { display: flex; align-items: center; justify-content: space-between; background: var(--gray-5); border-radius: 8px; padding: 10px 14px; margin-bottom: 12px; gap: 4px; }
.prod-size-item { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.prod-size-label { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-3); }
.prod-size-val { font-size: 0.92rem; font-weight: 800; color: var(--black); letter-spacing: -0.5px; line-height: 1; }
.prod-size-val small { font-size: 0.62rem; font-weight: 600; color: var(--gray-3); margin-left: 1px; }
.prod-size-sep { width: 1px; height: 24px; background: var(--gray-4); flex-shrink: 0; }
/* Legacy fallback */
.prod-dim { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--gray-3); margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--gray-4); }
.prod-dim svg { flex-shrink: 0; opacity: 0.5; }

/* ── LINE GROUPS (collapsible) ── */
.line-group { margin-bottom: 12px; border: 1px solid var(--gray-4); border-radius: 14px; background: var(--white); overflow: hidden; transition: margin 0.3s; }
.line-toggle { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; user-select: none; transition: background 0.2s; }
.line-toggle:hover { background: rgba(0,0,0,0.015); }
.line-toggle-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.line-toggle-right { display: flex; align-items: center; gap: 12px; }
.line-title { font-size: 1.05rem; font-weight: 800; color: var(--black); letter-spacing: -0.5px; margin: 0; }
.line-badge { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-3); padding: 3px 10px; border-radius: 50px; border: 1px solid var(--gray-4); background: var(--bg); white-space: nowrap; }
.line-count { font-size: 0.78rem; font-weight: 600; color: var(--gray-3); white-space: nowrap; }
.line-chevron { transition: transform 0.3s ease; color: var(--gray-3); }
.line-group:not(.collapsed) .line-chevron { transform: rotate(180deg); }
.line-body { max-height: 8000px; transition: max-height 0.5s ease, padding 0.3s; padding: 0 22px 22px; }
.line-group.collapsed .line-body { max-height: 0; padding: 0 22px; overflow: hidden; }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
    .brands-main { grid-template-columns: 1fr 1fr; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .numbers-grid { grid-template-columns: repeat(4, 1fr); }
    .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .prods-grid { grid-template-columns: 1fr 1fr; }
    .brand-features { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }

    /* Float battery tablet */
    .hero-float-battery { width: 240px; height: 240px; }
    .hero-float-battery-inner img { width: 220px; }
}

/* Wizard mobile styles merged into main 768px block below */

@media (max-width: 768px) {
    /* ─── WIZARD ─── */
    .wiz-opts { grid-template-columns: 1fr; gap: 10px; }
    .wiz-opt { flex-direction: row; padding: 16px 20px; gap: 14px; min-height: 56px; }
    .wiz-opt-s { display: none; }
    .wizard { margin-top: 24px; }
    .wiz-results .prods-grid { grid-template-columns: 1fr; }

    /* ─── HERO ─── */
    .hero { min-height: 100svh; min-height: 100vh; align-items: flex-end; }
    .hero-bg-image { background-position: center top; }

    .hero-inner { padding: 0 6% 40px; flex-direction: column-reverse; align-items: center; }
    .hero-content { max-width: 100%; }

    /* ─── FLOAT BATTERY MOBILE ─── */
    .hero-float-battery { width: 180px; height: 180px; margin-bottom: 0; }
    .hero-float-battery-inner img { width: 160px; }
    .hero-float-shadow { width: 100px; height: 16px; bottom: -20px; }
    .hero h1, .hero-h1 { font-size: 2rem; letter-spacing: -1px; margin-bottom: 12px; line-height: 1.1; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; color: rgba(255,255,255,0.8); }
    .hero-label { font-size: 0.62rem; letter-spacing: 2px; margin-bottom: 12px; color: rgba(255,255,255,0.5); }
    .hero-cta { gap: 16px; }
    .hero-link { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
    .btn-xl { padding: 14px 28px; font-size: 0.88rem; border-radius: 10px; }

    /* ─── NAV ─── */
    .navbar { height: 56px; padding: 0 5%; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .logo { font-size: 0.85rem; }

    /* ─── MOBILE MENU ─── */
    .mobile-menu { padding: 80px 6% 40px; }
    .mobile-nav-links a { font-size: 1.1rem; padding: 18px 0; }
    .mobile-nav-cta .btn { padding: 14px 20px; font-size: 0.9rem; border-radius: 10px; }

    /* ─── TYPOGRAPHY ─── */
    .section-title { font-size: 1.5rem; letter-spacing: -0.8px; margin-bottom: 8px; line-height: 1.15; }
    .section-sub { font-size: 0.88rem; margin-bottom: 20px; line-height: 1.6; color: var(--gray-2); }

    /* ─── SECTIONS ─── */
    .brands-showcase, .services-section, .vehicles-section,
    .about-section, .testimonials-section, .faq-section,
    .map-section { padding: 48px 5%; }

    .numbers-section { padding: 40px 5%; }

    /* ─── MARQUEE ─── */
    .brand-marquee { padding: 12px 0; }
    .marquee-item img { width: 28px; height: 28px; }
    .marquee-item span { font-size: 0.65rem; letter-spacing: 1.5px; }
    .marquee-track { gap: 28px; }

    /* ─── TRUST ─── */
    .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 16px 5%; }
    .trust-item { padding: 8px 12px; font-size: 0.75rem; text-align: center; }
    .trust-sep { display: none; }

    /* ─── BRANDS MAIN ─── */
    .brands-main { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; margin-bottom: 24px; }
    .brand-main-card { flex-direction: row; border-left: 3px solid var(--bc); overflow: hidden; }
    .brand-main-battery { display: none; }
    .brand-main-left { padding: 16px 18px; gap: 8px; }
    .brand-id-row { gap: 10px; flex-wrap: wrap; }
    .brand-logo-img { height: 28px; }
    .brand-main-badge { font-size: 0.58rem; padding: 3px 10px; }
    .brand-main-desc { font-size: 0.8rem; line-height: 1.5; color: var(--gray-2); }
    .btn-sm { padding: 8px 16px; font-size: 0.75rem; border-radius: 8px; }

    /* ─── BRANDS SECONDARY ─── */
    .brands-also-title { font-size: 0.65rem; margin-bottom: 12px; }
    .brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .brand-card { min-width: unset; flex-shrink: unset; padding: 16px 14px; border-radius: var(--radius); gap: 8px; }
    .brand-card .brand-logo-img { height: 32px; }
    .brand-card-img { width: 60px; height: 60px; }
    .brand-card-img img { max-width: 60px; max-height: 60px; }
    .brand-tag { font-size: 0.6rem; letter-spacing: 0.8px; }



    /* ─── SERVICES ─── */
    .svc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .svc-card { padding: 16px 14px; border-radius: 10px; }
    .svc-icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 10px; }
    .svc-icon svg { width: 18px; height: 18px; }
    .svc-card h3 { font-size: 0.82rem; margin-bottom: 4px; }
    .svc-card p { font-size: 0.75rem; line-height: 1.5; }

    /* ─── NUMBERS ─── */
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .number-block { padding: 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .number-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
    .number-val { font-size: 1.8rem; letter-spacing: -1px; margin-bottom: 4px; }
    .number-label { font-size: 0.65rem; letter-spacing: 0.5px; }

    /* ─── VEHICLES ─── */
    .vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-bottom: 0; }
    .vehicle-card { min-width: unset; flex-shrink: unset; padding: 14px 12px; border-radius: 10px; }
    .vehicle-card h4 { font-size: 0.82rem; margin-bottom: 3px; }
    .vehicle-card p { font-size: 0.72rem; line-height: 1.4; }
    .section-cta-row { margin-top: 16px; }
    .section-cta-row .btn { width: 100%; justify-content: center; }

    /* ─── MAP ─── */
    .map-layout { grid-template-columns: 1fr; gap: 20px; }
    .map-info { padding-bottom: 0; }
    .map-frame { height: 220px; border-radius: var(--radius); }
    .info-items { gap: 16px; }
    .info-item h4 { font-size: 0.68rem; margin-bottom: 3px; }
    .info-item p { font-size: 0.88rem; }

    /* ─── ABOUT ─── */
    .about-layout { grid-template-columns: 1fr; gap: 24px; }
    .about-p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 12px; padding-right: 48px; }
    .about-details { gap: 16px; }
    .about-detail { padding-left: 16px; }
    .about-detail h4 { font-size: 0.9rem; }
    .about-detail p { font-size: 0.82rem; line-height: 1.5; }

    /* ─── TESTIMONIALS ─── */
    .testimonials-grid { display: flex; overflow-x: auto; gap: 12px; padding: 4px 0 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; margin-top: 16px; scroll-snap-type: x mandatory; }
    .testimonials-grid::-webkit-scrollbar { display: none; }
    .t-card { min-width: 280px; max-width: 300px; flex-shrink: 0; padding: 20px; border-radius: var(--radius); scroll-snap-align: start; }
    .t-card::before { font-size: 2.4rem; top: 12px; right: 16px; }
    .t-card p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
    .t-card cite { font-size: 0.78rem; }
    .t-card cite span { display: block; margin-left: 0; margin-top: 2px; font-size: 0.72rem; }

    /* ─── FAQ ─── */
    .faq-layout { grid-template-columns: 1fr; gap: 20px; }
    .faq-left .section-title { margin-bottom: 6px; }
    .faq-left .section-sub { margin-bottom: 0; }
    .faq-left .btn { display: none; }
    .faq-question { font-size: 0.88rem; padding: 14px 0; gap: 12px; }
    .faq-answer { font-size: 0.82rem; line-height: 1.6; }
    .faq-item.open .faq-answer { padding-bottom: 14px; }
    .faq-chevron { width: 16px; height: 16px; flex-shrink: 0; }

    /* ─── CTA BANNER ─── */
    .cta-banner { padding: 40px 5%; }
    .cta-banner-inner { flex-direction: column; text-align: center; gap: 18px; }
    .cta-banner-title { font-size: 1.3rem; letter-spacing: -0.5px; }
    .cta-banner-sub { font-size: 0.85rem; line-height: 1.5; }
    .cta-banner-actions { width: 100%; display: flex; gap: 10px; }
    .cta-banner-actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 13px 18px; border-radius: 10px; }

    /* ─── FOOTER ─── */
    .footer { padding: 32px 5% 16px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
    .footer-brand { grid-column: span 2; margin-bottom: 8px; }
    .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
    .footer-col h4 { font-size: 0.65rem; margin-bottom: 10px; }
    .footer-col a { font-size: 0.78rem; padding: 5px 0; }
    .footer-bottom { text-align: center; padding-top: 16px; }
    .footer-bottom p { font-size: 0.72rem; }

    /* ─── BUTTONS ─── */
    .btn-lg { padding: 12px 22px; font-size: 0.85rem; border-radius: 10px; }

    /* ─── WA FLOAT ─── */
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

    /* ─── CATALOG PAGE ─── */
    .cat-hero { padding: 100px 5% 36px; }
    .cat-h1 { font-size: 1.6rem; letter-spacing: -1px; }
    .cat-sub { font-size: 0.88rem; }
    .cat-hero-stats { gap: 0; }
    .cat-stat { padding: 0 16px; }
    .cat-stat-n { font-size: 1.3rem; }
    .cat-stat-l { font-size: 0.6rem; }
    .cat-stat-div { height: 24px; }
    .brand-section { padding: 48px 5%; }
    .prods-grid { grid-template-columns: 1fr; gap: 12px; }
    .prod-card-top { padding: 14px; }
    .prod-card-body { padding: 14px; }
    .prod-model { font-size: 1.05rem; }
    .prod-cta { padding: 12px; font-size: 0.85rem; border-radius: 10px; }
    .prod-size-row { padding: 8px 10px; border-radius: 6px; }
    .prod-size-label { font-size: 0.52rem; }
    .prod-size-val { font-size: 0.82rem; }
    .prod-size-val small { font-size: 0.56rem; }
    .prod-size-sep { height: 20px; }
    .brand-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .brand-h2 { font-size: 1.3rem; }
    .brand-desc { font-size: 0.85rem; }
    .brand-features { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bf-item { padding: 12px; border-radius: 8px; }
    .bf-label { font-size: 0.58rem; }
    .bf-val { font-size: 0.82rem; }
    .brand-cta-row, .cat-cta-btns { flex-direction: column; gap: 10px; }
    .brand-cta-row .btn, .cat-cta-btns .btn { width: 100%; justify-content: center; padding: 13px 20px; border-radius: 10px; }
    .brand-nav-sticky { padding: 10px 5%; top: 56px; }
    .brand-nav-pill { padding: 7px 16px; font-size: 0.78rem; }

}

/* ─── SMALL PHONES ─── */
@media (max-width: 420px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-h1 { font-size: 1.75rem; }
    .hero-desc { font-size: 0.85rem; }
    .section-title { font-size: 1.3rem; }
    .section-sub { font-size: 0.82rem; }

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

    .trust-row { grid-template-columns: 1fr 1fr; }
    .trust-item { font-size: 0.7rem; }

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

    .footer-top { grid-template-columns: 1fr; gap: 16px; }
    .footer-brand { grid-column: auto; }

    .t-card { min-width: 260px; }

    .cat-h1 { font-size: 1.4rem; }
    .cat-stat { padding: 0 12px; }

    .emergency-card { flex-direction: column; gap: 20px; }
    .emergency-icon-wrap { width: 56px; height: 56px; }
    .emergency-icon-wrap svg { width: 24px; height: 24px; }
    .emergency-title { font-size: 1.1rem; }
    .emergency-desc { font-size: 0.85rem; }
    .emergency-features { flex-direction: column; gap: 8px; }
    .emergency-actions { flex-direction: column; }
    .emergency-actions .btn { width: 100%; justify-content: center; }

    /* Better touch targets */
    .btn-lg { padding: 14px 24px; min-height: 48px; }
    .btn-xl { padding: 16px 28px; min-height: 52px; }
    .faq-question { min-height: 48px; }
    .mobile-nav-links a { min-height: 48px; display: flex; align-items: center; }
    .whatsapp-float { width: 56px; height: 56px; }
}

/* ── SHARE CATALOG BUTTON ── */
.share-catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--gray-4);
    background: var(--white);
    color: var(--gray-2);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    white-space: nowrap;
}
.share-catalog-btn:hover {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37,211,102,0.06);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.15);
}
.share-catalog-btn.shared {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37,211,102,0.1);
}
.share-catalog-btn svg { flex-shrink: 0; }
.brand-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ── EMERGENCY SERVICE SECTION ── */
.emergency-section {
    padding: 0 6% 72px;
}
.emergency-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1f 100%);
    border-radius: 20px;
    border: 1px solid rgba(211,18,26,0.2);
    position: relative;
    overflow: hidden;
}
.emergency-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211,18,26,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.emergency-icon-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(211,18,26,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    position: relative;
}
.emergency-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    border: 2px solid rgba(211,18,26,0.3);
    animation: emergencyPulse 2s ease-in-out infinite;
}
@keyframes emergencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.12); }
}
.emergency-content { flex: 1; position: relative; z-index: 1; }
.emergency-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    background: rgba(211,18,26,0.15);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.emergency-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.emergency-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 560px;
}
.emergency-desc strong {
    color: #fff;
    font-weight: 700;
}
.emergency-features {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.emergency-feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.emergency-feat svg {
    color: var(--red);
    flex-shrink: 0;
}
.emergency-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.emergency-actions .btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.emergency-actions .btn-outline {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
}
.emergency-actions .btn-outline:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* ── RESPONSIVE SHARE + EMERGENCY ── */
@media (max-width: 768px) {
    .share-catalog-btn span { display: none; }
    .share-catalog-btn { padding: 8px 10px; border-radius: 50%; }
    .emergency-section { padding: 0 5% 48px; }
    .emergency-card { flex-direction: column; gap: 20px; padding: 28px 22px; border-radius: 16px; }
    .emergency-icon-wrap { width: 56px; height: 56px; border-radius: 16px; }
    .emergency-icon-wrap svg { width: 24px; height: 24px; }
    .emergency-title { font-size: 1.1rem; }
    .emergency-desc { font-size: 0.85rem; }
    .emergency-features { flex-direction: column; gap: 8px; }
    .emergency-actions { flex-direction: column; }
    .emergency-actions .btn { width: 100%; justify-content: center; }
}