/* ================================================================
   MT AUTO — styles.css
   Automotive / industrial aesthetic
   Bebas Neue display · Barlow body
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --bg:           #1A1D23;
  --bg-raised:    #20242C;
  --bg-card:      #252A34;
  --bg-card-alt:  #2C3140;
  --accent:       #E63946;
  --accent-dark:  #C0303C;
  --accent-glow:  rgba(230,57,70,.18);
  --amber:        #F4A30A;
  --amber-dim:    rgba(244,163,10,.12);
  --text:         #F0EDE8;
  --text-muted:   #8C95A6;
  --text-dim:     #5A6270;
  --border:       rgba(240,237,232,.07);
  --border-mid:   rgba(240,237,232,.13);
  --radius:       4px;
  --radius-lg:    8px;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --ease:         0.22s cubic-bezier(.4,0,.2,1);
  --ease-spring:  0.35s cubic-bezier(.34,1.4,.64,1);
  --nav-h:        68px;
  --grid-texture: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='25' height='8' rx='3' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'/%3E%3Crect x='33' y='8' width='25' height='8' rx='3' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'/%3E%3Crect x='2' y='22' width='25' height='8' rx='3' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'/%3E%3Crect x='33' y='28' width='25' height='8' rx='3' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'/%3E%3Crect x='2' y='42' width='25' height='8' rx='3' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'/%3E%3Crect x='33' y='48' width='25' height='8' rx='3' fill='none' stroke='%23ffffff' stroke-opacity='0.045' stroke-width='1'/%3E%3C/svg%3E");
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--text);
}

h1 { font-size: clamp(3.6rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: 1.3rem; }

.section-label {
  font-family: var(--font-condensed);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: .6;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 56ch;
}

/* ── Utility ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

.text-accent { color: var(--accent); }
.text-amber  { color: var(--amber); }
.text-muted  { color: var(--text-muted); }

/* Diagonal background texture */
.has-texture { background-image: var(--grid-texture); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-condensed);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(230,57,70,.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 26px rgba(230,57,70,.48);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--text);
  background: rgba(240,237,232,.05);
}

.btn-ghost {
  background: rgba(240,237,232,.07);
  color: var(--text);
  border: 1.5px solid var(--border-mid);
}
.btn-ghost:hover {
  background: rgba(240,237,232,.12);
  border-color: rgba(240,237,232,.22);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}

.nav.scrolled {
  background: rgba(26,29,35,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -.02em;
  flex-shrink: 0;
  transition: transform var(--ease-spring), box-shadow var(--ease);
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-3deg) scale(1.07);
  box-shadow: 0 4px 16px rgba(230,57,70,.5);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .06em;
  color: var(--text);
}
.nav-logo-text span { color: var(--accent); }

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

.nav-link {
  font-family: var(--font-condensed);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease), width var(--ease);
}
.nav-burger span:nth-child(1) { width: 22px; }
.nav-burger span:nth-child(2) { width: 28px; }
.nav-burger span:nth-child(3) { width: 18px; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 28px; }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 28px; }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(26,29,35,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile .nav-link {
  font-size: 1.2rem;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) 0 0;
  overflow: hidden;
  background: var(--bg);
}

