/* ================================================================
   AUTO MIG — Speed & Precision
   A bold, sporty, industrial design for an auto mechanic + inspection station
   ================================================================ */

/* --- Reset & Variables ---------------------------------------- */
:root {
  --rust: #D4782A;
  --rust-hover: #E0853A;
  --rust-dark: #A8551A;
  --gold: #C49A3C;
  --bg: #0A0A0A;
  --surface: #111114;
  --surface-alt: #18181D;
  --surface-card: #141418;
  --text: #F0F0F0;
  --text-muted: #8888A0;
  --text-dim: #666680;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --line-rust: rgba(212, 120, 42, 0.25);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --max: 1280px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --header-h: 72px;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 0.75, 0.25);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

::selection {
  background: var(--rust);
  color: var(--gold);
}

/* --- Container ------------------------------------------------ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Utility -------------------------------------------------- */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-number {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  letter-spacing: 0.15em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.35rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rust);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}

.section-desc {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.6;
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.logo__image {
  width: clamp(8.5rem, 15vw, 10.5rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.logo__meta {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Nav */
.nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width 0.3s var(--ease-out);
}

.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

/* Phone button */
.btn--phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.btn--phone:hover { border-color: var(--rust); background: rgba(212, 120, 42, 0.08); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

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

/* --- Mobile Nav ---------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 80vw);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--line-strong);
  z-index: 99;
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav nav a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-nav nav a:hover { color: var(--text); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
}

.btn--primary {
  background: var(--rust);
  color: var(--gold);
}

.btn--primary:hover { background: var(--rust-hover); transform: scale(1.04); }

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--text);
}

.btn--ghost:hover { border-color: var(--rust); color: var(--rust); }

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--wide { width: 100%; justify-content: center; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

/* Hero image — right side diagonal split */
.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.3);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 30%),
    linear-gradient(0deg, rgba(10,10,10,0.6) 0%, transparent 50%),
    linear-gradient(0deg, rgba(212, 120, 42, 0.15) 0%, transparent 60%);
  z-index: 1;
}

/* Speed lines on image */
.hero__speedlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 40px,
    rgba(255, 90, 0, 0.06) 40px,
    rgba(255, 90, 0, 0.06) 41px
  );
  opacity: 0.6;
  pointer-events: none;
}

/* Serpentine road decoration */
.hero__serpentine {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.4;
}

.hero__serpentine svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes serpentineDrive {
  0% { stroke-dashoffset: 2000; }
  100% { stroke-dashoffset: 0; }
}

.serpentine-path {
  stroke-dasharray: 2000;
  animation: serpentineDrive 3s ease-out forwards;
}

.serpentine-path-2 {
  stroke-dasharray: 2000;
  animation: serpentineDrive 3.5s ease-out 0.3s forwards;
  opacity: 0;
}

@supports (animation-timeline: scroll()) {
  .hero__serpentine svg path {
    animation: none;
  }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-h);
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rust);
  border: 1px solid var(--line-rust);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  margin: 0;
  line-height: 0.92;
  max-width: 800px;
}

.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.03em;
  color: var(--text);
}

.hero__title-line--accent {
  color: var(--rust);
  position: relative;
}

.hero__title-line--accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.04em;
  background: var(--rust);
  opacity: 0.3;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
  margin: 1.2rem 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__actions .btn svg {
  transition: transform 0.25s var(--ease-out);
}

.hero__actions .btn:hover svg {
  transform: translateX(4px);
}

/* Marquee */
.hero__marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.hero__marquee-track {
  display: flex;
  gap: 0.6rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.hero__marquee-track span:nth-child(even) { color: var(--rust); opacity: 0.5; }

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

/* Floating phone pill */
.hero__phone-pill {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  background: var(--rust);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(212, 120, 42, 0.35);
  animation: pillBounce 3s ease-in-out infinite;
}

@keyframes pillBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ================================================================
   STATS
   ================================================================ */
.stats {
  padding: 0;
  position: relative;
  z-index: 1;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
}

.stat {
  background: var(--surface-card);
  padding: clamp(1.5rem, 3vw, 2.2rem) 1.5rem;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--rust);
  display: block;
  margin-bottom: 0.3rem;
}

