/* ============================================================
   D TECH AUTOCELL ENTERPRISE — Landing page theme
   Theme source: DTECH signboard — charcoal black, chrome/silver,
   electric blue. Fonts: Montserrat (display) / Poppins (body).
   ============================================================ */

:root {
  --bg: #0b0d11;
  --bg-2: #12151b;
  --panel: #181c24;
  --panel-2: #1e232d;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f3f5f9;
  --muted: #a7afbd;
  --accent: #2667ff;
  --accent-soft: #5d92ff;
  --accent-glow: rgba(38, 103, 255, 0.45);
  --whatsapp: #25d366;
  --danger: #ff4d3a;
  --radius: 16px;
  --chrome: linear-gradient(180deg, #ffffff 20%, #c9d2de 55%, #8e99a9 100%);
  --font-display: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.h-section {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  margin: 14px 0 14px;
  text-wrap: balance;
}

.chrome {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blue-em {
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { color: var(--muted); font-size: 17px; max-width: 640px; text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: calc(var(--radius) - 4px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06250f;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); }

.btn-call {
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-call:hover { box-shadow: 0 12px 32px var(--accent-glow); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); }

/* ---------- top bar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(11, 13, 17, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--accent-soft);
  font-style: normal;
}

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

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

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px 13px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle button.active { background: var(--accent); color: #fff; }

.btn-call-top { padding: 11px 20px; font-size: 14px; }

/* ---------- floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: fab-pulse 2.2s ease-out infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70%, 100% { transform: scale(1.65); opacity: 0; }
}
.fab-label {
  position: absolute;
  right: 74px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fab-whatsapp:hover .fab-label { opacity: 1; transform: translateX(0); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(38, 103, 255, 0.16), transparent 65%),
    radial-gradient(700px 420px at 0% 100%, rgba(38, 103, 255, 0.08), transparent 60%),
    var(--bg);
}
.hero::before {
  /* subtle diagonal speed-lines, echoing the signboard chevrons */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 90px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); margin: 18px 0 18px; }
.hero .lede { font-size: 18px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(38, 103, 255, 0.12);
  border: 1px solid rgba(38, 103, 255, 0.4);
  color: var(--accent-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: live 1.8s ease-out infinite;
}
@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 30px;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(38, 103, 255, 0.12);
  position: relative;
}
.hero-visual .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(11, 13, 17, 0.55));
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 560px; object-fit: cover; }

.hero-card {
  position: absolute;
  left: -26px; bottom: 30px;
  background: rgba(20, 24, 31, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.hero-card .ico {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(38, 103, 255, 0.16);
  border: 1px solid rgba(38, 103, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-soft);
}
.hero-card b { font-family: var(--font-display); font-size: 15px; display: block; line-height: 1.25; }
.hero-card span { font-size: 12.5px; color: var(--muted); }

/* battery charge micro-animation in hero card */
.charge-bar {
  width: 100%; height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 6px;
}
.charge-bar i {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--whatsapp));
  animation: charge 2.6s ease-in-out infinite;
}
@keyframes charge {
  0% { width: 12%; }
  80% { width: 100%; }
  100% { width: 100%; }
}

