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

:root {
  --primary: #084876;
  --primary-dark: #00263d;
  --primary-light: #0082f3;
  --accent: #3898ec;
  --accent-hover: #0082f3;
  --cornflower: #99ccec;
  --text: #080a0c;
  --text-light: #525354;
  --bg: #ffffff;
  --bg-light: #f2f2f2;
  --border: #d9dada;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Wix Madefor Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }

/* ── NAV ── */
.nav {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links .btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}

.nav-links .btn-nav:hover { background: var(--accent-hover); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 11px;
  transition: transform 0.3s, opacity 0.2s;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  background: var(--primary-dark);
  color: #fff;
  padding: 3.5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-points li {
  font-size: 0.95rem;
  opacity: 0.85;
  padding-left: 1.6rem;
  position: relative;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--cornflower);
  border-right: 2px solid var(--cornflower);
  transform: rotate(45deg) translateY(-2px);
}

/* ── QUOTE FORM ── */
.quote-form-card {
  background: #fff;
  border-radius: 3px;
  padding: 2rem;
  color: var(--text);
  border-top: 4px solid var(--accent);
}

.quote-form-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

.quote-form-card .subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

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

.form-grid label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.25rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.2s;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.btn-submit:hover { background: var(--accent-hover); }

/* ── SERVICES STRIP ── */
.services-strip {
  padding: 3rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.services-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-strip h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.services-strip-inner > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.service-card {
  padding: 1.5rem 1.5rem;
  text-align: left;
  border-left: 1px solid var(--border);
}

.service-card:first-child { border-left: none; }

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: block;
}

.service-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── IN STOCK ── */
.in-stock {
  padding: 3rem 1.5rem;
}

.in-stock-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.in-stock-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.in-stock-header h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.view-all:hover { color: var(--accent-hover); }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 3rem 1.5rem;
  background: var(--bg-light);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.process-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 0 1.5rem;
  counter-increment: step;
  border-left: 1px solid var(--border);
}

.step:first-child { border-left: none; padding-left: 0; }

.step-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cornflower);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--primary-dark);
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.btn-cta:hover { background: var(--accent-hover); color: #fff; }

/* ── VEHICLES PAGE ── */
.page-header {
  background: var(--primary-dark);
  color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
}

.page-header h1 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.page-header p { opacity: 0.85; font-size: 1rem; }

.vehicles-section {
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
  font-weight: 500;
}

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

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vehicle-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  color: inherit;
  text-decoration: none;
  background: #fff;
}

.vehicle-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.vehicle-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--bg-light);
}

.vehicle-info {
  padding: 1.2rem;
}

.vehicle-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.badge-available { background: #e8f5e9; color: #2e7d32; }
.badge-sold { background: #fce4ec; color: #c62828; }
.badge-new { background: #e3f2fd; color: #1565c0; }

.vehicle-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.vehicle-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.vehicle-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.vehicle-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ── ABOUT PAGE ── */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.about-content h2 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  margin-top: 2rem;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
}

.about-value {
  padding: 1.5rem;
  text-align: left;
  border-left: 1px solid var(--border);
}

.about-value:first-child { border-left: none; }

.about-value-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: block;
}

.about-value h3 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--primary-dark); }
.about-value p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ── CONTACT PAGE ── */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}

.contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.contact-form-section h2 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* ── VEHICLE DETAIL PAGE ── */
.detail-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.detail-back:hover { color: var(--primary); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-summary h1 {
  font-size: 1.7rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.detail-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.detail-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 1rem 0 1.5rem;
}

.detail-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.detail-actions .btn-primary,
.detail-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
}

.detail-actions .btn-primary {
  background: var(--accent);
  color: #fff;
}

.detail-actions .btn-primary:hover { background: var(--accent-hover); }

.detail-actions .btn-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.detail-actions .btn-secondary:hover { border-color: var(--primary-dark); }

