@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #0a0a0c;
  --bg-dark-2: #111114;
  --bg-card-dark: #19191d;
  --bg-light: #fafaf9;
  --bg-light-alt: #f3f2ef;
  --bg-white: #ffffff;
  --border-dark: rgba(255,255,255,0.07);
  --border-light: #e5e2dc;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fbbf24;
  --amber-glow: rgba(245,158,11,0.18);
  --amber-subtle: rgba(245,158,11,0.07);
  --text-white: #f5f5f4;
  --text-white-muted: rgba(255,255,255,0.55);
  --text-dark: #1a1917;
  --text-dark-sub: #57534e;
  --text-dark-muted: #a8a29e;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-glow: 0 4px 30px rgba(245,158,11,0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
  --container: 1120px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Urbanist', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { font-size: 1rem; line-height: 1.7; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-white); }
.section-alt { background: var(--bg-light-alt); }
.text-center { text-align: center; }
.text-center p { max-width: 520px; margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.section-label-center { text-align: center; display: block; padding-left: 0; }
.section-label-center::before { display: none; }
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-dark-sub); font-size: 1.05rem; margin-bottom: 0; }
.section-dark .section-desc { color: var(--text-white-muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--amber);
  color: var(--bg-dark);
  box-shadow: 0 2px 12px rgba(245,158,11,0.25);
}
.btn-primary:hover {
  background: var(--amber-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ===== MECHANIC PAGE CTA EMPHASIS ===== */
.mechanic-page .btn-primary,
.mechanic-page .cta-phone,
.mechanic-page .sticky-call-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mechanic-page .btn-primary::before,
.mechanic-page .cta-phone::before,
.mechanic-page .sticky-call-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: call-shine 4.8s ease-in-out infinite;
  z-index: 0;
}

.mechanic-page .btn-primary > *,
.mechanic-page .cta-phone > *,
.mechanic-page .sticky-call-btn > * {
  position: relative;
  z-index: 1;
}

.mechanic-page .btn-primary,
.mechanic-page .cta-phone {
  box-shadow: 0 8px 22px rgba(245,158,11,0.22), 0 0 0 1px rgba(245,158,11,0.15) inset;
}

.mechanic-page .btn-primary:hover,
.mechanic-page .cta-phone:hover,
.mechanic-page .sticky-call-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 32px rgba(245,158,11,0.28), var(--shadow-glow);
}

.mechanic-page .btn-primary svg,
.mechanic-page .cta-phone svg,
.mechanic-page .sticky-call-btn svg {
  transition: transform 0.25s ease;
}

.mechanic-page .btn-primary:hover svg,
.mechanic-page .cta-phone:hover svg,
.mechanic-page .sticky-call-btn:hover svg {
  transform: translateX(2px);
}

.mechanic-page .btn-pulse::after {
  border-color: rgba(245,158,11,0.9);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.08);
}

.mechanic-page .sticky-call-bar {
  background: linear-gradient(180deg, rgba(14,14,16,0.92), rgba(10,10,12,0.98));
}

.mechanic-page .sticky-call-btn {
  animation: call-breathe 2.8s ease-in-out infinite;
}

@keyframes call-shine {
  0% { transform: translateX(-120%); }
  55% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes call-breathe {
  0%, 100% { box-shadow: 0 8px 22px rgba(245,158,11,0.18); }
  50% { box-shadow: 0 10px 30px rgba(245,158,11,0.28); }
}

@keyframes call-pop {
  0%, 100% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-2px) scale(1.02); }
  70% { transform: translateY(0) scale(1.01); }
}

@keyframes call-icon-nudge {
  0%, 100% { transform: translateX(0); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mechanic-page .btn-primary::before,
  .mechanic-page .cta-phone::before,
  .mechanic-page .sticky-call-btn::before,
  .mechanic-page .sticky-call-btn {
    animation: none;
  }
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.08rem;
  border-radius: 14px;
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Pulse ring on primary CTA */
.btn-pulse { position: relative; }
.btn-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--amber);
  opacity: 0;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.12); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 100%);
}
.logo-mark svg { position: relative; z-index: 1; }
.logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
}
.logo-text span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: 0.88rem;
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { right: 0; }
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(245,158,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.mobile-menu a {
  color: var(--text-white);
  font-size: 1.4rem;
  font-weight: 700;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-white-muted);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  transition: var(--transition-fast);
  line-height: 1;
}
.mobile-menu-close:hover { color: var(--text-white); }

