/* ============================================
   D LINE'S AUTO SPOT — SHARED STYLES
   Extracted from design system v1
   ============================================ */

/* — Design Tokens — */
:root {
  --ink:        #0A0A0B;
  --carbon:     #141416;
  --graphite:   #1F1F23;
  --steel:      #2A2A30;
  --asphalt:    #3A3A42;
  --chrome:     #8A8A93;
  --silver:     #C8C8CE;
  --paper:      #F2F2F4;
  --white:      #FFFFFF;

  --orange-50:  #FFF1E6;
  --orange-200: #FFC9A0;
  --orange-400: #FF8A3D;
  --orange-500: #FF6A13;
  --orange-600: #E55400;
  --orange-700: #B83F00;
  --orange-900: #4A1900;

  --success: #22C55E;
  --warn:    #F59E0B;
  --danger:  #EF4444;

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-heading: 'Rajdhani', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;

  --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
  --shadow-md:   0 8px 24px rgba(0,0,0,.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.6);
  --shadow-glow: 0 0 32px rgba(255,106,19,.35);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 500ms;
}

/* ============================================
   RESET / BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255,106,19,.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(255,106,19,.04) 0%, transparent 40%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-400); text-decoration: none; }
a:hover { color: var(--orange-200); }
ul, ol { list-style: none; }

/* ============================================
   LAYOUT
   ============================================ */
.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,11,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel);
}
.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.wordmark img {
  height: 48px;
  width: auto;
}
.wordmark-footer img {
  height: 56px;
  width: auto;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.nav-desktop a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--orange-400);
}
.nav-desktop .nav-btns {
  display: flex;
  gap: var(--s-2);
  margin-left: var(--s-3);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: var(--r-sm);
}
.btn i { width: 18px; height: 18px; }
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 34px;
}
.btn-primary:hover {
  background: var(--orange-400);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--steel);
}
.btn-secondary:hover {
  border-color: var(--orange-500);
  color: var(--orange-400);
}
.btn-ghost {
  background: transparent;
  color: var(--orange-400);
  padding: 10px 0;
  border-bottom: 1px solid var(--orange-500);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--orange-200); border-color: var(--orange-200); }
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}
.btn-sm.btn-primary {
  padding-right: 26px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  position: absolute;
  left: 8px;
  transition: all var(--dur-base) var(--ease-out);
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,10,11,.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  color: var(--paper);
  transition: color var(--dur-fast);
}
.mobile-nav a:hover { color: var(--orange-400); }
.mobile-nav .mobile-nav-btns {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  height: 64px;
  background: var(--carbon);
  border-top: 1px solid var(--steel);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bottom-bar .bar-inner {
  display: flex;
  height: 100%;
}
.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background var(--dur-fast);
}
.mobile-bottom-bar .bar-call {
  background: var(--orange-500);
  color: var(--white);
}
.mobile-bottom-bar .bar-call:hover { background: var(--orange-400); }
.mobile-bottom-bar .bar-text {
  background: transparent;
  color: var(--orange-500);
  border-left: 1px solid var(--steel);
}
.mobile-bottom-bar .bar-text:hover { background: var(--graphite); }

@media (max-width: 767px) {
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 64px; }
  .nav-desktop { display: none; }
  .hamburger { display: block; }
}
@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: var(--s-10);
  border-top: none;
  position: relative;
}
.footer-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange-500) 0 40px,
    var(--ink) 40px 50px,
    var(--orange-500) 50px 54px,
    var(--ink) 54px 70px
  );
}
.footer-body {
  padding: var(--s-7) 0 var(--s-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-7);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
  margin-bottom: var(--s-3);
}
.footer-col p, .footer-col a {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}
.footer-col a:hover { color: var(--orange-400); }
.footer-tagline {
  color: var(--chrome);
  font-size: 14px;
  margin-top: var(--s-3);
  max-width: 360px;
}
.footer-hours {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--silver);
  line-height: 2;
}
.footer-bottom {
  border-top: 1px solid var(--steel);
  padding: var(--s-4) 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
}
.footer-bottom a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--steel);
  text-underline-offset: 3px;
}
.footer-bottom a:hover {
  color: var(--orange-400);
  text-decoration-color: var(--orange-400);
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}

/* ============================================
   PAGE HERO (compact, used on inner pages)
   ============================================ */