.detail-section {
  margin-top: 2.5rem;
}

.detail-section h2 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.detail-section p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.spec-label { color: var(--text-light); }
.spec-value { color: var(--text); font-weight: 500; }

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  list-style: none;
}

.features-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── FOOTER ── */
.footer {
  background: #001e30;
  color: #fff;
  padding: 3rem 1.5rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.logo-footer-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: #fff;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--accent); }

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--cornflower);
}

.footer-contact-list a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-contact-list a:hover { color: #fff; }

.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-hours strong {
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #fff; }

.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-left: none; border-top: 1px solid var(--border); }
  .service-card:nth-child(-n+2) { border-top: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
  .step:nth-child(-n+2) { border-top: none; margin-top: 0; padding-top: 0; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-value { border-left: none; border-top: 1px solid var(--border); }
  .about-value:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  /* ── Mobile nav ── */
  .nav-links {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, visibility 0s 0.4s;
  }

  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    padding: 0.5rem 0;
    visibility: visible;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, visibility 0s;
  }

  .menu-toggle { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-links .btn-nav {
    margin: 0.8rem 1.5rem 1rem;
    text-align: center;
    padding: 0.9rem;
    border-radius: var(--radius);
    font-size: 1rem;
  }

  /* ── Mobile hero ── */
  .hero { padding: 1.8rem 1.2rem 2.2rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.95rem; margin-bottom: 1.2rem; }
  .hero-points { gap: 0.5rem; margin-bottom: 0.5rem; }
  .hero-points li { font-size: 0.9rem; }

  .quote-form-card { padding: 1.5rem 1.2rem; }
  .quote-form-card h2 { font-size: 1.2rem; }
  .form-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .form-grid input,
  .form-grid select,
  .form-grid textarea { padding: 0.75rem 0.8rem; font-size: 16px; }
  .btn-submit { padding: 0.95rem; font-size: 1.05rem; }

  /* ── Mobile sections ── */
  .services-strip { padding: 2rem 1.2rem; }
  .services-strip h2 { font-size: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-left: none; border-top: 1px solid var(--border); padding: 1.2rem 0; }
  .service-card:first-child { border-top: none; }

  .in-stock { padding: 2rem 1.2rem; }
  .in-stock-header { flex-direction: column; gap: 0.3rem; }
  .in-stock-header h2 { font-size: 1.25rem; }
  .vehicles-grid { grid-template-columns: 1fr; gap: 1rem; }

  .how-it-works { padding: 2rem 1.2rem; }
  .how-it-works h2 { font-size: 1.25rem; margin-bottom: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
  .step:first-child { border-top: none; margin-top: 0; padding-top: 0; }

  .cta-banner { padding: 2rem 1.2rem; }
  .cta-banner h2 { font-size: 1.3rem; }
  .btn-cta { width: 100%; text-align: center; padding: 0.9rem; }

  /* ── Mobile page header ── */
  .page-header { padding: 1.5rem 1.2rem; }
  .page-header h1 { font-size: 1.5rem; }
  .page-header p { font-size: 0.9rem; }

  /* ── Mobile vehicles ── */
  .vehicles-section { padding: 1.5rem 1.2rem; }
  .filter-bar { gap: 0.4rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.85rem; }

  /* ── Mobile vehicle detail ── */
  .detail-wrap { padding: 1.5rem 1.2rem; }
  .detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .detail-summary h1 { font-size: 1.4rem; }
  .detail-price { font-size: 1.5rem; }
  .specs-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }

  /* ── Mobile about ── */
  .about-content { padding: 2rem 1.2rem; }

  /* ── Mobile contact ── */
  .contact-grid { padding: 2rem 1.2rem; gap: 2rem; }
  .contact-form input,
  .contact-form textarea { padding: 0.75rem 0.8rem; font-size: 16px; }

  /* ── Mobile footer ── */
  .footer { padding: 2rem 1.2rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-desc { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}