.stat__value--sm {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text);
}

.stat__label {
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
  background: var(--surface);
  position: relative;
  isolation: isolate;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.74) 0%, rgba(10, 10, 10, 0.78) 28%, rgba(10, 10, 10, 0.86) 100%),
    radial-gradient(circle at 72% 22%, rgba(212, 120, 42, 0.22), transparent 42%),
    url("../assets/background_fix_car.png") center 28% / cover no-repeat;
  opacity: 0.34;
  z-index: 0;
  pointer-events: none;
}

.services > .container {
  position: relative;
  z-index: 1;
}

/* ---- Emergency callout ---- */
.services__emergency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--surface-card) 0%, rgba(212, 120, 42, 0.08) 100%);
  border: 1px solid rgba(212, 120, 42, 0.2);
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.services__emergency:hover {
  border-color: rgba(212, 120, 42, 0.5);
  background: linear-gradient(135deg, var(--surface-alt) 0%, rgba(212, 120, 42, 0.12) 100%);
}

.services__emergency-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
  animation: emergencyPulse 1.8s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(212, 120, 42, 0.6);
}

@keyframes emergencyPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 120, 42, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(212, 120, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 120, 42, 0); }
}

.services__emergency-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.services__emergency-text strong {
  font-weight: 700;
  color: var(--rust);
}

.services__emergency-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.services__emergency svg {
  color: var(--rust);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.services__emergency:hover svg { transform: translateX(4px); }

/* ---- Two main pillars ---- */
.services__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.services__pillar {
  background: var(--surface-card);
  padding: 2rem;
  transition: background 0.3s var(--ease-out), transform 0.4s var(--ease-out);
  perspective: 800px;
}

.services__pillar:hover {
  background: var(--surface-alt);
  transform: scale(1.01);
}

.services__pillar-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.services__pillar-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: var(--rust);
}

.services__pillar-icon svg { width: 100%; height: 100%; }

.services__pillar-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.services__pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}

.services__pillar-num {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.services__pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.services__pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.services__pillar-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}

.services__pillar-list li svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

/* ---- Problem-focused cards ---- */
.services__problems {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.services__problems-head {
  padding: 1.8rem 2rem 0 2rem;
}

.services__problems-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(196, 154, 60, 0.2);
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.services__problems-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.1;
  margin: 0 0 0.2rem;
  color: var(--text);
}

.services__problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.services__problem-card {
  background: var(--surface-card);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s var(--ease-out), transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.services__problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.services__problem-card:hover::before { opacity: 1; }

.services__problem-card:hover {
  background: var(--surface-alt);
  transform: translateY(-3px);
}

.services__problem-icon {
  width: 42px;
  height: 42px;
  color: var(--rust);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.services__problem-card:hover .services__problem-icon {
  transform: scale(1.1);
}

.services__problem-icon svg { width: 100%; height: 100%; }

.services__problem-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.1;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.services__problem-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 0.6rem;
}

.services__problem-symptom {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(196, 154, 60, 0.15);
  border-radius: 100px;
  background: rgba(196, 154, 60, 0.04);
}/* ================================================================
   SHOWCASE — MIG STANDARD (WOW centerpiece)
   ================================================================ */
background: linear-gradient(170deg, #0A0E1A 0%, #121828 25%, #1A1520 50%, #2D1810 75%, #1A0F08 100%);
  background: linear-gradient(170deg, #FF5A00 0%, #E83800 25%, #CC2200 55%, #991100 100%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --showcase-text: #fff;
}

.showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Glowing orbs */
.showcase__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.showcase__glow--1 {
  width: 500px;
  height: 500px;
  background: #FFB800;
  top: -10%;
  right: -5%;
  animation: glowDrift1 12s ease-in-out infinite alternate;
}

.showcase__glow--2 {
  width: 400px;
  height: 400px;
  background: #FF8800;
  bottom: -15%;
  left: -8%;
  animation: glowDrift2 10s ease-in-out infinite alternate;
}

.showcase__glow--3 {
  width: 300px;
  height: 300px;
  background: #FFD700;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowDrift1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  100% { transform: translate(-80px, 40px) scale(1.2); opacity: 0.3; }
}

@keyframes glowDrift2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  100% { transform: translate(60px, -40px) scale(1.15); opacity: 0.25; }
}

@keyframes glowPulse {
  0% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.3); }
}