.page-hero {
  padding: var(--s-9) 0 var(--s-7);
}
.page-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-500);
  margin-bottom: var(--s-3);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s-4);
}
.page-hero .sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--chrome);
  max-width: 540px;
}

/* ============================================
   FULL HERO (home page)
   ============================================ */
.hero-full {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--s-9) 0;
  background:
    linear-gradient(135deg, var(--carbon) 0%, var(--ink) 60%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,106,19,.02) 20px 21px);
}
.hero-full::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent 40%, var(--orange-500) 40% 44%, transparent 44%);
  opacity: 0.6;
}
.hero-full::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4'><circle cx='1' cy='1' r='.5' fill='%23ffffff' opacity='.03'/></svg>");
  pointer-events: none;
}
.hero-full .shell {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.hero-eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--orange-500);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s-5);
  max-width: 800px;
}
.hero-title .accent {
  color: var(--orange-500);
  font-style: italic;
}
.hero-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--chrome);
  margin-bottom: var(--s-6);
  max-width: 540px;
}
.hero-cta-row {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: var(--asphalt);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: scrollBounce 2s var(--ease-in-out) infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION PATTERNS
   ============================================ */
.section-pad {
  padding: var(--s-9) 0;
}
.section-pad-sm {
  padding: var(--s-7) 0;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-500);
  margin-bottom: var(--s-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s-4);
}
.section-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  color: var(--chrome);
  max-width: 540px;
  margin-bottom: var(--s-6);
}
.racing-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange-500) 0 40px,
    var(--ink) 40px 50px,
    var(--orange-500) 50px 54px,
    var(--ink) 54px 70px
  );
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  padding: var(--s-5);
  transition: all var(--dur-base) var(--ease-out);
}
.card:hover {
  border-color: var(--asphalt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  color: var(--orange-500);
  margin-bottom: var(--s-4);
}
.card-icon i { width: 36px; height: 36px; }
.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: var(--s-2);
}
.card-desc {
  font-size: 14px;
  color: var(--chrome);
  margin-bottom: var(--s-4);
}
.card-link {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-500);
  transition: color var(--dur-fast);
}
.card-link:hover { color: var(--orange-200); }

/* Service card with top bar */
.service-card {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  padding: var(--s-6);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--asphalt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   GRIDS
   ============================================ */
.grid { display: grid; gap: var(--s-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ba-pair {
  display: flex;
  gap: 2px;
  position: relative;
}
.ba-pair .ba-img {
  flex: 1;
  aspect-ratio: 4/3;
  background: var(--graphite);
  border: 1px solid var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
}
.ba-pair .ba-divider {
  width: 2px;
  background: var(--orange-500);
  flex-shrink: 0;
}
.ba-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome);
  margin-top: var(--s-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   VALUE PROPS
   ============================================ */
.value-prop {
  border-left: 3px solid var(--orange-500);
  padding-left: var(--s-5);
}
.value-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-500);
  letter-spacing: 0.2em;
  margin-bottom: var(--s-2);
}
.value-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s-2);
}
.value-text {
  font-size: 14px;
  color: var(--chrome);
  line-height: 1.65;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-large {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-7) 0;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--orange-500);
  line-height: 0.5;
  margin-bottom: var(--s-4);
}
.testimonial-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--paper);
  line-height: 1.4;
  margin-bottom: var(--s-4);
}
.testimonial-attr {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
}
.testimonial-card {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  padding: var(--s-5);
}
.testimonial-card .tq-mark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange-500);
  line-height: 0.5;
  margin-bottom: var(--s-3);
}
.testimonial-card .tq-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--paper);
  line-height: 1.5;
  margin-bottom: var(--s-3);
}
.testimonial-card .tq-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--s-9) 0;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent 40%, var(--orange-500) 40% 44%, transparent 44%);
  opacity: 0.15;
}
.cta-section .shell { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s-3);
}
.cta-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--chrome);
  margin-bottom: var(--s-6);
}
.cta-btns {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   IMAGE PLACEHOLDER
   ============================================ */
.img-placeholder {
  background: var(--graphite);
  border: 1px solid var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chrome);
  border-radius: var(--r-md);
  overflow: hidden;
}
.img-placeholder.ratio-4-3 { aspect-ratio: 4/3; }
.img-placeholder.ratio-16-9 { aspect-ratio: 16/9; }
.img-placeholder.ratio-1-1 { aspect-ratio: 1/1; }
.img-placeholder.ratio-3-4 { aspect-ratio: 3/4; }

