/* =========================================================
   ELITE CAR INSPECTION — Dark / Gold / Silver theme
   ========================================================= */

:root {
  --bg: #050608;
  --bg-2: #0b0d12;
  --surface: #0f1218;
  --surface-2: #14181f;
  --border: rgba(201, 169, 97, 0.18);
  --border-strong: rgba(201, 169, 97, 0.4);

  --text: #e9edf2;
  --text-dim: #a3a9b3;
  --text-muted: #6c727c;

  --gold: #c9a961;
  --gold-bright: #e8c882;
  --gold-deep: #a8842c;
  --silver: #d6d8db;
  --chrome: linear-gradient(180deg, #f5f5f5 0%, #b9bcc1 50%, #6f7378 100%);
  --gold-grad: linear-gradient(135deg, #e8c882 0%, #c9a961 45%, #a8842c 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(232,200,130,0.18), rgba(168,132,44,0.05));

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-gold: 0 10px 40px -15px rgba(201, 169, 97, 0.45);
  --shadow-deep: 0 25px 60px -20px rgba(0,0,0,0.7);

  --maxw: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ---------- Background layers ---------- */

.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
}
.bg-glow-1 {
  background: radial-gradient(circle, rgba(201,169,97,0.5), transparent 70%);
  top: -200px; right: -200px;
}
.bg-glow-2 {
  background: radial-gradient(circle, rgba(80, 100, 180, 0.25), transparent 70%);
  bottom: -200px; left: -200px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn.btn-gold {
  background: var(--gold-grad);
  color: #0a0700;
  box-shadow: var(--shadow-gold);
}
.btn.btn-gold:hover {
  transform: translateY(-2px);
  color: #0a0700;
  box-shadow: 0 16px 50px -15px rgba(232, 200, 130, 0.7);
}

.btn.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--border-strong);
}
.btn.btn-outline:hover {
  background: var(--gold-grad-soft);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 50;
  background: rgba(5, 6, 8, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(5, 6, 8, 0.85);
  border-bottom-color: var(--border);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name {
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.22em;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  transition: color .2s ease;
}
.nav a:not(.btn):hover { color: var(--gold-bright); }
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold-grad);
  transition: width .3s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 60px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy { max-width: 640px; }

.hero-title {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: min(6.5vw, 3.2rem);
  line-height: 1.2;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0 0 14px;
  max-width: 540px;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 36px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  background:
    linear-gradient(180deg, #1a1f28 0%, #0a0d12 100%);
  aspect-ratio: 4 / 5;
}
.hero-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,0.15) 0%, rgba(5,6,8,0.95) 95%);
  z-index: 1;
}

.hero-card-overlay {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13px;
  display: flex; flex-direction: column; gap: 10px;
}
.diag-row {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dim);
}
.diag-row .diag-status {
  margin-left: auto;
  font-weight: 600;
  color: #6dd97a;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.diag-row .diag-status.warn { color: #f5b352; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.dot-ok { background: #6dd97a; box-shadow: 0 0 10px #6dd97a; }
.dot-warn { background: #f5b352; box-shadow: 0 0 10px #f5b352; }

.hero-shield {
  position: absolute;
  top: -30px; right: -30px;
  width: 130px;
  opacity: 0.85;
  filter: drop-shadow(0 8px 24px rgba(232, 200, 130, 0.4));
  animation: float 6s ease-in-out infinite;
}

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

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid var(--border-strong);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 8px;
  background: var(--gold-bright);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- Sections ---------- */

.section {
  padding: 110px 0;
  position: relative;
}
.section-alt {
  background:
    linear-gradient(180deg, transparent, rgba(15,18,24,0.6) 50%, transparent),
    radial-gradient(ellipse at top, rgba(201,169,97,0.06), transparent 70%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-title {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.section-sub {
  color: var(--text-dim);
  font-size: 16px;
  margin: 0;
}

/* ---------- Features ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity .3s ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}
.feature:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-grad-soft);
  border: 1px solid var(--border-strong);
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 600;
}
.feature p {
  color: var(--text-dim);
  margin: 0;
  font-size: 15px;
}

/* ---------- Inspection Coverage (interactive hotspots) ---------- */

.coverage-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
  background:
    radial-gradient(ellipse at center, rgba(201,169,97,0.08), transparent 65%),
    linear-gradient(180deg, rgba(15,18,24,0.6), rgba(5,6,8,0.9));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: visible;
  isolation: isolate;
}

.coverage-car {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.65));
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hud-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}
.hud-tl { top: 14px; left: 14px; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.hud-tr { top: 14px; right: 14px; border-left: none; border-bottom: none; border-top-right-radius: 8px; }
.hud-bl { bottom: 14px; left: 14px; border-right: none; border-top: none; border-bottom-left-radius: 8px; }
.hud-br { bottom: 14px; right: 14px; border-left: none; border-top: none; border-bottom-right-radius: 8px; }

.hud-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hud-scan {
  position: absolute;
  top: 0; left: -10%;
  width: 25%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,200,130,0.18), transparent);
  pointer-events: none;
  z-index: 2;
  animation: sweep 6s ease-in-out infinite;
  border-radius: var(--radius-lg);
}
@keyframes sweep {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(440%); opacity: 0; }
}

