/* ============================================
   MILES OIL CHANGE THEME
   Mobile-first, clean, light
   Optimized for 375px base
   ============================================ */

:root {
  /* Primary colors */
  --yellow: #FFC400;
  --yellow-hover: #e6b000;
  --yellow-soft: #FFF3D0;
  --gold: #E7B100;
  --gold-dark: #B8860B;

  /* Ink and neutrals */
  --ink: #141310;
  --black: #1a1a1a;
  --gray-800: #333;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-200: #e0e0e0;
  --gray-100: #f5f5f5;
  --white: #fff;

  /* Semantic colors */
  --bg: #FBFAF7;
  --bg-art-circle-1: #FFF3D0;
  --bg-art-circle-2: #F6F4EE;
  --bg-art-circle-3: #FFF6DA;
  --bg-art-wave: #F4F2EB;
  --bone: #F5F2EA;
  --text: #1A1917;
  --text-muted: #7A756C;
  --text-dark-bg: #EDE9E1;
  --border: #ECEAE4;

  /* CTA band colors */
  --cta-gradient-start: #FFD84D;
  --cta-gradient-end: #F5B400;
  --cta-circle-1: #FFDD66;
  --cta-circle-2: #F0AE00;
  --cta-circle-3: #FFE07A;
  --cta-wave-1: #F0AE00;
  --cta-wave-2: #E9A400;
  --cta-text: #3D2E00;
  --cta-eyebrow: #5C4A08;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing and layout */
  --header-height: 60px;
  --max-width: 1000px;
  --padding: 20px;
  --section-padding: 48px;
  --card-radius: 16px;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  --card-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Hand-drawn highlighter effect */
.highlight {
  position: relative;
  display: inline;
}

.highlight-stroke {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.2em;
  transform: translateY(-45%) rotate(-2.5deg);
  z-index: -1;
  pointer-events: none;
  overflow: visible;
}

.highlight-stroke .stroke-1 {
  fill: none;
  stroke: rgba(255, 196, 0, 0.25);
  stroke-width: 28;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-stroke .stroke-2 {
  fill: none;
  stroke: rgba(255, 196, 0, 0.25);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
}

h1 { font-size: 32px; }
h2 { font-size: 22px; margin-bottom: 16px; }
h3 { font-size: 18px; margin-bottom: 8px; }

p { margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover { background: var(--yellow-hover); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover { background: var(--gray-800); }

.btn-lg {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-400);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--black);
  border-color: var(--black);
}

/* ============================================
   HEADER - Mobile: logo left, hamburger right
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--black);
  border-bottom: 1px solid var(--gray-800);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 108px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Mobile nav - slide down menu */
.nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  padding: 16px 0;
  overflow-y: auto;
}

.nav.open { display: block; }

.nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 var(--padding);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.nav a:hover,
.nav a:active {
  color: var(--white);
  background: var(--gray-800);
}

/* Book button inside mobile menu */
.nav .nav-book {
  display: block;
  margin: 24px var(--padding) 16px;
}

.nav .nav-book .btn {
  width: 100%;
}

/* Phone in mobile menu */
.nav .nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 16px;
  color: var(--white);
  border-top: 1px solid var(--gray-800);
  margin-top: 16px;
  padding-top: 16px;
}

/* Hide header-right on mobile */
.header-right { display: none; }

.phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.phone:hover { color: var(--yellow); }

/* Hamburger button */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO - Direct Brakes style (mobile: image top, card overlaps)
   ============================================ */