/* ============================================
   FILTER CHIPS
   ============================================ */
.filter-chips {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.chip {
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--r-pill);
  border: 1px solid var(--steel);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.chip:hover, .chip.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
}

/* ============================================
   MASONRY GALLERY
   ============================================ */
.masonry {
  columns: 3;
  column-gap: var(--s-4);
}
.masonry > * {
  break-inside: avoid;
  margin-bottom: var(--s-4);
}
@media (max-width: 900px) {
  .masonry { columns: 2; }
}
@media (max-width: 540px) {
  .masonry { columns: 1; }
}

/* ============================================
   ABOUT SPLIT
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 767px) {
  .about-split { grid-template-columns: 1fr; }
}
.about-text p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--s-4);
}

/* Stats row */
.stats-row {
  display: flex;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.stat-item {
  border-left: 3px solid var(--orange-500);
  padding-left: var(--s-4);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  text-transform: uppercase;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
}

/* Process steps */
.process-step {
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
  margin-bottom: var(--s-6);
}
.process-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  white-space: nowrap;
  min-width: 50px;
}
.process-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s-1);
}
.process-text {
  font-size: 14px;
  color: var(--chrome);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--steel);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--paper);
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--orange-400); }
.faq-question .faq-icon {
  font-size: 24px;
  color: var(--orange-500);
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
  margin-left: var(--s-4);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 var(--s-5);
  font-size: 15px;
  color: var(--chrome);
  line-height: 1.7;
  max-width: 640px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
}
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-method {
  margin-bottom: var(--s-6);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-500);
  margin-bottom: var(--s-2);
}
.contact-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}
.contact-value:hover { color: var(--orange-400); }
.contact-value-sm {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--paper);
  line-height: 1.6;
}
.contact-hours {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--silver);
  line-height: 2;
}

/* Form card */
.form-card {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  padding: var(--s-6);
}
.form-group { margin-bottom: var(--s-4); }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
  margin-bottom: var(--s-2);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--graphite);
  border: 1px solid var(--steel);
  color: var(--paper);
  padding: 14px var(--s-4);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--ink);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--asphalt); }
.form-select {
  appearance: none;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--asphalt);
  margin-top: var(--s-3);
}

/* Map placeholder */
.map-placeholder {
  background: var(--graphite);
  border: 1px solid var(--steel);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
}

/* ============================================
   VEHICLE TYPE BAND
   ============================================ */
.vehicle-band {
  background: var(--carbon);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  padding: var(--s-7) 0;
}
.vehicle-types {
  display: flex;
  justify-content: center;
  gap: var(--s-9);
}
.vehicle-type {
  text-align: center;
  color: var(--chrome);
}
.vehicle-type i {
  width: 48px;
  height: 48px;
  color: var(--orange-500);
  margin-bottom: var(--s-3);
}
.vehicle-type span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (max-width: 540px) {
  .vehicle-types { gap: var(--s-7); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-indicator { animation: none; }
  .btn-primary:hover { transform: none; }
  .card:hover { transform: none; }
  .service-card:hover { transform: none; }
}

/* ============================================
   UTILITY
   ============================================ */
/* ============================================
   STICKY SECTION TABS
   ============================================ */
.section-tabs {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(10,10,11,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel);
  padding: var(--s-4) 0;
}
.section-tabs .shell {
  display: flex;
  gap: var(--s-3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.section-tabs .shell::-webkit-scrollbar { display: none; }
.section-tab {
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--r-pill);
  border: 1px solid var(--steel);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.section-tab:hover {
  border-color: var(--orange-500);
  color: var(--orange-400);
}
.section-tab.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
}

/* ============================================
   PRICE CARDS
   ============================================ */
.price-card {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  padding: var(--s-6);
  position: relative;
  transition: all var(--dur-base) var(--ease-out);
}
.price-card:hover {
  border-color: var(--asphalt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--orange-500);
  background: linear-gradient(180deg, rgba(255,106,19,.04), var(--carbon) 30%);
}
.price-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: -10px; right: var(--s-5);
  background: var(--orange-500);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  letter-spacing: 0.15em;
  border-radius: var(--r-sm);
}
.price-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--orange-500);
  letter-spacing: 0.15em;
  margin-bottom: var(--s-3);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--white);
  line-height: 1;
}
.price-amount .currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--chrome);
}
.price-amount-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: var(--s-2);
}
.price-features {
  list-style: none;
  margin: var(--s-5) 0;
  border-top: 1px solid var(--steel);
  padding-top: var(--s-4);
}
.price-features li {
  padding: var(--s-2) 0;
  font-size: 14px;
  color: var(--paper);
  display: flex;
  gap: var(--s-2);
  align-items: center;
}
.price-features li::before {
  content: '▸';
  color: var(--orange-500);
  font-size: 12px;
}