/* Diagonal red stripe accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -120px;
  width: 680px;
  height: 100%;
  background: linear-gradient(135deg, transparent 42%, rgba(230,57,70,.06) 42%);
  pointer-events: none;
}

/* Large faded "MOT" background text */
.hero::after {
  content: 'MOT';
  position: absolute;
  right: -0.05em;
  bottom: -0.12em;
  font-family: var(--font-display);
  font-size: clamp(16rem, 30vw, 28rem);
  line-height: 1;
  color: rgba(240,237,232,.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  min-height: calc(100svh - var(--nav-h));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber-dim);
  border: 1px solid rgba(244,163,10,.25);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-family: var(--font-condensed);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.6rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-amber 2.2s ease-in-out infinite;
}
@keyframes pulse-amber {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero-heading {
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .94;
  margin-bottom: 1.4rem;
  letter-spacing: .01em;
}
.hero-heading .line-red { color: var(--accent); display: block; }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

/* Slogan strip */
.hero-slogans-wrap {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-slogan {
  font-family: var(--font-condensed);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: .55rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}
.hero-slogan.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-slogan.exit {
  opacity: 0;
  transform: translateY(-8px);
  transition-delay: 0s !important;
}
.hero-slogan:nth-child(2) { transition-delay: .15s; }
.hero-slogan:nth-child(3) { transition-delay: .3s; }

.slogan-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  width: 100%;
  max-width: 440px;
}

.hero-stat {
  background: var(--bg-card);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
  display: block;
}
.hero-stat-num .unit { font-size: 1.6rem; color: var(--accent); }
.hero-stat-label {
  font-family: var(--font-condensed);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .35rem;
  display: block;
}

/* ── Stat strip (services preview) ─────────────────────────────── */
.service-cards {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 36px;
  position: relative;
  transition: background var(--ease);
}
.service-card:hover { background: var(--bg-card-alt); }

.service-card-icon {
  width: 52px; height: 52px;
  background: var(--accent-glow);
  border: 1px solid rgba(230,57,70,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--accent);
  transition: transform var(--ease-spring), box-shadow var(--ease);
}
.service-card:hover .service-card-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(230,57,70,.25);
}
.service-card-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Why choose section ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3.5rem;
}

.why-item {
  background: var(--bg-card);
  padding: 40px;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: background var(--ease);
}
.why-item:hover { background: var(--bg-card-alt); }

.why-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .22;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
  transition: opacity var(--ease);
}
.why-item:hover .why-number { opacity: .45; }