/* Grid overlay */
.showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

.showcase__header { position: relative; z-index: 2; }

.showcase__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}

.showcase__title span:first-child {
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 0.85;
  opacity: 0.15;
  letter-spacing: 0.08em;
}

.showcase__title-accent {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.showcase__title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

/* Cards grid */
.showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

/* Individual cards — angled geometric shapes */
.showcase__card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s ease,
              box-shadow 0.5s ease;
  overflow: hidden;
}

/* Different rotation for each card */
.showcase__card--1 {
  transform: rotate(-2deg);
  border-radius: 28px 8px 28px 8px;
}

.showcase__card--2 {
  transform: translateY(-1.5rem) rotate(1.5deg);
  border-radius: 8px 28px 8px 28px;
}

.showcase__card--3 {
  transform: translateY(0.5rem) rotate(-1deg);
  border-radius: 28px 28px 8px 8px;
}

.showcase__card:hover {
  transform: scale(1.03) rotate(0deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Hover resets to straight + slight scale */
.showcase__card--1:hover { transform: scale(1.03) rotate(0deg); }
.showcase__card--2:hover { transform: scale(1.03) translateY(-1.5rem) rotate(0deg); }
.showcase__card--3:hover { transform: scale(1.03) translateY(0.5rem) rotate(0deg); }

/* SVG decorative shape inside card */
.showcase__card-shape {
  position: absolute;
  right: -20px;
  top: -10px;
  width: 140px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}

.showcase__card-shape svg {
  width: 100%;
  height: auto;
}

.showcase__card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  display: block;
  margin-bottom: 0.5rem;
}

.showcase__card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.showcase__card-icon svg { width: 100%; height: 100%; }

.showcase__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--gold);
  margin: 0 0 0.6rem;
  letter-spacing: 0.02em;
}

.showcase__card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Decorative animated bar inside each card */
.showcase__card-bar {
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-top: 1.2rem;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase__card.is-visible .showcase__card-bar {
  width: 60px;
}

/* Footer / tagline */
.showcase__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.showcase__stamp {
  width: 60px;
  height: 60px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  animation: stampSpin 20s linear infinite;
}

.showcase__stamp svg { width: 100%; height: 100%; }

@keyframes stampSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.showcase__tagline {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.showcase__tagline-orange {
  color: var(--gold);
  font-weight: 700;
}

/* ================================================================
   TERRAIN — local driving conditions
   ================================================================ */
.terrain {
  background: var(--bg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Contour/topographic lines */
.terrain__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.terrain__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85);
}

.terrain__bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.35) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.3) 0%, transparent 20%, transparent 80%, rgba(10, 10, 10, 0.3) 100%);
  z-index: 1;
}

.terrain__contour,
.terrain__contour-2 {
  position: absolute;
  inset: -20% -20%;
  z-index: 2;
  background: repeating-radial-gradient(
    circle at 30% 50%,
    transparent 0px,
    transparent 40px,
    rgba(196, 154, 60, 0.03) 40px,
    rgba(196, 154, 60, 0.03) 41px
  );
  animation: contourDrift 20s linear infinite;
  mix-blend-mode: overlay;
}