/* ---------- generic section ---------- */
section.block { padding: 96px 0; position: relative; }
section.block.tint { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede { margin: 0 auto; }
.section-head.center .kicker::before { display: none; }

/* ---------- who we serve ---------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.serve-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  height: 290px;
  cursor: default;
}
.serve-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
  filter: saturate(0.9);
}
.serve-card:hover img { transform: scale(1.07); filter: saturate(1.05); }
.serve-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(11, 13, 17, 0.05) 35%, rgba(11, 13, 17, 0.92) 88%);
  transition: background 0.3s ease;
}
.serve-card .meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}
.serve-card:hover .meta { transform: translateY(0); }
.serve-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  display: flex; align-items: center; gap: 9px;
}
.serve-card h3::before {
  content: "";
  width: 18px; height: 3px;
  background: var(--accent);
  flex: none;
}
.serve-card p { font-size: 13.5px; color: var(--muted); margin-top: 5px; }

.serve-cta { text-align: center; margin-top: 42px; }

/* ---------- emergency (sec 3) ---------- */
.emergency {
  background:
    radial-gradient(800px 420px at 100% 0%, rgba(255, 77, 58, 0.08), transparent 60%),
    var(--bg-2);
}
.emerg-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 28px 0;
}
.coverage li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15.5px;
  font-weight: 500;
}
.coverage li .tick {
  width: 24px; height: 24px;
  flex: none;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.response-meter {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.response-meter::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(38, 103, 255, 0.14), transparent 90%);
  animation: sweep 5s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.response-meter > * { position: relative; }
.meter-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(58px, 7vw, 84px);
  line-height: 1;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.meter-unit { font-family: var(--font-display); font-weight: 700; color: var(--accent-soft); font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase; }
.meter-cap { color: var(--muted); font-size: 14px; margin-top: 10px; }

/* ---------- services (sec 4) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: stretch;
}
.services-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 480px;
}
.services-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.services-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11, 13, 17, 0.75), transparent 55%);
}
.services-photo .tag {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
}
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 103, 255, 0.5);
  background: var(--panel-2);
}
.service-item .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(38, 103, 255, 0.13);
  border: 1px solid rgba(38, 103, 255, 0.35);
  color: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-item h3 { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; line-height: 1.3; }
.service-item p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

.services-cta {
  margin-top: 34px;
  background: linear-gradient(100deg, rgba(38, 103, 255, 0.16), rgba(38, 103, 255, 0.05));
  border: 1px solid rgba(38, 103, 255, 0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.services-cta b { font-family: var(--font-display); font-style: italic; font-size: 19px; }
.services-cta .row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- how it works (sec 5) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(38, 103, 255, 0.45); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.step h3 { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; line-height: 1.35; }
.step p { font-size: 13px; color: var(--muted); margin-top: 7px; }
.step::after {
  content: "";
  position: absolute;
  top: 38px; right: -14px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.7;
}
.step:last-child::after { display: none; }

/* ---------- why choose (sec 6) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(38, 103, 255, 0.5); background: var(--panel-2); }
.why-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(38, 103, 255, 0.13);
  border: 1px solid rgba(38, 103, 255, 0.35);
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.why-card.hot .ico { background: rgba(255, 77, 58, 0.12); border-color: rgba(255, 77, 58, 0.4); color: var(--danger); }
.why-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; line-height: 1.3; }
.why-card p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

.why-cta {
  margin-top: 38px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 28px;
}
.why-cta h3 { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 26px; }
.why-cta p { color: var(--muted); margin: 8px auto 22px; max-width: 520px; }
.why-cta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- reviews (sec 7) ---------- */
.reviews-rail-wrap { overflow: hidden; margin: 0 -24px; padding: 6px 24px; }
.reviews-rail {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.review {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { color: #ffc527; letter-spacing: 3px; font-size: 15px; }
.review p { font-size: 14.5px; color: #cdd4df; flex: 1; }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(160deg, var(--accent-soft), var(--accent));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.review .who b { font-size: 14px; display: block; }
.review .who span { font-size: 12px; color: var(--muted); }

.reviews-nav { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 30px; }
.rev-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.rev-btn:hover { border-color: var(--accent); background: var(--panel-2); }
.rev-dots { display: flex; gap: 8px; }
.rev-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  padding: 0;
}
.rev-dots button.active { background: var(--accent); transform: scale(1.3); }

/* ---------- gallery marquee ---------- */
.gallery-note { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.marquee {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee::-webkit-scrollbar { display: none; }
.marquee.dragging { cursor: grabbing; }
.marquee.dragging .shot img { pointer-events: none; }
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 24px;
}
.shot {
  position: relative;
  flex: none;
  width: 270px; height: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 10px;
  font-size: 12.5px;
  font-weight: 500;
  background: linear-gradient(0deg, rgba(11, 13, 17, 0.9), transparent);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq.open { border-color: rgba(38, 103, 255, 0.5); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  padding: 19px 22px;
  cursor: pointer;
}
.faq-q .chev {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-soft);
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq.open .faq-q .chev { transform: rotate(180deg); background: rgba(38, 103, 255, 0.15); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- final CTA (sec 9) ---------- */
.final-cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}
.final-cta .bg {
  position: absolute;
  inset: 0;
  background: url("images/cta-bg.jpg") center 35% / cover no-repeat;
  filter: blur(7px) brightness(0.34) saturate(0.85);
  transform: scale(1.08);
}
.final-cta .bg-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 13, 17, 0.6), rgba(11, 13, 17, 0.35) 50%, var(--bg)); }
.final-cta .wrap { position: relative; }
.final-cta h2 { font-size: clamp(34px, 5vw, 60px); }
.final-cta .lede { margin: 16px auto 30px; }
.final-cta .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- find us (sec 10) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-row {
  display: flex;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.c-row:last-of-type { border-bottom: 0; }
.c-row .ico {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 11px;
  background: rgba(38, 103, 255, 0.13);
  border: 1px solid rgba(38, 103, 255, 0.35);
  color: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.c-row b { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; }
.c-row a, .c-row span.val { font-size: 15.5px; font-weight: 500; }
.c-row a:hover { color: var(--accent-soft); }
.contact-card .btn { margin-top: 18px; }

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  position: relative;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: var(--bg);
}
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.foot-inner .brand img { width: 38px; height: 38px; }
.foot-inner p { font-size: 13px; color: var(--muted); }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav { display: none; }
  .hero-grid, .emerg-grid, .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-visual img { height: 420px; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .review { flex: 0 0 calc((100% - 20px) / 2); }
  .services-photo { min-height: 340px; }
}
@media (max-width: 640px) {
  .topbar-inner { height: 66px; gap: 12px; }
  .brand-name { display: none; }
  .serve-grid, .services-list, .why-grid, .steps { grid-template-columns: 1fr; }
  .review { flex: 0 0 100%; }
  .coverage { grid-template-columns: 1fr; }
  .hero-card { left: 12px; right: 12px; }
  .btn-call-top { padding: 10px 14px; }
  .btn-call-top .label-lg { display: none; }
  section.block { padding: 64px 0; }
}