.why-body h4 {
  font-size: 1.2rem;
  margin-bottom: .45rem;
}
.why-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Price highlight ─────────────────────────────────────────────── */
.price-banner {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 56px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.price-from {
  font-family: var(--font-condensed);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: var(--text);
}
.price-label {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .25rem;
}
.price-note {
  font-size: .78rem;
  color: var(--text-dim);
  margin-top: .3rem;
}

.price-divider {
  width: 1px;
  height: 80px;
  background: var(--border-mid);
  flex-shrink: 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: var(--text-muted);
}
.price-feature svg {
  color: var(--accent);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-accordion {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.8rem;
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  text-align: left;
  background: var(--bg-card);
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
}
.faq-question:hover, .faq-item.open .faq-question {
  background: var(--bg-card-alt);
  color: var(--text);
}

.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}
.faq-icon svg {
  width: 10px; height: 10px;
  color: var(--text-muted);
  transition: transform var(--ease), color var(--ease);
}
.faq-item.open .faq-icon {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { color: var(--accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding: 0 1.8rem 1.4rem;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--bg-card-alt);
}

/* ── CTA Banner ──────────────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: 'BOOK';
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 18vw, 20rem);
  line-height: 1;
  color: rgba(0,0,0,.08);
  pointer-events: none;
  user-select: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem;
}
.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.btn-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: #13151A;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col-title {
  font-family: var(--font-condensed);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.footer-about p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-link {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--ease), padding-left var(--ease);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-link:hover {
  color: var(--text);
  padding-left: 4px;
}
.footer-link svg { width: 12px; height: 12px; opacity: .4; flex-shrink: 0; }
.footer-link:hover svg { opacity: .8; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .8rem;
  line-height: 1.55;
}
.footer-contact-item svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: .2rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy {
  font-size: .78rem;
  color: var(--text-dim);
}
.footer-legal {
  display: flex;
  gap: 1.4rem;
}
.footer-legal a {
  font-size: .78rem;
  color: var(--text-dim);
  transition: color var(--ease);
}
.footer-legal a:hover { color: var(--text-muted); }

/* ── Page hero (inner pages) ─────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(230,57,70,.04) 60%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: .75rem;
}
.page-hero .lead { margin-top: .75rem; }

/* ── Services page ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.service-full-card {
  background: var(--bg-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--ease);
}
.service-full-card:hover { background: var(--bg-card-alt); }

.service-full-card .badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-glow);
  border: 1px solid rgba(230,57,70,.25);
  color: var(--accent);
  font-family: var(--font-condensed);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.service-full-card .badge.badge-amber {
  background: var(--amber-dim);
  border-color: rgba(244,163,10,.25);
  color: var(--amber);
}

.service-full-card h3 { font-size: 1.7rem; }
.service-full-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.service-full-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.service-full-card .price .sub {
  font-family: var(--font-condensed);
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--accent) 50%, var(--border) 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  transition: background var(--ease), border-color var(--ease), transform var(--ease-spring);
}
.process-step:hover .process-step-num {
  background: var(--accent-glow);
  border-color: var(--accent);
  transform: scale(1.08);
}
.process-step h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
}
.process-step p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 14ch;
  margin: 0 auto;
}

/* ── Contact / Booking page ──────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  padding: 80px 0;
}

.booking-info { position: sticky; top: calc(var(--nav-h) + 24px); }

.booking-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.booking-info-card-header {
  background: var(--accent);
  padding: 20px 28px;
}
.booking-info-card-header h3 {
  color: #fff;
  font-size: 1.4rem;
}
.booking-info-body { padding: 28px; }

.info-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.info-icon {
  width: 36px; height: 36px;
  background: var(--accent-glow);
  border: 1px solid rgba(230,57,70,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.info-icon svg { width: 16px; height: 16px; }

.info-label {
  font-family: var(--font-condensed);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .2rem;
}
.info-value {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.6;
}

/* Hours table */
.hours-table {
  width: 100%;
  margin-top: .5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: .3rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); font-weight: 500; }

/* Form */
.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: .5rem;
}
.form-subtitle {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.form-section-label {
  font-family: var(--font-condensed);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 1.8rem 0 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.form-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group { margin-bottom: 1.2rem; }

label {
  display: block;
  font-family: var(--font-condensed);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
label .req { color: var(--accent); margin-left: .15rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.5); }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,.12);
  background: var(--bg-card-alt);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235A6270' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Vehicle reg field — special styling */
.reg-input {
  font-family: var(--font-display);
  font-size: 1.6rem !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  background: #F5D90A !important;
  color: #1A1D23 !important;
  border-color: #e0c800 !important;
  border-width: 2px !important;
}
.reg-input::placeholder {
  color: rgba(26,29,35,.4) !important;
  font-size: 1.2rem;
  letter-spacing: .1em;
}
.reg-input:focus {
  box-shadow: 0 0 0 3px rgba(245,217,10,.25) !important;
  border-color: #c8b200 !important;
}

.form-privacy {
  font-size: .78rem;
  color: var(--text-dim);
  margin: 1.4rem 0 1.8rem;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 15px 28px;
  font-size: 1rem;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 18px rgba(230,57,70,.3);
}
.btn-submit:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(230,57,70,.45);
}
.btn-submit:disabled { opacity: .65; cursor: not-allowed; }
.btn-submit svg { width: 18px; height: 18px; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,.12);
  border: 2px solid rgba(34,197,94,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #22c55e;
}
.form-success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 2rem; margin-bottom: .6rem; }
.form-success p { color: var(--text-muted); font-size: .95rem; }

/* ── Scroll reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Hero car illustration ───────────────────────────────────────── */
.hero-car-wrap {
  position: relative;
  width: 100%;
}

.hero-car-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.55));
}

.hero-car-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.car-badge {
  position: absolute;
  background: rgba(32,36,44,.88);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  min-width: 108px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.car-badge-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  display: block;
}
.car-badge-value.accent { color: var(--accent); }
.car-badge-value.amber  { color: var(--amber); }

.car-badge-label {
  font-family: var(--font-condensed);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-top: .2rem;
}

.car-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: .35rem;
  vertical-align: middle;
  animation: pulse-amber 2.4s ease-in-out infinite;
}

/* Tyre track divider */
.tyre-divider {
  width: 100%;
  height: 18px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 18px,
    rgba(230,57,70,.08) 18px,
    rgba(230,57,70,.08) 30px
  );
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 60px 24px 80px;
  }
  .hero-badge, .hero-slogans-wrap { justify-content: center; }
  .hero-sub, .hero-ctas { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-stat-grid { max-width: 360px; }

  .service-cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .price-banner-inner { flex-direction: column; text-align: center; }
  .price-divider { display: none; }
  .price-features { align-items: center; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .booking-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-info { position: static; }
  .booking-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-heading { font-size: clamp(3.2rem, 14vw, 5rem); }
  .hero-stat-grid { grid-template-columns: 1fr; }
}
