/* ============================================================
   Pristine Headlight Heroes — Clean Design System
   All duplicate rules removed, responsive consolidated here
   ============================================================ */

/* ── Variables ── */
:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: #6b6b6b;
  --line: #ececec;
  --black: #050505;
  --black-2: #0d0d0d;
  --red: #e10600;
  --red-2: #ff2a1f;
  --grad-red: linear-gradient(135deg, #ff2a1f 0%, #e10600 50%, #a30400 100%);
  --grad-dark: linear-gradient(180deg, #070707, #000);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.45);
  --shadow-sm: 0 10px 30px -10px rgba(0,0,0,.15);
  --radius: 18px;
  --radius-lg: 28px;
  --font-display: "Inter Tight","Inter",system-ui,-apple-system,sans-serif;
  --font-body: "Inter",system-ui,-apple-system,sans-serif;
}

/* ── Reset ── */
*, *::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);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
section { position: relative; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; position: relative; }
.section.dark { background: var(--black); color: #fff; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); letter-spacing: -0.03em; }
h3 { font-size: 1.3rem; letter-spacing: -0.015em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--red); }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 60ch; }

/* ── Section headers ── */
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 56px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 14px; font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; white-space: nowrap; line-height: 1;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #ff2626, #d40000);
  color: #fff;
  box-shadow: 0 12px 35px rgba(225,6,0,.4);
}
.btn-primary::before {
  content: ""; position: absolute; left: -120%; top: 0; width: 80%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-25deg); transition: .7s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(225,6,0,.5); }
.btn-primary:hover::before { left: 140%; }
.btn-outline {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.2); color: #fff; background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-dark-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-dark-outline:hover { background: var(--ink); color: #fff; }

/* ── Fade-up animation ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 18px 0;
  background: rgba(5,5,5,.55);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
  color: #fff;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(5,5,5,.88);
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.nav.is-light {
  background: rgba(255,255,255,.88);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.nav.is-light.scrolled { background: rgba(255,255,255,.97); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 60px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; opacity: .85; position: relative;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.call-btn { display: flex; align-items: center; gap: 8px; font-size: .88rem; opacity: .8; transition: opacity .2s; }
.call-btn:hover { opacity: 1; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: currentColor; position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: currentColor; transition: .3s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after { transform: rotate(-45deg); top: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(225,6,0,.2), transparent 35%),
    radial-gradient(circle at 12% 80%, rgba(180,0,0,.12), transparent 35%),
    var(--grad-dark);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay; opacity: .6;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0,0,0,.7) 100%);
}
.hero-noise { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* Hero grid */
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-top { display: flex; flex-direction: column; gap: 16px; }
.hero-logo { width: 220px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px); font-size: .76rem; letter-spacing: .14em;
  color: #ddd; text-transform: uppercase; width: max-content;
}
.badge-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--red-2);
  box-shadow: 0 0 16px var(--red-2); animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 50% { transform: scale(.75); opacity: .4; } }
.hero h1 { color: #fff; max-width: 680px; }
.hero h1 span {
  display: block; margin-top: 12px;
  background: linear-gradient(90deg, #ff3838, #ff8b4d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255,50,50,.45));
}
.hero p { font-size: 1.05rem; line-height: 1.75; color: #bdbdbd; max-width: 560px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.feature { display: flex; align-items: center; gap: 10px; color: #ddd; font-size: .92rem; }
.feature .icon {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(225,6,0,.14); border: 1px solid rgba(255,60,60,.25); color: #ff4040;
}
.hero-stats { display: flex; gap: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); }
.hero-stats h3 { font-size: 1.9rem; color: #fff; margin-bottom: 4px; }
.hero-stats p { font-size: .87rem; color: #8e8e8e; margin: 0; }

/* Hero right */
.hero-showcase {
  position: relative; display: flex; align-items: center; justify-content: center;
  perspective: 1800px; animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat { 50% { transform: translateY(-12px); } }
.light-ring {
  position: absolute; width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,35,35,.16), transparent 65%);
  filter: blur(28px); animation: ringMove 8s ease-in-out infinite alternate; z-index: -1;
}
@keyframes ringMove { 0% { transform: translate(-20px,-20px) scale(1); } 100% { transform: translate(25px,30px) scale(1.08); } }
.compare-wrapper {
  position: relative; width: 100%; max-width: 580px; aspect-ratio: 4/5;
  border-radius: 32px; overflow: hidden; background: #080808;
  box-shadow: 0 60px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05);
  transition: transform .5s ease;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.65));
}
.compare-wrapper::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,40,40,.4), transparent, rgba(255,255,255,.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; pointer-events: none;
}
.compare-wrapper::after {
  content: ""; position: absolute; left: -60%; top: 0; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-25deg); animation: reflection 8s infinite; pointer-events: none;
}
@keyframes reflection { 0% { left: -80%; } 100% { left: 150%; } }
.compare-wrapper:hover { transform: translateY(-6px) rotateX(2deg) rotateY(-2deg); }