.hero {
  position: relative;
  padding: calc(var(--header-height)) 0 0;
  background: #FBFAF7;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

/* Mobile: image first, full width */
.hero-image {
  width: 100%;
  position: relative;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.hero-smiley {
  display: none;
}

.hero-image .placeholder {
  aspect-ratio: 4/3;
  border-radius: 0;
  border: none;
}

/* Mobile: white card overlaps up onto image */
.hero-content {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  padding: 28px var(--padding) 32px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.hero-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 196, 0, 0.15);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-proof {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-arrow {
  display: flex;
  gap: 8px;
}

.btn-arrow span {
  font-size: 18px;
}

.hero .btn {
  width: 100%;
}

.placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border: 1px dashed var(--gray-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.placeholder span {
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}

/* ============================================
   TRUST BAR (marquee)
   ============================================ */

.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  padding: 0;
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 40s linear infinite;
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

@keyframes trust-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-track span {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  white-space: nowrap;
  line-height: 1;
}

.trust-track span::after {
  content: '·';
  margin: 0 8px;
  color: var(--yellow);
}

/* ============================================
   SECTIONS - Mobile padding
   ============================================ */

section { padding: 48px 0; }

/* ============================================
   FEATURE ROWS - Mobile: image top, text bottom
   ============================================ */

.feature-row {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}

.feature-row-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.feature-row .container {
  position: relative;
  z-index: 1;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-image {
  order: 1;
  width: 100%;
}

.feature-text {
  order: 2;
}

.feature-text h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
}

.feature-image .placeholder {
  aspect-ratio: 4/3;
  border-radius: 8px;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   SERVICES - Cards stack on mobile
   ============================================ */

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.02);
}

.service-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 12px;
  color: var(--gray-600);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-icon-featured {
  background: rgba(255, 196, 0, 0.15);
  color: var(--black);
}

.service-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.service-content {
  margin-top: auto;
}

.service-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.service-content p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Legacy card styles (for homepage) */
.card {
  padding: 20px;
  background: var(--gray-100);
  border-radius: 8px;
}

.card-featured {
  background: var(--white);
  border: 2px solid var(--yellow);
}

.card h3 { color: var(--black); }
.card p { font-size: 15px; color: var(--gray-600); margin: 0; }

/* ============================================
   HOW IT WORKS - Card layout
   ============================================ */

.how-it-works { background: transparent; }

.how-it-works h2 {
  color: #1A1917;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.step {
  display: flex;
  flex-direction: column;
  background: #141310;
  border-radius: 16px;
  padding: 30px;
  min-height: 180px;
}

.step:last-child {
  background: #FFC400;
}

.step-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: #FFC400;
  margin-bottom: auto;
}

.step:last-child .step-num {
  color: #141310;
}

.step-text {
  margin-top: auto;
}

.step h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #F5F2EA;
  margin-bottom: 6px;
}

.step:last-child h3 {
  color: #141310;
}

.step p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: #A39E94;
  margin: 0;
  line-height: 1.5;
}

.step:last-child p {
  color: #5C4A08;
}

/* ============================================
   WHY MOBILE
   ============================================ */

.why-text p {
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   FLEET - Stack on mobile
   ============================================ */

.fleet { background: var(--gray-100); }

.fleet-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fleet-text h2 { margin-bottom: 8px; }
.fleet-text p { margin: 0; }

.fleet .btn { width: 100%; }

/* ============================================
   SERVICE AREA
   ============================================ */

.service-area p {
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   MAKES WE SERVICE (logo marquee)
   ============================================ */

.makes {
  background: var(--gray-100);
  overflow: hidden;
}

.makes h2 {
  text-align: center;
}

.makes-intro {
  font-size: 15px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 24px;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
}

.logo-placeholder {
  width: 64px;
  height: 40px;
  background: var(--white);
  border: 1px dashed var(--gray-200);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
}

/* ============================================
   REVIEWS - Stack on mobile
   ============================================ */

/* Reviews header */
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.reviews-header-left h2 {
  color: #1A1917;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 8px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-rating .stars {
  color: #FFC400;
  font-size: 16px;
  letter-spacing: 1px;
}

.reviews-rating span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
}

.reviews-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #FFFBEF;
  color: #B8860B;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #F2E4B8;
  border-radius: 20px;
  white-space: nowrap;
}

/* Review cards */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid #ECEAE4;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-card-dark {
  background: #141310;
  border-color: #141310;
}

.review-card .stars {
  color: #FFC400;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.6;
  margin: 0;
}

.review-card-dark p {
  color: #EDE9E1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #141310;
  color: #FFC400;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card-dark .review-avatar {
  background: #FFC400;
  color: #141310;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}

.review-card-dark .review-author-name {
  color: #EDE9E1;
}

.review-author-location {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--gray-500);
}

.review-card-dark .review-author-location {
  color: #A39E94;
}

/* ============================================
   FAQ
   ============================================ */

.faq { background: var(--gray-100); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  color: var(--gray-400);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 16px 16px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  position: relative;
  background: #FFC400;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.cta-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5C4A08;
  margin-bottom: 8px;
}

