/* ─── KNM MOTORS — MAIN STYLESHEET ─────────────────────────
   Breakpoints:
   Mobile  : 0 – 767px
   Tablet  : 768px – 1199px
   Desktop : 1200px+
──────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --red:    #E31E24;
  --black:  #0D0D0D;
  --carbon: #1C1C1C;
  --card:   #222222;
  --white:  #F0F0F0;
  --pure:   #FFFFFF;
  --muted:  #888888;
  --border: #2a2a2a;
  --pad:    40px;
  --green:  #25D366;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); font-family: 'Inter', sans-serif; color: var(--white); line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }

/* ─── TYPOGRAPHY ─── */
.font-display { font-family: 'Barlow Condensed', sans-serif; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 12px; display: block; }
h1,h2,h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; }

/* ─── SITE NAV ─── */
.site-nav {
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: 44px; object-fit: contain; border-radius: 50%; }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--pure); letter-spacing: 2px; }
.nav-logo-text span { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link { display: inline-block; font-size: 13px; color: var(--muted); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-cta { background: var(--red); color: #fff; padding: 8px 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; border: none; white-space: nowrap; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }
.mobile-menu { display: none; background: var(--carbon); border-bottom: 1px solid var(--border); padding: 16px var(--pad); flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--white); padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ─── BUTTONS ─── */
.btn-primary { background: var(--red); color: #fff; padding: 14px 32px; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: none; display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.88; }
.btn-outline { border: 1px solid #444; color: var(--white); padding: 13px 32px; font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; background: transparent; display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s; }
.btn-outline:hover { border-color: #888; }
.btn-white { background: #fff; color: var(--red); padding: 14px 28px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }
.btn-ghost-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 13px 28px; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: border-color 0.2s; }
.btn-ghost-white:hover { border-color: #fff; }
.btn-wa { background: var(--green); color: #fff; padding: 14px 24px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; border: none; display: inline-flex; align-items: center; gap: 10px; width: 100%; justify-content: center; text-transform: uppercase; transition: opacity 0.2s; }
.btn-wa:hover { opacity: 0.9; }
.btn-call { background: transparent; border: 1px solid #444; color: var(--white); padding: 13px 24px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 10px; width: 100%; justify-content: center; text-transform: uppercase; transition: border-color 0.2s; }
.btn-call:hover { border-color: #888; }

/* ─── HERO ─── */
.hero {
  background: #0D0D0D;
  display: flex;
  flex-direction: row;
  min-height: 60vh;
  margin-left: 7.5vw;
  margin-right: 7.5vw;
}
.hero-content {
  flex: 0 0 50%;
  width: 50%;
  padding: 80px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-image {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vh;
}
.hero-image picture { display: block; }
.hero-image img { width: auto; height: auto; max-width: 100%; max-height: 70vh; display: block; margin: auto; object-position: center center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(227,30,36,0.1); border: 1px solid rgba(227,30,36,0.3); padding: 6px 14px; margin-bottom: 28px; }
.hero-badge span { font-size: 11px; letter-spacing: 3px; color: var(--red); text-transform: uppercase; font-weight: 600; }
.hero h1 { font-size: clamp(48px, 6vw, 96px); font-weight: 800; line-height: 0.95; color: var(--pure); margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 700; color: var(--pure); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-top: 4px; text-transform: uppercase; }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--carbon); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 32px; height: 32px; background: rgba(227,30,36,0.1); border: 1px solid rgba(227,30,36,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.trust-text { font-size: 13px; color: var(--white); font-weight: 500; }
.trust-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* ─── SECTIONS ─── */
.section { padding: 80px var(--pad); }
.section-dark { background: var(--black); }
.section-carbon { background: var(--carbon); }
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: 52px; color: var(--pure); line-height: 1; letter-spacing: -0.5px; }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }

/* ─── STEPS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.step-card { background: var(--card); padding: 32px 28px; border-top: 2px solid transparent; transition: border-color 0.2s; }
.step-card:hover { border-color: var(--red); }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 800; color: rgba(227,30,36,0.12); line-height: 1; margin-bottom: 12px; }
.step-icon { font-size: 24px; margin-bottom: 16px; }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--pure); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

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

.car-card { background: var(--card); overflow: hidden; position: relative; transition: transform 0.2s; }
.car-card:hover { transform: translateY(-2px); }
.car-card.is-sold { opacity: 0.75; }
.car-img-wrap { aspect-ratio: 16/10; overflow: hidden; background: #1a1a1a; position: relative; }
.car-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.car-card:hover .car-img-wrap img { transform: scale(1.03); }
.car-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#1a1a1a,#222); }
.car-img-placeholder span { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 3px; color: #444; text-transform: uppercase; }
.verified-badge { position: absolute; top: 10px; left: 10px; background: rgba(13,13,13,0.92); border: 1px solid rgba(227,30,36,0.4); padding: 3px 10px; font-size: 10px; font-weight: 600; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; }
.sold-banner { position: absolute; top: 14px; left: 14px; }
.sold-tag { background: var(--red); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 3px; padding: 5px 12px; text-transform: uppercase; }
.car-info { padding: 18px; }
.car-meta { display: flex; flex-direction: column; gap: 3px; margin-bottom: 8px; }
.car-meta-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.car-meta span { font-size: 11px; color: var(--muted); }
.car-meta .dot { color: #3a3a3a; }
.car-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--pure); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; line-height: 1.1; }
.car-variant { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.car-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.car-price { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--red); line-height: 1; }
.car-price-emi { font-size: 11px; color: var(--muted); margin-top: 2px; }
.car-wa-btn { background: var(--green); color: #fff; padding: 8px 14px; font-size: 12px; font-weight: 600; border: none; display: flex; align-items: center; gap: 5px; white-space: nowrap; transition: opacity 0.2s; }
.car-wa-btn:hover { opacity: 0.88; }
.car-sold-label { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.delivered-tag { font-size: 11px; color: #555; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.sold-section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 4px; color: #444; text-transform: uppercase; margin: 48px 0 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* ─── FILTER + SORT BAR ─── */
.filter-sort-bar { background: var(--carbon); border-bottom: 1px solid var(--border); padding: 16px var(--pad); }
.filter-sort-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.filter-sort-top h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; }
.sort-select { background: var(--card); border: 1px solid var(--border); color: var(--white); padding: 7px 14px; font-size: 12px; font-family: 'Inter', sans-serif; cursor: pointer; appearance: none; padding-right: 28px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.filter-chips-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-group-label { font-size: 11px; color: #555; letter-spacing: 1px; text-transform: uppercase; margin-right: 4px; }
.filter-chip { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 5px 14px; font-size: 12px; cursor: pointer; letter-spacing: 0.3px; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.filter-chip:hover { border-color: #666; color: var(--white); }
.filter-chip.active { border-color: var(--red); color: var(--white); background: rgba(227,30,36,0.1); }
.filter-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }
.results-count { font-size: 13px; color: var(--muted); }
.results-count strong { color: var(--white); }

/* ─── PAGE HERO SMALL ─── */
.page-hero-small { background: var(--carbon); padding: 48px var(--pad); border-bottom: 1px solid var(--border); }
.page-hero-small h1 { font-size: 48px; color: var(--pure); letter-spacing: -0.5px; margin-top: 6px; }
.page-hero-small p { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testimonial-card { background: var(--card); padding: 32px; }
.testi-quote { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 800; color: rgba(227,30,36,0.15); line-height: 0.8; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: #bbb; line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; background: rgba(227,30,36,0.15); border: 1px solid rgba(227,30,36,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--red); font-size: 16px; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testi-detail { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── CTA STRIP ─── */
.cta-strip { background: var(--red); padding: 64px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip h2 { font-size: 48px; color: #fff; line-height: 1; letter-spacing: -0.5px; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 8px; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.site-footer { background: #080808; border-top: 1px solid var(--border); padding: 48px var(--pad) 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo-img { height: 72px; width: 72px; object-fit: contain; border-radius: 50%; margin-bottom: 10px; }
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--pure); letter-spacing: 2px; margin-bottom: 12px; }
.footer-logo-text span { color: var(--red); }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 3px; color: #555; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: #666; margin-bottom: 8px; line-height: 1.5; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: #444; }

/* ─── WHATSAPP STICKY ─── */
.wa-sticky { position: fixed; bottom: 24px; right: 24px; background: var(--green); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: transform 0.2s; }
.wa-sticky:hover { transform: scale(1.08); }
.wa-sticky svg { width: 28px; height: 28px; fill: white; }

/* ─── CAR DETAIL PAGE ─── */
.breadcrumb-bar { background: var(--carbon); padding: 12px var(--pad); border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { font-size: 12px; color: #333; }
.detail-layout { display: grid; grid-template-columns: 1fr 380px; background: var(--black); min-height: 80vh; }
.detail-gallery { padding: 40px 40px 0 40px; border-right: 1px solid var(--border); }
.detail-left { padding: 24px 40px 40px 40px; border-right: 1px solid var(--border); }
.detail-sidebar { padding: 32px; background: var(--carbon); position: sticky; top: 64px; align-self: start; max-height: calc(100vh - 64px); overflow-y: auto; grid-row: 1 / 3; grid-column: 2; }
.gallery-main { aspect-ratio: 16/10; overflow: hidden; background: #1a1a1a; margin-bottom: 8px; position: relative; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gallery-main-placeholder span { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 3px; color: #333; text-transform: uppercase; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-bottom: 40px; }
.gallery-thumb { aspect-ratio: 1/1; overflow: hidden; background: #1a1a1a; border: 1px solid var(--border); cursor: pointer; transition: border-color 0.15s; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-specs { margin-bottom: 40px; }
.detail-specs h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--pure); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; }
.spec-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.spec-label { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.spec-value { font-size: 15px; color: var(--white); font-weight: 500; }
.sidebar-make { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 6px; }
.sidebar-car-name { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--pure); text-transform: uppercase; line-height: 1; letter-spacing: -0.5px; margin-bottom: 4px; }
.sidebar-variant { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.price-block { background: var(--black); padding: 20px; margin-bottom: 20px; border-left: 3px solid var(--red); }
.price-label { font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.price-value { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 700; color: var(--red); line-height: 1; letter-spacing: -1px; }
.price-emi { font-size: 12px; color: var(--muted); margin-top: 6px; }
.price-emi span { color: var(--white); }
.price-sold { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--muted); letter-spacing: 4px; text-transform: uppercase; }
.trust-checklist { margin-bottom: 24px; }
.trust-check-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: #bbb; }
.check-icon { color: var(--red); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.sidebar-note { font-size: 11px; color: #444; text-align: center; line-height: 1.7; margin-top: 12px; }
.cta-gap { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ─── LIGHTBOX ─── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 32px; color: #fff; cursor: pointer; background: none; border: none; font-family: 'Barlow Condensed', sans-serif; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 28px; padding: 12px 16px; cursor: pointer; transition: background 0.2s; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

@media (min-width: 855px) and (max-width: 1199px) {
  .trust-bar { flex-wrap: nowrap; gap: 8px; padding: 14px var(--pad); }
  .trust-divider { display: none; }
  .trust-item { gap: 6px; }
  .trust-icon { width: 26px; height: 26px; font-size: 12px; }
  .trust-text { font-size: 11px; }
}

/* ═══════════════════════════════════════════
   TABLET: 768px – 1199px
═══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1199px) {
  :root { --pad: 28px; }

  .hero { min-height: 72vh; }
  .hero-content { flex: 0 0 50%; width: 50%; padding: 48px var(--pad); }
  .hero-image { flex: 0 0 50%; width: 50%; }
  .hero-stats { gap: 32px; }
  .stat-num { font-size: 34px; }

  .trust-divider { display: none; }
  .trust-item { flex: 1 1 calc(33% - 8px); }
  .trust-text { font-size: 12px; }

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

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

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

  .cta-strip { flex-direction: column; align-items: flex-start; padding: 48px var(--pad); gap: 24px; }
  .cta-strip h2 { font-size: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .detail-layout { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .detail-gallery { border-right: none; padding: 20px var(--pad) 0; order: 1; }
  .detail-sidebar { position: static; max-height: none; padding: 28px var(--pad); order: 2; grid-row: auto; grid-column: auto; }
  .detail-left { border-right: none; border-bottom: none; padding: 20px var(--pad) 28px; order: 3; }
  .gallery-thumbs { grid-template-columns: repeat(6, 1fr); }

  .section { padding: 60px var(--pad); }
  .section-header h2 { font-size: 40px; }
}

/* ═══════════════════════════════════════════
   MOBILE: 0 – 767px
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --pad: 16px; }

  .site-nav { padding: 0 var(--pad); height: 56px; }
  .nav-logo img { height: 36px; width: 36px; }
  .nav-logo-text { font-size: 18px; }
  .nav-link { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { padding: 6px 12px; font-size: 12px; }

  .hero { flex-direction: column; min-height: auto; }
  .hero-content { flex: none; width: 100%; padding: 48px var(--pad) 40px; }
  .hero-image { display: none; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero p { font-size: 14px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { justify-content: center; width: 100%; }
  .hero-stats { gap: 20px; margin-top: 36px; padding-top: 28px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10px; }

  .trust-bar { padding: 14px var(--pad); }
  .trust-divider { display: none; }
  .trust-item { flex: 1 1 calc(50% - 8px); }
  .trust-text { font-size: 11px; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-card { padding: 24px var(--pad); }

  .section { padding: 48px var(--pad); }
  .section-header h2 { font-size: 32px; }
  .section-header-flex { flex-direction: column; align-items: flex-start; }

  .cars-grid-3 { grid-template-columns: 1fr; }
  .cars-grid-4 { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px var(--pad); }

  .cta-strip { flex-direction: column; align-items: flex-start; padding: 40px var(--pad); gap: 20px; }
  .cta-strip h2 { font-size: 28px; }
  .cta-strip-actions { flex-direction: column; width: 100%; }
  .cta-strip-actions .btn-white, .cta-strip-actions .btn-ghost-white { width: 100%; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-footer { padding: 40px var(--pad) 20px; }

  .wa-sticky { width: 50px; height: 50px; bottom: 16px; right: 16px; }

  .page-hero-small { padding: 32px var(--pad); }
  .page-hero-small h1 { font-size: 32px; }

  .filter-sort-bar { padding: 12px var(--pad); }
  .filter-chips-row { gap: 6px; }
  .filter-chip { padding: 5px 10px; font-size: 11px; }
  .filter-divider { display: none; }

  .detail-layout { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .detail-gallery { border-right: none; padding: 16px var(--pad) 0; order: 1; }
  .detail-sidebar { position: static; max-height: none; padding: 20px var(--pad); order: 2; grid-row: auto; grid-column: auto; background: var(--carbon); width: 100%; box-sizing: border-box; }
  .detail-left { border-right: none; border-bottom: none; padding: 16px var(--pad) 20px; order: 3; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .specs-grid { grid-template-columns: 1fr; }
  .sidebar-car-name { font-size: 28px; }
  .price-value { font-size: 36px; }
  .breadcrumb-bar { padding: 10px var(--pad); }
}