.hotspot {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
}
.hotspot:focus { outline: none; }
.hotspot:focus-visible .hot-dot {
  box-shadow: 0 0 0 2px rgba(232,200,130,0.5);
}

.hot-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7d8 0%, #e8c882 50%, #a8842c 100%);
  box-shadow: 0 0 4px rgba(232,200,130,0.5);
  z-index: 2;
  transition: transform .25s ease;
}

.hot-ring {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: pulse 3s ease-out infinite;
  z-index: 1;
}
.hotspot:nth-child(odd) .hot-ring { animation-delay: 0s; }
.hotspot:nth-child(even) .hot-ring { animation-delay: 1.5s; }

@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0.55; }
  100% { transform: scale(1.8); opacity: 0; }
}

.hot-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(5,6,8,0.7);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.85;
}

.hot-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 22px);
  transform: translateX(-50%) translateY(8px);
  width: 240px;
  background: linear-gradient(180deg, rgba(20,24,31,0.98), rgba(10,12,16,0.98));
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 18px 50px -12px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,169,97,0.2);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease, transform .25s ease, visibility 0s linear .25s;
  z-index: 10;
  text-align: left;
}
.hot-card::after {
  content: '';
  position: absolute;
  bottom: -7px; left: 50%;
  width: 12px; height: 12px;
  background: rgba(20,24,31,0.98);
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}
.hot-card-num { display: none; }
.hot-card strong {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hot-card > span:not(.hot-card-num) {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot.active,
.hotspot.hovered {
  z-index: 30;
}
.hotspot:hover .hot-card,
.hotspot:focus-visible .hot-card,
.hotspot.active .hot-card,
.hotspot.hovered .hot-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}
.hotspot:hover .hot-dot,
.hotspot.active .hot-dot,
.hotspot.hovered .hot-dot {
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(232,200,130,0.7);
}
.hotspot:hover .hot-ring,
.hotspot.active .hot-ring,
.hotspot.hovered .hot-ring {
  border-color: var(--gold-bright);
}
.hotspot:hover .hot-num,
.hotspot.active .hot-num,
.hotspot.hovered .hot-num {
  opacity: 1;
  color: var(--gold-bright);
}

.hotspot[data-id="9"] .hot-card,
.hotspot[data-id="10"] .hot-card {
  left: auto; right: 50%;
  transform: translateX(50%) translateY(8px);
}
.hotspot[data-id="9"]:hover .hot-card,
.hotspot[data-id="10"]:hover .hot-card,
.hotspot[data-id="9"].active .hot-card,
.hotspot[data-id="10"].active .hot-card,
.hotspot[data-id="9"].hovered .hot-card,
.hotspot[data-id="10"].hovered .hot-card {
  transform: translateX(50%) translateY(0);
}
.hotspot[data-id="9"] .hot-card::after,
.hotspot[data-id="10"] .hot-card::after {
  left: auto; right: 50%;
  transform: translateX(50%) rotate(45deg);
}

.hotspot[data-id="6"] .hot-card,
.hotspot[data-id="7"] .hot-card {
  bottom: auto;
  top: calc(100% + 22px);
}
.hotspot[data-id="6"] .hot-card::after,
.hotspot[data-id="7"] .hot-card::after {
  bottom: auto;
  top: -7px;
  border-right: none; border-bottom: none;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
}

.coverage-readout {
  display: none;
  margin: 24px auto 0;
  max-width: 540px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 18px 20px;
  align-items: center;
  gap: 16px;
}
.readout-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  min-width: 38px;
  text-align: center;
}
.readout-text strong {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 2px;
}
.readout-text span {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1.3;
}
.coverage-list li span {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.coverage-list li:hover,
.coverage-list li.active {
  border-color: var(--gold);
  color: var(--text);
  background: linear-gradient(180deg, rgba(201,169,97,0.08), rgba(201,169,97,0.02));
  transform: translateY(-2px);
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-deep);
}