.cta-inner h2 {
  font-size: 28px;
  color: #141310;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 16px;
  color: #3D2E00;
  margin-bottom: 20px;
}

.cta .btn {
  width: 100%;
}

.cta .btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============================================
   FOOTER - Stack on mobile
   ============================================ */

.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 48px 0 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-800);
}

.footer-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-location { color: var(--gray-500); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 15px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-col a:hover { color: var(--white); }

.footer-col li {
  font-size: 15px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

.footer-bottom nav {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom a:hover { color: var(--gray-400); }

/* ============================================
   TABLET (640px+)
   ============================================ */

@media (min-width: 640px) {
  :root { --padding: 32px; }

  h1 { font-size: 40px; }
  h2 { font-size: 28px; }

  section { padding: 64px 0; }

  .trust-track span {
    font-size: 13px;
  }

  .trust-track span::after {
    margin: 0 12px;
  }

  /* Hero - side by side, reset mobile card */
  .hero {
    padding: calc(var(--header-height) + 48px) 0 48px;
    background: var(--white);
    overflow: visible;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
    padding: 0 var(--padding);
    overflow: visible;
  }

  .hero-content {
    order: -1;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
  }

  .hero-image {
    order: 0;
    display: flex;
    align-items: center;
    padding: 20px;
    margin: -20px;
    overflow: visible;
  }

  /* Smiley face accent overlapping image */
  .hero-smiley {
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -30px;
    z-index: 2;
  }

  /* Small oil drop accent */
  .hero-image::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 40px;
    background: #E7B100;
    opacity: 0.25;
    top: -16px;
    left: 24px;
    z-index: 0;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  }

  .hero-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
  }

  .hero-image .placeholder {
    border-radius: 16px;
    border: 1px dashed var(--gray-200);
  }

  .hero h1 { font-size: 40px; }

  .hero .btn {
    width: auto;
  }

  /* Feature rows - 50/50 split */
  .feature-row { padding: 80px 0; }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .feature-image { order: 0; }
  .feature-text { order: 0; }

  /* Alternate: image left, text right */
  .feature-row-alt .feature-image { order: -1; }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .btn { width: auto; }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    min-height: 220px;
    padding: 24px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 15px;
  }

  .steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .fleet-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .fleet .btn { width: auto; }

  .logo-placeholder {
    width: 100px;
    height: 56px;
    font-size: 13px;
  }

  .marquee-track {
    gap: 40px;
  }

  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .review-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

  .cta .btn { width: auto; }

  .cta-inner h2 { font-size: 36px; }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   DESKTOP (768px+)
   ============================================ */

@media (min-width: 768px) {
  :root { --header-height: 72px; }

  .logo img { height: 108px; }

  .nav {
    display: flex;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 24px;
    overflow: visible;
  }

  .nav a {
    display: inline;
    padding: 0;
    font-size: 14px;
    min-height: auto;
    color: var(--white);
  }

  .nav a:hover,
  .nav a:active {
    color: var(--yellow);
    background: none;
  }

  .nav .nav-book,
  .nav .nav-phone { display: none; }

  .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-right .btn {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 14px;
  }

  .menu-btn { display: none; }
}

/* ============================================
   LARGE (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  :root { --padding: 40px; }

  h1 { font-size: 48px; }

  section { padding: 80px 0; }

  .feature-row { padding: 100px 0; }

  .feature-grid { gap: 72px; }

  .feature-text h2 { font-size: 32px; }

  .feature-image .placeholder { aspect-ratio: 1/1; }

  .hero {
    padding: calc(var(--header-height) + 64px) 0 64px;
  }

  .hero .container {
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
  }

  .hero-image img {
    aspect-ratio: 3/2;
  }

  .hero-smiley {
    width: 120px;
    height: 120px;
    bottom: -35px;
    right: -35px;
  }

  .hero-image::after {
    width: 40px;
    height: 50px;
    top: -20px;
    left: 32px;
  }

  .hero h1 { font-size: 48px; }

  .hero-pill {
    margin-bottom: 16px;
  }

  .hero-proof {
    font-size: 17px;
  }

  .why-text {
    max-width: 700px;
  }

  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .logo-placeholder {
    width: 120px;
    height: 64px;
    font-size: 14px;
  }

  .marquee-track {
    gap: 56px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .marquee-track,
  .trust-track { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

::selection {
  background: var(--yellow);
  color: var(--black);
}