.terrain__contour-2 {
  background: repeating-radial-gradient(
    circle at 70% 40%,
    transparent 0px,
    transparent 55px,
    rgba(212, 120, 42, 0.025) 55px,
    rgba(212, 120, 42, 0.025) 56px
  );
  animation: contourDrift 25s linear infinite reverse;
  mix-blend-mode: overlay;
}

@keyframes contourDrift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(2%, 2%) rotate(3deg); }
}

/* Road stats strip */
.terrain__road {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 3;
}

.terrain__road-stat {
  background: var(--surface-card);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.terrain__road-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
  display: inline;
}

.terrain__road-unit {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.3rem;
  display: inline;
}

.terrain__road-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

/* Problem cards grid */
.terrain__problems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.terrain__problem {
  background: var(--surface-card);
  padding: 1.8rem 1.5rem;
  transition: background 0.3s var(--ease-out);
}

.terrain__problem:hover {
  background: var(--surface-alt);
}

.terrain__problem-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.terrain__problem-head svg {
  width: 32px;
  height: 32px;
  color: var(--rust);
  flex-shrink: 0;
}

.terrain__problem-head span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  margin-left: auto;
}

.terrain__problem-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.terrain__problem-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 0.8rem;
}

.terrain__problem-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.terrain__problem-labels span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--line);
}

/* Summary card spans full width */
.terrain__problem--summary {
  grid-column: 1 / -1;
  background: var(--surface-alt);
  border-top: 2px solid rgba(196, 154, 60, 0.15);
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.terrain__problem--summary .terrain__problem-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 0;
}

.terrain__problem--summary .terrain__problem-text {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* ================================================================
   PROCESS
   ================================================================ */
.process {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.process__bg-text {
  position: absolute;
  right: -0.05em;
  bottom: -0.1em;
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 28rem);
  line-height: 1;
  color: rgba(255,255,255,0.015);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
}

.process__line {
  display: none; /* hidden on grid, shown via pseudo */
}

.process__step {
  background: var(--surface-card);
  padding: 2rem 1.5rem;
  border-radius: 0;
  position: relative;
  border-right: 1px solid var(--line);
}

.process__step:last-child { border-right: none; }

.process__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: rgba(212, 120, 42, 0.15);
  display: block;
  margin-bottom: 0.5rem;
}

.process__card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.process__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   TRUST / REVIEWS
   ================================================================ */
.trust {
  background: var(--surface);
}

.trust__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--surface-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.trust__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.trust__stars svg {
  width: 28px;
  height: 28px;
}

.trust__score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
}

.trust__count {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust__maps-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.trust__reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust__review {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 0;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.trust__review:hover {
  border-color: var(--line-rust);
  transform: translateY(-4px);
}

.trust__review blockquote {
  margin: 0 0 1rem;
}

.trust__review blockquote p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

.trust__review figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust__review figcaption strong {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.trust__review figcaption span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Map */
.trust__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  margin-bottom: 2rem;
}

.trust__map-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.trust__map iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
}

.trust__cta {
  text-align: center;
}

.trust__cta .btn svg { transition: transform 0.25s var(--ease-out); }
.trust__cta .btn:hover svg { transform: translate(3px, -3px); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact__bg-mechanic {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

@supports (filter: brightness(1.6)) {
  .contact__bg-mechanic { opacity: 0.55; }
}

.contact__bg-mechanic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.4) brightness(1.6);
  mix-blend-mode: screen;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}

.contact__card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: border-color 0.3s var(--ease-out);
}

.contact__card:hover { border-color: var(--line-rust); }

.contact__card-icon {
  width: 36px;
  height: 36px;
  color: var(--rust);
  margin-bottom: 0.8rem;
}

.contact__card-icon svg { width: 100%; height: 100%; }