/* ============================================
   PRICING TEASER (homepage)
   ============================================ */
.pricing-teaser {
  position: relative;
  overflow: hidden;
  background: var(--carbon);
}
.pricing-teaser-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange-500) 0 40px,
    var(--ink) 40px 50px,
    var(--orange-500) 50px 54px,
    var(--ink) 54px 70px
  );
}
.pricing-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  padding: var(--s-9) 0;
}
.pricing-teaser-tiers {
  display: flex;
  gap: var(--s-3);
}
.pricing-teaser-tier {
  flex: 1;
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-4);
  text-align: center;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.pricing-teaser-tier:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-teaser-tier--featured {
  border-color: var(--orange-500);
  background: linear-gradient(180deg, rgba(255,106,19,.08), var(--graphite) 40%);
}
.pricing-teaser-tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 3px 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.pricing-teaser-tier-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange-500);
  margin-bottom: var(--s-2);
}
.pricing-teaser-tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--s-1);
}
.pricing-teaser-tier-note {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chrome);
}
@media (max-width: 900px) {
  .pricing-teaser-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pricing-teaser-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-teaser-content .btn {
    margin: 0 auto;
  }
}
@media (max-width: 540px) {
  .pricing-teaser-tiers {
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
  }
  .pricing-teaser-tier-price {
    font-size: 32px;
  }
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table-wrap {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
  padding: var(--s-3) var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--steel);
  background: var(--graphite);
}
.pricing-table th:not(:first-child) {
  text-align: right;
}
.pricing-table td {
  padding: var(--s-3) var(--s-4);
  font-size: 14px;
  color: var(--paper);
  border-bottom: 1px solid rgba(42,42,48,.5);
  vertical-align: middle;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table .price-cell {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange-500);
  white-space: nowrap;
}
.pricing-table .pricing-table-total td {
  background: rgba(255,106,19,.08);
  border-top: 2px solid var(--orange-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
}
.pricing-table .pricing-table-total .price-cell {
  font-size: 22px;
}
.pricing-table-icon {
  width: 16px;
  height: 16px;
  color: var(--orange-500);
  vertical-align: middle;
  margin-right: var(--s-2);
}

/* Express includes strip */
.express-includes {
  padding: var(--s-4) var(--s-5);
  border-top: 1px solid var(--steel);
  background: var(--graphite);
}
.express-includes-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange-500);
  margin-bottom: var(--s-3);
}
.express-includes-items {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.express-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-1);
  text-align: center;
}
.express-item i {
  width: 24px;
  height: 24px;
  color: var(--orange-500);
}
.express-item span {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chrome);
}

/* Price card dual pricing (sedan / SUV) */
.price-tier-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
  margin-bottom: var(--s-2);
}
.price-dual {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.price-dual-col {
  display: flex;
  flex-direction: column;
}
.price-dual-type {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
}
.price-dual-amount {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}
.price-dual-divider {
  width: 2px;
  height: 48px;
  background: var(--orange-500);
  flex-shrink: 0;
}
.price-includes-note {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange-400);
  font-style: italic;
  margin-bottom: var(--s-2);
}
.price-period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome);
  margin-top: var(--s-1);
}

/* Trust badges band */
.trust-band {
  background: var(--carbon);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  padding: var(--s-6) 0;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  text-align: center;
  max-width: 160px;
}
.trust-badge i {
  width: 32px;
  height: 32px;
  color: var(--orange-500);
}
.trust-badge span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
  line-height: 1.4;
}

/* Pricing disclaimer */
.pricing-disclaimer {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--asphalt);
  text-align: center;
  margin-top: var(--s-6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 540px) {
  .trust-badges { gap: var(--s-5); }
  .trust-badge { flex-direction: row; max-width: none; text-align: left; }
  .express-includes-items { gap: var(--s-4); }
  .price-dual-amount { font-size: 32px; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.full-width { width: 100%; }