/* ===== HERO (HOMEPAGE) ===== */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.15);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 { color: var(--text-white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber); }
.hero-sub {
  color: var(--text-white-muted);
  font-size: 1.12rem;
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-icon {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-card {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 60%);
}
.hero-visual-inner {
  position: absolute;
  inset: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius);
}
.hero-stat-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.hero-stat-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-stat-value { font-size: 1.1rem; font-weight: 800; color: var(--text-white); }

/* ===== LP HERO (SERVICE PAGES) ===== */
.lp-hero {
  padding: 140px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(245,158,11,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.lp-hero-content { max-width: 640px; position: relative; z-index: 1; }
.lp-hero h1 { color: var(--text-white); margin-bottom: 20px; }
.lp-hero h1 .accent { color: var(--amber); }
.lp-hero .hero-sub { max-width: 540px; }
.lp-hero .hero-trust { margin-top: 36px; }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 80px;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.section-divider svg { width: 100%; height: 100%; display: block; }
.divider-dark-to-light { background: var(--bg-light); }
.divider-dark-to-alt { background: var(--bg-light-alt); }
.divider-light-to-dark { background: var(--bg-dark); }
.divider-alt-to-light { background: var(--bg-white); }

/* ===== TRUST BAR / STATS ===== */
.stats-bar {
  background: var(--bg-dark);
  padding: 0 0 20px;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card-dark);
  padding: 28px 20px;
  text-align: center;
}
.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 8px 40px rgba(245,158,11,0.08);
  transform: translateY(-6px);
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--amber-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--amber);
  color: var(--bg-dark);
}
.service-card h3 { margin-bottom: 10px; color: var(--text-dark); }
.service-card p { color: var(--text-dark-sub); font-size: 0.92rem; }

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 72px;
  height: 72px;
  background: var(--bg-dark);
  color: var(--amber);
  border: 2px solid rgba(245,158,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); }
.step p { font-size: 0.9rem; color: var(--text-dark-sub); max-width: 260px; margin: 0 auto; }

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.06);
}
.benefit-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--amber-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--amber);
}
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-dark); }
.benefit-card p { font-size: 0.85rem; color: var(--text-dark-sub); }