.contact__card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.contact__card p,
.contact__card .contact__link {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: var(--text);
}

.contact__link {
  font-weight: 600;
  color: var(--rust) !important;
  transition: opacity 0.2s;
}

.contact__link:hover { opacity: 0.8; }

.contact__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.8rem;
  font-size: 0.9rem;
  color: var(--text);
}

.contact__hours span:last-child { color: var(--text-dim); }

/* Contact phone card — big visual CTA replacing form */
.contact__phone {
  background: var(--surface-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  height: fit-content;
  position: relative;
  overflow: hidden;
}

/* Animated ring */
.contact__phone-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1.5px solid rgba(212, 120, 42, 0.15);
  animation: phoneRing 3s ease-out infinite;
  pointer-events: none;
}

.contact__phone-ring--2 {
  animation-delay: 1.2s;
  width: 180px;
  height: 180px;
  top: -20px;
}

@keyframes phoneRing {
  0% { transform: translateX(-50%) scale(0.6); opacity: 0.8; }
  60% { opacity: 0.3; }
  100% { transform: translateX(-50%) scale(1.8); opacity: 0; }
}

.contact__phone-icon {
  width: 64px;
  height: 64px;
  color: var(--rust);
  position: relative;
  z-index: 1;
}

.contact__phone-icon svg { width: 100%; height: 100%; }

.contact__phone-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

.contact__phone-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}

.contact__phone-number:hover { color: var(--rust); }

.contact__phone-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.contact__phone-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

.contact__phone .btn {
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}

.contact__phone .btn svg { transition: transform 0.25s var(--ease-out); }
.contact__phone .btn:hover svg { transform: rotate(10deg); }

/* ================================================================
   STICKY PHONE BAR (mobile only)
   ================================================================ */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--rust);
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.sticky-phone a:active { background: var(--rust-dark); }

.sticky-phone svg { flex-shrink: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.3rem 0 0;
  line-height: 1.5;
}

.footer__logo {
  width: clamp(9rem, 16vw, 11rem);
  height: auto;
  display: block;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--rust); }