.service-card-featured {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(201,169,97,0.12), rgba(201,169,97,0.02)),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-gold);
  transform: translateY(-12px);
}
.service-card-featured:hover {
  transform: translateY(-18px);
}

.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #1a1304;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.service-head h3 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 24px;
  margin: 0 0 6px;
  font-weight: 600;
}
.service-tag {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-price .currency {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.service-price .amount {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.service-price .duration {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.service-desc {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 7px;
  border-left: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: rotate(-45deg);
}

.service-card .btn { margin-top: auto; }

/* ---------- Process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.process-step {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.step-num {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step h3 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 600;
}
.process-step p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
}
.process-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}

/* ---------- CTA Strip ---------- */

.cta-strip {
  padding: 60px 0;
  background:
    linear-gradient(135deg, rgba(232,200,130,0.12), rgba(168,132,44,0.04)),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 6px;
  font-weight: 600;
}
.cta-inner p { color: var(--text-dim); margin: 0; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.contact-info .section-sub {
  text-align: left;
  margin-bottom: 36px;
}

.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-grad-soft);
  border: 1px solid var(--border-strong);
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--gold-bright); }

/* Form */
.contact-form {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-deep);
}
.contact-form h3 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 22px;
  margin: 0 0 4px;
  font-weight: 600;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(5, 6, 8, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}
.form-status {
  font-size: 14px;
  margin: 4px 0 0;
  color: var(--gold-bright);
  min-height: 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: rgba(5,6,8,0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 8px; border: 1px solid var(--border-strong); }
.footer-brand p { margin: 0; font-size: 12px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; justify-content: center; }
.footer-links a { font-size: 14px; color: var(--text-dim); transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-meta { text-align: right; font-size: 13px; color: var(--text-muted); }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero-copy { max-width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .service-card-featured { transform: none; }
  .service-card-featured:hover { transform: translateY(-6px); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .coverage-layout { grid-template-columns: 1fr; gap: 24px; }
  .coverage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hot-card { width: 200px; padding: 12px 14px; }
  .hot-card strong { font-size: 12px; }
  .hot-card > span:not(.hot-card-num) { font-size: 12px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: rgba(5, 6, 8, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    gap: 8px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    z-index: 49;
  }
  .nav.open { transform: translateY(0); }
  .nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav a:last-child { border-bottom: none; margin-top: 8px; text-align: center; }
  .nav a:not(.btn)::after { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }

  .hero { padding-top: calc(var(--header-h) + 30px); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 9px; letter-spacing: 0.12em; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; }
  .footer-links { flex-wrap: wrap; }

  .cta-inner { flex-direction: column; text-align: center; }

  .hero-shield { width: 90px; top: -20px; right: -10px; }

  /* Coverage: hide tooltips on small screens — use the bottom readout instead */
  .coverage-stage { aspect-ratio: 2 / 1; }
  .hotspot { width: 18px; height: 18px; }
  .hot-num { font-size: 9px; padding: 1px 4px; top: -14px; }
  .hotspot .hot-card { display: none; }
  .coverage-readout { display: flex; }
  .coverage-list { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .brand-text { display: none; }
  .hero-title { font-size: 1.55rem; letter-spacing: 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 8px; }
  .stat-num { font-size: 18px; }
  .service-card { padding: 28px 22px; }
  .service-price .amount { font-size: 36px; }
  .coverage-list { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