/* ===== TINT OPTIONS ===== */
.tint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.tint-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-light);
  text-align: center;
  position: relative;
  transition: var(--transition);
  background: var(--bg-white);
}
.tint-card:hover, .tint-card.featured { border-color: var(--amber); }
.tint-card.featured { box-shadow: var(--shadow-glow); }
.tint-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--amber);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.tint-visual { height: 100px; position: relative; }
.tint-35 { background: rgba(0,0,0,0.35); }
.tint-20 { background: rgba(0,0,0,0.55); }
.tint-05 { background: rgba(0,0,0,0.82); }
.tint-windshield { background: linear-gradient(135deg, #d4e8f7 0%, #a8d4f0 100%); }
.tint-info { padding: 20px 16px; }
.tint-pct { font-size: 1.5rem; font-weight: 900; color: var(--text-dark); letter-spacing: -0.02em; }
.tint-name { font-size: 0.82rem; font-weight: 600; color: var(--text-dark-sub); margin-bottom: 4px; }
.tint-desc { font-size: 0.78rem; color: var(--text-dark-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-dark); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,158,11,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials .section-label { color: var(--amber); }
.testimonials .section-title { color: var(--text-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  border-color: rgba(245,158,11,0.2);
  transform: translateY(-4px);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-star { color: var(--amber); font-size: 0.9rem; }
.review-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--bg-dark);
}
.review-name { font-weight: 700; color: var(--text-white); font-size: 0.9rem; }
.review-service { font-size: 0.78rem; color: var(--text-white-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 56px auto 0; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(245,158,11,0.25); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition-fast);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question.active { color: var(--amber); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-dark-muted);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-question.active .faq-icon { color: var(--amber); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-dark-sub);
  line-height: 1.7;
}

/* ===== CONTACT / CTA ===== */
.cta-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .section-label { color: var(--amber); }
.cta-section .section-title { color: var(--text-white); }
.cta-section .section-desc { color: var(--text-white-muted); }
.cta-card {
  max-width: 500px;
  margin: 48px auto 0;
  text-align: center;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--amber);
  color: var(--bg-dark);
  padding: 20px 36px;
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.cta-phone:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.cta-phone svg { flex-shrink: 0; }
.cta-hours {
  font-size: 0.9rem;
  color: var(--text-white-muted);
  margin-bottom: 6px;
}
.cta-area {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  color: var(--text-white-muted);
  padding: 56px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; color: var(--text-white-muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a {
  color: var(--text-white-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== STICKY MOBILE BAR ===== */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 16px;
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-dark);
}
.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--amber);
  color: var(--bg-dark);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  transition: var(--transition);
}
.sticky-call-btn:hover { background: var(--amber-light); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .tint-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: auto;
    padding: 100px 0 48px;
    text-align: center;
  }
  .hero-content { margin: 0 auto; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; margin: 0 auto 28px; }
  .hero-cta-row { justify-content: center; }
  .hero-cta-row .btn { width: 100%; max-width: 300px; }
  .hero-trust { justify-content: center; gap: 16px; }
  .hero-trust-item { font-size: 0.78rem; }

  .lp-hero { padding: 100px 0 48px; text-align: center; }
  .lp-hero-content { margin: 0 auto; }
  .lp-hero h1 { font-size: 2rem; }
  .lp-hero .hero-sub { font-size: 1rem; margin: 0 auto 28px; }
  .lp-hero .hero-trust { justify-content: center; }

  .mechanic-page .btn-primary:active,
  .mechanic-page .cta-phone:active,
  .mechanic-page .sticky-call-btn:active {
    transform: scale(0.98);
    box-shadow: 0 6px 18px rgba(245,158,11,0.24);
  }

  .services-grid,
  .steps-grid,
  .benefits-grid,
  .reviews-grid,
  .tint-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 14px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.68rem; }

  .services-grid { gap: 16px; margin-top: 36px; }
  .service-card { padding: 24px 20px; }
  .steps-grid { gap: 20px; margin-top: 36px; }
  .step-num { width: 56px; height: 56px; font-size: 1.1rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
  .benefit-card { padding: 20px 16px; }

  .section-divider { height: 40px; }

  .cta-card { padding: 32px 24px; margin: 32px 0 0; }
  .cta-phone { font-size: 1.2rem; padding: 16px 24px; }

  .faq-list { margin-top: 36px; }
  .faq-question { padding: 16px 18px; font-size: 0.9rem; }

  .footer-grid { flex-direction: column; gap: 24px; text-align: center; }
  .footer-brand { width: 100%; display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-links { justify-content: center; }

  .sticky-call-bar { display: block; }
  body { padding-bottom: 72px; }

  .section-label { padding-left: 0; }
  .section-label::before { display: none; }

  .reviews-grid { gap: 16px; margin-top: 36px; }
  .review-card { padding: 22px; }

  .tint-grid { gap: 14px; margin-top: 36px; grid-template-columns: 1fr 1fr; }
}

@media (hover: none) and (pointer: coarse) {
  .mechanic-page .btn-primary,
  .mechanic-page .cta-phone,
  .mechanic-page .sticky-call-btn {
    animation: call-pop 1.8s ease-in-out infinite;
  }

  .mechanic-page .btn-primary::before,
  .mechanic-page .cta-phone::before,
  .mechanic-page .sticky-call-btn::before {
    animation-duration: 2.8s;
  }

  .mechanic-page .btn-primary svg,
  .mechanic-page .cta-phone svg,
  .mechanic-page .sticky-call-btn svg {
    animation: call-icon-nudge 2.2s ease-in-out infinite;
  }

  .mechanic-page .btn-primary:active,
  .mechanic-page .cta-phone:active,
  .mechanic-page .sticky-call-btn:active {
    animation-duration: 0.9s;
  }
}

@media (max-width: 380px) {
  .hero h1, .lp-hero h1 { font-size: 1.7rem; }
  .stats-grid { gap: 1px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .tint-grid { grid-template-columns: 1fr; }

  .mechanic-page .btn-primary,
  .mechanic-page .cta-phone,
  .mechanic-page .sticky-call-btn {
    animation-duration: 1.5s;
  }
}