.footer__note {
  width: 100%;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Hero badge animation */
.hero__badge.reveal { transition-delay: 0.1s; }
.hero__title.reveal { transition-delay: 0.2s; }
.hero__sub.reveal { transition-delay: 0.3s; }
.hero__actions.reveal { transition-delay: 0.4s; }
.hero__marquee.reveal { transition-delay: 0.5s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 900px) {
  .nav { display: none; }
  .btn--phone { display: none; }
  .hamburger { display: flex; }

  .hero__image { width: 45%; clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .hero__serpentine { display: none; }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -2rem;
  }

  .services__pillars { grid-template-columns: 1fr; }
  .services__problems-grid { grid-template-columns: repeat(2, 1fr); }
  .services__problems-head { padding: 1.5rem 1.5rem 0; }
  .services__emergency { flex-wrap: wrap; padding: 0.8rem 1.2rem; border-radius: var(--radius-sm); }

  .section-title { font-size: clamp(2rem, 7vw, 4rem); }

  .terrain__road { grid-template-columns: repeat(2, 1fr); }
  .terrain__problems { grid-template-columns: repeat(2, 1fr); }
  .terrain__problem--summary { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .terrain__bg-img { object-position: 50% 30%; }

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

  .process__step:last-child { border-right: 1px solid var(--line); }

  .trust__reviews {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__info {
    grid-template-columns: 1fr 1fr;
  }

  .contact__bg-mechanic { display: none; }

  /* Showcase responsive */
  .showcase__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__card--1,
  .showcase__card--2,
  .showcase__card--3 {
    transform: none;
    border-radius: var(--radius-sm);
  }

  .showcase__card--1:hover,
  .showcase__card--2:hover,
  .showcase__card--3:hover {
    transform: scale(1.02);
  }

  .showcase__card--2 {
    transform: translateY(0);
  }

  .showcase__card:last-child {
    grid-column: 1 / -1;
  }

  .showcase__card-shape { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --header-h: 64px;
    --gutter: 1rem;
  }

  body { padding-bottom: 56px; }

  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 1.5rem; }
  .section-title { font-size: clamp(2rem, 12vw, 2.8rem); }
  .section-desc { font-size: 0.9rem; max-width: none !important; }
  .section-number { font-size: 0.75rem; }
  .section-label { font-size: 0.7rem; }

  /* ---- Hero ---- */
  .hero {
    min-height: 92dvh;
    align-items: flex-end;
    padding-bottom: 5rem;
  }

  .hero__image {
    width: 100%;
    clip-path: none;
    opacity: 0.12;
  }

  .hero__image-overlay {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 50%);
  }

  .hero__title-line { font-size: clamp(2.6rem, 14vw, 4rem); }
  .hero__sub { font-size: 0.9rem; max-width: none; }
  .hero__actions { flex-direction: column; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .hero__phone-pill {
    display: none;
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .hero__badge { font-size: 0.7rem; }

  .hero__serpentine { display: none; }

  .hero__marquee { padding-top: 0.6rem; }
  .hero__marquee-track { font-size: 0.65rem; gap: 0.4rem; }

  /* ---- Stats ---- */
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -1.5rem;
    border-radius: var(--radius-sm);
  }

  .stat { padding: 1rem 0.8rem; }
  .stat__value { font-size: 1.8rem; }
  .stat__label { font-size: 0.65rem; }

  /* ---- Services ---- */
  .services__emergency { font-size: 0.85rem; padding: 0.7rem 1rem; border-radius: 100px; flex-wrap: wrap; justify-content: center; }
  .services__emergency-num { font-size: 1.1rem; }
  .services__pillars { grid-template-columns: 1fr; border-radius: var(--radius-sm); }
  .services__pillar { padding: 1.2rem; }
  .services__pillar-icon { width: 40px; height: 40px; }
  .services__pillar-title { font-size: 1.2rem; }
  .services__pillar-desc { font-size: 0.82rem; }
  .services__pillar-list li { font-size: 0.78rem; }
  .services__pillar-num { font-size: 1.4rem; }
  .services__problems { border-radius: var(--radius-sm); }
  .services__problems-head { padding: 1.2rem 1.2rem 0; }
  .services__problems-grid { grid-template-columns: 1fr; }
  .services__problem-card { padding: 1.2rem; gap: 0.6rem; }
  .services__problem-icon { width: 34px; height: 34px; }
  .services__problem-title { font-size: 1.1rem; }
  .services__problem-desc { font-size: 0.8rem; }
  .services__problem-symptom { font-size: 0.65rem; }

  /* ---- Terrain ---- */
  .terrain__bg-img { object-position: 55% 30%; }
  .terrain__bg-veil { background: linear-gradient(0deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.5) 100%); }
  .terrain__road { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-sm); }
  .terrain__road-stat { padding: 1rem 0.8rem; }
  .terrain__road-num { font-size: 1.8rem; }
  .terrain__road-unit { font-size: 0.7rem; }
  .terrain__road-label { font-size: 0.6rem; }
  .terrain__problems { grid-template-columns: 1fr; border-radius: var(--radius-sm); }
  .terrain__problem { padding: 1.2rem; }
  .terrain__problem-head svg { width: 26px; height: 26px; }
  .terrain__problem-title { font-size: 1.2rem; }
  .terrain__problem-text { font-size: 0.82rem; }
  .terrain__problem-labels span { font-size: 0.6rem; }
  .terrain__problem--summary { grid-template-columns: 1fr; padding: 1.5rem; }
  .terrain__contour, .terrain__contour-2 { display: none; }

  /* ---- Process ---- */
  .process__track {
    grid-template-columns: 1fr;
  }

  .process__step {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
    padding: 1.2rem;
  }

  .process__step:last-child { border-bottom: none; }
  .process__num { font-size: 2.5rem; }
  .process__card h3 { font-size: 1.1rem; }
  .process__card p { font-size: 0.82rem; }
  .process__bg-text { display: none; }

  /* ---- Showcase ---- */
  .showcase__cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .showcase__card {
    padding: 1.2rem;
  }

  .showcase__card--1,
  .showcase__card--2,
  .showcase__card--3 {
    transform: none !important;
    border-radius: var(--radius-sm) !important;
  }

  .showcase__card:hover {
    transform: scale(1.02) !important;
  }

  .showcase__card:last-child { grid-column: auto; }
  .showcase__card-shape { display: none; }
  .showcase__glow { display: none; }
  .showcase__card-num { font-size: 2.5rem; }
  .showcase__card-icon { width: 36px; height: 36px; }
  .showcase__card-title { font-size: 1.3rem; }
  .showcase__card-text { font-size: 0.82rem; }
  .showcase__title span:first-child { font-size: clamp(3rem, 20vw, 5rem); }
  .showcase__title-accent { font-size: clamp(2rem, 12vw, 3rem); }
  .showcase__title-accent::after { width: 40px; height: 3px; }
  .showcase__stamp { width: 44px; height: 44px; }
  .showcase__tagline { font-size: 0.9rem; text-align: center; }

  /* ---- Trust ---- */
  .trust__rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem;
  }

  .trust__stars svg { width: 22px; height: 22px; }
  .trust__score { font-size: 2rem; }
  .trust__count { font-size: 0.85rem; }
  .trust__maps-badge { margin-left: 0; font-size: 0.6rem; }
  .trust__reviews { gap: 0.75rem; }
  .trust__review { padding: 1rem; }
  .trust__review blockquote p { font-size: 0.85rem; }
  .trust__map iframe { height: 200px; }
  .trust__map-badge { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
  .trust__cta .btn { width: 100%; justify-content: center; }

  /* ---- Contact ---- */
  .contact__info { grid-template-columns: 1fr; }
  .contact__card { padding: 1rem; }
  .contact__card-icon { width: 28px; height: 28px; margin-bottom: 0.5rem; }
  .contact__card h3 { font-size: 0.75rem; }
  .contact__card p, .contact__card .contact__link { font-size: 0.9rem; }
  .contact__card--cta { padding: 1.5rem; }
  .contact__card--cta h3 { font-size: 1.2rem; }
  .contact__phone { padding: 1.5rem 1.2rem; gap: 0.6rem; }
  .contact__phone-icon { width: 48px; height: 48px; }
  .contact__phone-number { font-size: clamp(2rem, 8vw, 2.8rem); }
  .contact__phone-desc { font-size: 0.82rem; }
  .contact__phone-meta { font-size: 0.7rem; }
  .contact__phone-ring { width: 120px; height: 120px; top: -5px; }
  .contact__phone-ring--2 { width: 140px; height: 140px; top: -15px; }
  .contact__hours { font-size: 0.8rem; }
  .sticky-phone { display: block; }

  /* ---- Footer ---- */
  .footer__inner { flex-direction: column; gap: 1rem; }
  .footer { padding: 2rem 0; }
  .footer__note { font-size: 0.7rem; }
  .footer__links a { font-size: 0.8rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__marquee-track { animation: none; }
  .hero__phone-pill { animation: none; }
  .service-card--featured .service-card__visual img { transition: none; }
  .trust__review { transition: none; }
  .showcase__glow { animation: none; display: none; }
  .showcase__stamp { animation: none; }
  .showcase__card { transition: none; }
  .showcase__card-bar { transition: none; width: 60px; }
  .terrain__contour, .terrain__contour-2 { animation: none; }
  .serpentine-path, .serpentine-path-2 { stroke-dasharray: none; opacity: 0.6; }
}