/* Glass cards */
.glass-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-radius: 18px;
  background: rgba(18,18,18,.7); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 50px rgba(0,0,0,.5);
  animation: floatCard 5s ease-in-out infinite; z-index: 50; color: #fff;
}
.review-card { top: 55px; left: -42px; }
.mobile-card { bottom: 42px; right: -42px; animation-delay: -2.5s; }
.glass-card .number { font-size: 1.9rem; font-weight: 800; line-height: 1; }
.glass-card div:last-child { font-size: .8rem; line-height: 1.35; color: #bbb; }
@keyframes floatCard { 50% { transform: translateY(-10px); } }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: #888; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
}
.mouse { width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.22); border-radius: 30px; display: flex; justify-content: center; padding-top: 7px; }
.wheel { width: 4px; height: 8px; border-radius: 20px; background: var(--red-2); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }
.mouse-light {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(255,40,40,.16), transparent 70%);
  filter: blur(28px); transform: translate(-50%,-50%);
  transition: left .08s linear, top .08s linear;
}

/* ============================================================
   COMPARE SLIDER
   ============================================================ */
.compare {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  cursor: ew-resize; user-select: none; -webkit-user-select: none;
  border-radius: inherit;
}
.compare > img, .compare .after-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
  transition: transform .8s;
}
.compare:hover img { transform: scale(1.03); }
.compare .after-wrap { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); will-change: clip-path; }
.compare .handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: #fff; box-shadow: 0 0 24px rgba(255,60,60,.7); z-index: 4;
}
.compare .handle::before {
  content: "↔"; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: #111;
  box-shadow: 0 0 0 8px rgba(255,255,255,.08), 0 0 36px rgba(225,6,0,.55);
  animation: pulseHandle 2.4s ease-in-out infinite;
}
@keyframes pulseHandle { 50% { transform: translate(-50%,-50%) scale(.92); box-shadow: 0 0 0 12px rgba(255,255,255,.04), 0 0 50px rgba(225,6,0,.8); } }
.compare .tag {
  position: absolute; top: 18px; padding: 7px 14px; border-radius: 50px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  backdrop-filter: blur(10px); z-index: 3;
}
.compare .tag.before { left: 18px; background: #a30400; color: #fff; }
.compare .tag.after { right: 18px; background: var(--grad-red); color: #fff; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.trust-card {
  padding: 32px 26px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.trust-icon {
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--grad-red); color: #fff; font-size: 1.3rem; box-shadow: 0 8px 22px rgba(225,6,0,.5);
}
.trust-card p { color: var(--muted); font-size: .92rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.gallery-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: #0a0a0a; box-shadow: var(--shadow-lg); transition: transform .5s ease;
}
.gallery-card:hover { transform: scale(1.02); }
.gallery-card .compare { border-radius: 0; }
.gallery-meta {
  position: absolute; left: 18px; bottom: 18px; z-index: 5; color: #fff;
  background: rgba(5,5,5,.65); backdrop-filter: blur(8px); padding: 9px 14px; border-radius: 12px;
}
.gallery-meta .t { font-weight: 700; font-size: .92rem; }
.gallery-meta .s { font-size: .76rem; opacity: .75; letter-spacing: .06em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service {
  padding: 36px; border-radius: var(--radius-lg);
  background: #0d0d0d; border: 1px solid rgba(255,255,255,.08); color: #fff;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .3s, transform .35s;
}
.service:hover { border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.service .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--red); letter-spacing: -0.04em; }
.service h3 { font-size: 1.35rem; color: #fff; }
.service p { color: #a5a5a5; font-size: .93rem; }
.service .feat { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.service .feat span { font-size: .76rem; padding: 5px 11px; background: #1a1a1a; border-radius: 999px; color: #ccc; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
}
.timeline::before {
  content: ""; position: absolute; left: 5%; right: 5%; top: 39px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
  opacity: .3;
}
.tstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; position: relative; }
.tstep .circle {
  width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--red);
  box-shadow: 0 0 0 6px #fff, 0 8px 28px rgba(225,6,0,.4);
  position: relative; z-index: 1; transition: all .35s ease;
}
.tstep:hover .circle { background: var(--grad-red); color: #fff; transform: scale(1.05); }
.tstep h4 { margin-top: 20px; font-size: .98rem; font-family: var(--font-display); font-weight: 700; }
.tstep p { font-size: .84rem; color: var(--muted); margin-top: 6px; }

/* ============================================================
   QUOTE / UPLOAD FORM
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.dropzone {
  border: 2px dashed rgba(255,255,255,.18); border-radius: var(--radius-lg);
  padding: 46px 28px; text-align: center; background: rgba(255,255,255,.02);
  transition: border-color .3s, background .3s; cursor: pointer; color: #fff;
  display: block;
}
.dropzone:hover, .dropzone.drag { border-color: var(--red-2); background: rgba(225,6,0,.05); }
.dropzone .ico {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-red); font-size: 1.5rem; box-shadow: 0 10px 28px rgba(225,6,0,.55);
}
.dropzone h4 { font-size: 1.15rem; }
.dropzone p { color: #a5a5a5; font-size: .88rem; margin-top: 5px; }
.dropzone .types { margin-top: 12px; font-size: .73rem; letter-spacing: .18em; color: #888; text-transform: uppercase; }
.previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px,1fr)); gap: 8px; margin-top: 16px; }
.previews .thumb { aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.previews .thumb img { width: 100%; height: 100%; object-fit: cover; }
.progress { height: 4px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; margin-top: 14px; }
.progress span { display: block; height: 100%; width: 0; background: var(--grad-red); transition: width .4s ease; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form label { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: #a0a0a0; font-weight: 600; margin-bottom: 4px; display: block; }
.form input, .form select, .form textarea {
  width: 100%; padding: 15px 17px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; font: inherit; font-size: .93rem; color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,.1);
}
.section.dark .form input, .section.dark .form select, .section.dark .form textarea {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: #fff;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { margin-top: 6px; align-self: flex-start; }

/* Booking section forms */
#booking .form label { color: #666; }
#booking .form input, #booking .form select, #booking .form textarea { background: #fafafa; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 38px;
}
.google-badge {
  display: flex; align-items: center; gap: 12px; padding: 12px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
}
.google-badge .stars { color: #f5a623; letter-spacing: 2px; }
.google-badge b { font-size: 1.15rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review {
  padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px; transition: transform .35s, box-shadow .35s;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.review .stars { color: #f5a623; letter-spacing: 2px; }
.review p { color: #333; font-size: .95rem; line-height: 1.65; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: var(--grad-red); flex-shrink: 0; }
.review .avatar img { width: 100%; height: 100%; object-fit: cover; }
.review .name { font-weight: 700; font-size: .92rem; }
.review .loc { font-size: .78rem; color: var(--muted); }

/* ============================================================
   AREAS
   ============================================================ */
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.areas span {
  padding: 11px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-weight: 500; font-size: .92rem; transition: all .25s;
}
.areas span:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details {
  border: 1px solid var(--line); border-radius: 16px;
  background: #fff; overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.faq details[open] { border-color: #000; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; list-style: none; font-weight: 600; font-size: 1rem; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; color: var(--red); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 24px 20px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative; padding: 80px; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--grad-dark); color: #fff; text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(225,6,0,.22) 0%, transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #cfcfcf; max-width: 540px; margin: 0 auto; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: #bdbdbd; padding: 80px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo img { height: 64px; margin-bottom: 16px; }
.footer p { font-size: .9rem; line-height: 1.7; color: #9a9a9a; }
.footer h5 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { font-size: .9rem; color: #bdbdbd; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: .8rem; color: #777; flex-wrap: wrap; gap: 12px; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); transition: all .25s; font-size: .88rem;
}
.socials a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

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

/* Tablet — 1100px */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(3,1fr); gap: 32px; }
  .timeline::before { display: none; }
  .glass-card { display: none; }
}

/* Tablet — 900px */
@media (max-width: 900px) {
  .container { padding: 0 22px; }
  .section { padding: 80px 0; }

  /* Nav */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,5,5,.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center;
    gap: 24px; padding: 28px 24px 32px;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    z-index: 9997;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav-links a { font-size: 1.1rem; font-weight: 600; color: #fff; }
  .nav-toggle { display: flex; }
  .call-btn { display: none; }

  /* Hero */
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-content { align-items: center; text-align: center; }
  .hero h1, .hero p { text-align: center; }
  .hero-features { max-width: 420px; }
  .hero-stats { justify-content: center; }
  .hero-showcase { max-width: 520px; margin: 0 auto; width: 100%; }
  .compare-wrapper { max-width: 100%; }

  /* Sections */
  .gallery-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 52px 28px; }
  .form .row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .timeline::before { display: none; }
  .hero-badge { align-self: center; }
  .hero-buttons { justify-content: center; width: 100%; }
  .hero-buttons .btn { flex: 1; min-width: 140px; }
}

/* Mobile — 640px */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }

  .nav-inner { height: 56px; }
  .nav-logo img { height: 34px; }
  .nav .btn { padding: 11px 16px; font-size: .85rem; }

  .hero { padding: 96px 0 50px; }
  .hero-logo { display: none; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero p { font-size: .97rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-features { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .hero-stats { gap: 28px; flex-wrap: wrap; justify-content: center; }
  .hero-stats > div { text-align: center; }
  .hero-stats h3 { font-size: 1.65rem; }

  .trust-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .cta-banner { padding: 40px 20px; border-radius: var(--radius); }
  .cta-row { flex-direction: column; align-items: center; }
  .cta-row .btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small phone — 400px */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .nav-logo img { height: 30px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-badge { font-size: .65rem; padding: 7px 12px; }
  .glass-card { display: none; }
  .service { padding: 26px; }
  .compare .handle::before { width: 46px; height: 46px; font-size: 1rem; }
  .btn { padding: 13px 20px; font-size: .88rem; }
}
