/* ===========================================================
   LMG Motorsports LLC — Stylesheet (v2)
   Palette: black / white / blue
   =========================================================== */

:root {
  --bg:            #05070a;
  --bg-2:          #0a0d12;
  --bg-3:          #10141b;
  --bg-card:       #0d1117;
  --bg-elev:       #141a22;

  --white:         #ffffff;
  --text:          #e9ecf1;
  --text-dim:      rgba(233, 236, 241, 0.70);
  --text-mute:     rgba(233, 236, 241, 0.48);

  --line:          rgba(255, 255, 255, 0.07);
  --line-2:        rgba(255, 255, 255, 0.14);
  --line-hi:       rgba(255, 255, 255, 0.24);

  --blue:          #1a8bff;
  --blue-bright:   #4aa5ff;
  --blue-soft:     #8bc4ff;
  --blue-deep:     #0a5fb8;
  --blue-glow:     rgba(26, 139, 255, 0.45);
  --blue-mist:     rgba(26, 139, 255, 0.08);

  --radius-lg:     20px;
  --radius:        14px;
  --radius-sm:     10px;

  --container:     1200px;
  --nav-h:         72px;

  --shadow-xl:     0 40px 100px rgba(0, 0, 0, 0.55);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-blue:   0 14px 40px rgba(26, 139, 255, 0.32);

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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;
  overflow-x: hidden;
}

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

a { color: var(--blue-bright); text-decoration: none; }
a:hover { color: var(--white); }

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

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}
.scroll-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
  box-shadow: 0 0 10px rgba(26, 139, 255, 0.55);
  transition: width 0.08s linear;
  will-change: width;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 80;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  background: rgba(5, 7, 10, 0.35);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 10, 0.85);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.brand-accent { color: var(--blue-bright); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  position: relative;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s var(--ease);
  padding: 6px 2px;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a[data-section]::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
  transition: right .3s var(--ease);
}
.nav-menu a[data-section].is-active {
  color: var(--white);
}
.nav-menu a[data-section].is-active::after { right: 0; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 6px 20px rgba(26, 139, 255, 0.35);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 139, 255, 0.5);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  width: 24px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

/* ---------- GENERAL ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(26, 139, 255, 0.10);
  border: 1px solid rgba(26, 139, 255, 0.32);
  font-size: 13px;
  color: var(--blue-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(74, 165, 255, 0.8);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 165, 255, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 165, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 165, 255, 0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 18px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blue-bright);
  opacity: 0.7;
}

.gradient-text {
  background: linear-gradient(135deg, #4aa5ff 0%, #8bc4ff 50%, #4aa5ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
}
@keyframes shine {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 140px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, #0c1826 0%, var(--bg) 65%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #1a8bff, transparent 60%);
  top: -120px; left: -140px;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #0a5fb8, transparent 65%);
  bottom: -120px; right: -80px;
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, -30px); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 78%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}

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

.hero h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 22px 0 22px;
}

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 520px;
}
.hero-stats li {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.hero-stats strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: -0.01em;
}
.hero-stats span {
  color: var(--text-mute);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
  display: block;
}

/* Hero visual card */
.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
}
.hero-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(155deg, rgba(26, 139, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  position: relative;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.hero-card.ticket-refresh {
  animation: float 7s ease-in-out infinite, ticket-pulse 0.9s ease-out;
}
@keyframes ticket-pulse {
  0%   { box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 0 rgba(26, 139, 255, 0.55); }
  60%  { box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 14px rgba(26, 139, 255, 0); }
  100% { box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 0 rgba(26, 139, 255, 0); }
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26,139,255,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.hero-card-label { color: var(--white); font-weight: 600; }
.hero-card-ticket {
  margin-left: auto;
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  font-size: 11px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22d37d;
  box-shadow: 0 0 0 0 rgba(34, 211, 125, 0.7);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34, 211, 125, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 211, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 125, 0); }
}

/* ---------- Ticket: mini route map ---------- */
.ticket-map {
  position: relative;
  border-radius: 12px;
  padding: 8px 10px 6px;
  background: linear-gradient(180deg, rgba(26,139,255,0.08), rgba(26,139,255,0.02));
  border: 1px solid rgba(26,139,255,0.18);
  margin-bottom: 14px;
}
.ticket-map svg { display: block; width: 100%; height: 64px; }
.ticket-route-path {
  stroke-dashoffset: 100;
  animation: route-dash 5s linear infinite;
}
@keyframes route-dash {
  to { stroke-dashoffset: 0; }
}
.ticket-pin-pulse {
  transform-origin: 300px 30px;
  animation: pin-ring 2s ease-out infinite;
}
@keyframes pin-ring {
  0%   { r: 5;  opacity: 0.7; }
  100% { r: 14; opacity: 0; }
}
.ticket-map-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 2px;
}
.ticket-map-eta {
  color: #22d37d;
  font-weight: 700;
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
}

/* ---------- Ticket: job block ---------- */
.ticket-job {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
}
.ticket-job-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,139,255,0.2), rgba(26,139,255,0.05));
  border: 1px solid rgba(26,139,255,0.25);
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.ticket-job strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}
.ticket-job span {
  display: block;
  color: var(--text-mute);
  font-size: 12.5px;
  margin-top: 3px;
}

/* ---------- Ticket: progress stepper ---------- */
.ticket-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  position: relative;
}
.ticket-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.ticket-steps li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.ticket-steps li:last-child::after { display: none; }
.ticket-steps li.done::after {
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}
.ticket-steps .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--line-2);
  position: relative;
  z-index: 1;
  transition: all .3s var(--ease);
}
.ticket-steps li.done .dot {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  box-shadow: 0 0 8px rgba(79,176,255,0.6);
}
.ticket-steps li.active .dot {
  background: #22d37d;
  border-color: #22d37d;
  box-shadow: 0 0 0 0 rgba(34, 211, 125, 0.5);
  animation: pulse-green 2s infinite;
}
.ticket-steps .lbl {
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.ticket-steps li.done .lbl { color: var(--white); }
.ticket-steps li.active .lbl { color: #22d37d; font-weight: 600; }

/* ---------- Ticket: meta rows ---------- */
.ticket-meta {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 12px;
}
.ticket-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.ticket-meta-label {
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10.5px;
}
.ticket-meta-val {
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticket-avatar {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Ticket: trust strip ---------- */
.ticket-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ticket-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ticket-trust-item:first-child {
  color: #ffc048;
  font-weight: 700;
}
.ticket-trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line-2);
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(26, 139, 255, 0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--blue-bright);
  background: rgba(26, 139, 255, 0.06);
}

.btn-block { width: 100%; }

/* ---------- FORM ACTIONS ---------- */
.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.form-hint {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 2px 0 0;
  line-height: 1.5;
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { justify-content: center; }
.section h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 16px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
  line-height: 1.65;
}

/* ---------- SERVICES ---------- */
.services-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(26,139,255,0.06), transparent 40%),
    var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  background: linear-gradient(155deg, var(--bg-card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(26,139,255,0.16), transparent 45%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 139, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(26,139,255,0.1);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26,139,255,0.18), rgba(26,139,255,0.04));
  color: var(--blue-bright);
  margin-bottom: 22px;
  border: 1px solid rgba(26,139,255,0.22);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 15px;
}
.service-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Maintenance plan banner */
.plan-banner {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(26,139,255,0.14) 0%, rgba(26,139,255,0.04) 55%, var(--bg-card) 100%);
  border: 1px solid rgba(26,139,255,0.28);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.plan-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26,139,255,0.28), rgba(26,139,255,0.08));
  color: var(--blue-bright);
  border: 1px solid rgba(26,139,255,0.35);
}
.plan-banner-icon svg { width: 28px; height: 28px; }
.plan-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.plan-banner-copy {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 58ch;
}
.plan-banner-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.plan-banner-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.plan-banner-price-from {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.plan-banner-price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}
.plan-banner-price-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 2px;
}

/* ---------- HOW IT WORKS ---------- */
.section-process {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: process;
}
.process-step {
  position: relative;
  background: linear-gradient(155deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
  overflow: hidden;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(26,139,255,0.55), transparent);
  opacity: 0;
  transition: opacity .32s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(26,139,255,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.process-step:hover::before { opacity: 1; }
.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 18px;
}
.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26,139,255,0.18), rgba(26,139,255,0.04));
  color: var(--blue-bright);
  border: 1px solid rgba(26,139,255,0.22);
  margin-bottom: 20px;
}
.process-icon svg { width: 24px; height: 24px; }
.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.process-step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

.brands-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
}
.brands-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 700;
  padding-right: 20px;
  border-right: 1px solid var(--line-2);
  white-space: nowrap;
}
.brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  flex: 1;
}
.brands-list li {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: color .2s var(--ease);
}
.brands-list li:hover { color: var(--white); }

/* ---------- COVERAGE / MAP ---------- */
.section-map {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: stretch;
}

.coverage-side {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coverage-chip {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,139,255,0.15), rgba(26,139,255,0.02));
  border: 1px solid rgba(26,139,255,0.28);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chip-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--blue-soft);
  font-weight: 600;
}
.coverage-chip strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.chip-sub {
  color: var(--text-mute);
  font-size: 13px;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  flex: 1;
}
.city-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
}
.city-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(26,139,255,0.15);
  flex-shrink: 0;
}
.city-dot-accent {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  min-height: 520px;
  box-shadow: var(--shadow-lg);
}
#map {
  position: absolute;
  inset: 0;
  background: #0e1620;
}
.map-legend {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(5,7,10,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.map-legend > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-legend span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.legend-hq  { background: #fff;           box-shadow: 0 0 0 2px rgba(26,139,255,0.8); }
.legend-svc { background: var(--blue-bright); box-shadow: 0 0 0 2px rgba(255,255,255,0.2); }
.legend-area{ background: rgba(26,139,255,0.22); border: 1px solid var(--blue-bright); }

/* Leaflet dark tweaks */
.leaflet-container {
  background: #0e1620 !important;
  font-family: 'Inter', sans-serif;
}
.leaflet-control-attribution {
  background: rgba(5,7,10,0.65) !important;
  color: var(--text-mute) !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
  backdrop-filter: blur(8px);
}
.leaflet-control-attribution a { color: var(--blue-soft) !important; }
.leaflet-control-zoom a {
  background: rgba(5,7,10,0.85) !important;
  color: var(--white) !important;
  border: 1px solid var(--line-2) !important;
  backdrop-filter: blur(8px);
}
.leaflet-control-zoom a:hover {
  background: rgba(26,139,255,0.3) !important;
}

/* Custom markers */
.marker-hq,
.marker-svc {
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .2s var(--ease);
}
.marker-hq {
  width: 28px !important;
  height: 28px !important;
  background: #fff;
  border: 3px solid var(--blue-bright);
  box-shadow: 0 0 0 6px rgba(26,139,255,0.25), 0 4px 16px rgba(0,0,0,0.5);
  animation: hq-pulse 2.4s infinite;
}
@keyframes hq-pulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(26,139,255,0.25), 0 4px 16px rgba(0,0,0,0.5); }
  50%     { box-shadow: 0 0 0 12px rgba(26,139,255,0.05), 0 4px 16px rgba(0,0,0,0.5); }
}
.marker-svc {
  width: 16px !important;
  height: 16px !important;
  background: var(--blue-bright);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(26,139,255,0.3), 0 2px 8px rgba(0,0,0,0.5);
}
.marker-svc:hover, .marker-hq:hover { transform: scale(1.12); }

.leaflet-popup-content-wrapper {
  background: rgba(13,17,23,0.96) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.leaflet-popup-content {
  margin: 10px 14px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}
.leaflet-popup-content strong { color: var(--blue-bright); }
.leaflet-popup-tip { background: rgba(13,17,23,0.96) !important; }
.leaflet-popup-close-button { color: var(--text-mute) !important; }

/* ---------- GALLERY ---------- */
.gallery-section {
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-item-lg {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-zoom {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(5,7,10,0.7);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }

.gallery-item.placeholder img { display: none; }
.gallery-item.placeholder {
  background:
    repeating-linear-gradient(45deg,
      rgba(26,139,255,0.08) 0 14px,
      transparent 14px 28px),
    var(--bg-card);
}
.gallery-item.placeholder::after {
  content: "Add photo";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- BEFORE / AFTER SLIDER ---------- */
.ba-feature {
  margin-bottom: 48px;
  background: linear-gradient(155deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.ba-header {
  margin-bottom: 22px;
}
.ba-header .eyebrow { margin-bottom: 12px; }
.ba-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ba-header p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 640px;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  --pos: 50%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  transition: clip-path .08s linear;
  will-change: clip-path;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(5,7,10,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}
.ba-label-before { left: 16px; }
.ba-label-after  { right: 16px; background: rgba(26,139,255,0.85); border-color: rgba(255,255,255,0.25); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.95) 20%, rgba(255,255,255,0.95) 80%, transparent);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 4;
  transition: filter .2s var(--ease);
}
.ba-handle::before,
.ba-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 30%;
  background: rgba(255,255,255,0.35);
  transform: translateX(-50%);
}
.ba-handle::before { top: 0; }
.ba-handle::after  { bottom: 0; }

.ba-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26,139,255,0.55), 0 0 0 4px rgba(5,7,10,0.6);
  transition: transform .2s var(--ease);
}
.ba-slider:hover .ba-handle-grip,
.ba-slider.is-dragging .ba-handle-grip {
  transform: translate(-50%, -50%) scale(1.08);
}
.ba-slider.is-dragging { cursor: ew-resize; }
.ba-slider.is-dragging .ba-before-wrap { transition: none; }

.ba-handle-line { display: none; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fade-in .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 95vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-2);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--blue);
  transform: scale(1.06);
}
.lightbox-close { top: 24px; right: 24px; font-size: 32px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- ABOUT ---------- */
.section-about {
  background:
    radial-gradient(circle at 20% 50%, rgba(26,139,255,0.08), transparent 40%),
    var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { margin: 10px 0 18px; }
.about-copy p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 520px;
}
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.about-panel {
  display: grid;
  gap: 14px;
  padding: 32px;
  background: linear-gradient(155deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.about-feature:last-child { border-bottom: 0; }
.about-feature svg {
  flex-shrink: 0;
  color: var(--blue-bright);
  padding: 8px;
  background: rgba(26,139,255,0.12);
  border-radius: 10px;
  border: 1px solid rgba(26,139,255,0.2);
  box-sizing: content-box;
  width: 18px; height: 18px;
}
.about-feature strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.about-feature span {
  color: var(--text-dim);
  font-size: 14px;
}

/* ---------- TESTIMONIALS ---------- */
.section-testimonials {
  background:
    radial-gradient(circle at 85% 20%, rgba(26,139,255,0.07), transparent 45%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  position: relative;
  margin: 0;
  padding: 30px 28px 26px;
  background: linear-gradient(155deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
  overflow: hidden;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  right: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: rgba(26,139,255,0.12);
  pointer-events: none;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(26,139,255,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f5c23a;
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial blockquote {
  margin: 0;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: 1px solid rgba(26,139,255,0.35);
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.testimonial-meta strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.testimonial-meta span {
  color: var(--text-mute);
  font-size: 13px;
}

/* ---------- FORMS ---------- */
.section-forms {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.forms-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.contact-column {
  display: grid;
  gap: 22px;
}

.form-card {
  background: linear-gradient(155deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-card-compact { padding: 24px; }

.contact-cta {
  display: grid;
  gap: 14px;
  text-align: center;
}
.contact-cta-title {
  font-size: 18px;
  margin: 0;
}
.contact-cta-copy {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

.form-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.form-card-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.form-badge {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
  padding: 4px 10px;
  background: rgba(26,139,255,0.1);
  border: 1px solid rgba(26,139,255,0.28);
  border-radius: 999px;
  font-weight: 600;
}

form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Floating label fields */
.field {
  position: relative;
  margin-bottom: 12px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 18px 14px 12px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea {
  padding-top: 22px;
  min-height: 110px;
  resize: vertical;
}
.field label:not(.label-static) {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 14px;
  color: var(--text-mute);
  pointer-events: none;
  transition: transform .18s var(--ease), color .18s var(--ease), font-size .18s var(--ease);
  transform-origin: left top;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(26,139,255,0.18);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-8px) scale(0.82);
  color: var(--blue-bright);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-mute) 50%),
    linear-gradient(135deg, var(--text-mute) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-top: 22px;
}
.label-static {
  position: absolute;
  left: 14px;
  top: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  pointer-events: none;
}

.hp { position: absolute; left: -5000px; }

/* Contact info */
.contact-info {
  display: grid;
  gap: 8px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--white);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-row:not(.no-hover):hover {
  border-color: rgba(26,139,255,0.5);
  transform: translateX(3px);
  color: var(--white);
}
.contact-row.no-hover { cursor: default; }
.contact-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(26,139,255,0.12);
  color: var(--blue-bright);
  border: 1px solid rgba(26,139,255,0.22);
  flex-shrink: 0;
}
.contact-row span {
  display: block;
  color: var(--text-mute);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 2px;
}
.contact-row strong {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  word-break: break-word;
}

/* ---------- SUCCESS BANNER ---------- */
.success-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: var(--white);
  padding: 14px 58px 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-xl);
  z-index: 90;
  font-size: 15px;
  max-width: calc(100% - 40px);
  animation: banner-in .4s var(--ease);
}
@keyframes banner-in {
  from { transform: translate(-50%, 20px); opacity: 0; }
  to   { transform: translate(-50%, 0); opacity: 1; }
}
.success-banner button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.22);
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.footer-brand { }
.footer-tag {
  color: var(--text-mute);
  font-size: 14px;
  margin: 10px 0 0;
}
.footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer nav a { color: var(--text-dim); font-size: 14px; }
.footer nav a:hover { color: var(--blue-bright); }
.footer-contact {
  display: grid;
  gap: 4px;
  text-align: right;
  font-size: 14px;
}
.footer-contact a { color: var(--text-dim); }
.footer-contact a:hover { color: var(--blue-bright); }
.copy {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 440px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .forms-inner { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item-lg { grid-column: span 2; grid-row: span 1; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact { text-align: center; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero { padding: calc(var(--nav-h) + 32px) 0 72px; }
  .hero h1 { margin: 14px 0 14px; }
  .lede { margin: 0 0 22px; }
  .hero-actions { margin-bottom: 24px; gap: 10px; }
  .hero-actions .btn { flex: 1; justify-content: center; }

  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5,7,10,0.98);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }
  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav-menu a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .nav.open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: none;
  }
  .hero-stats li { padding: 12px 8px; text-align: center; }
  .hero-stats strong { font-size: 20px; }
  .hero-stats span { font-size: 10px; letter-spacing: 0.1em; }
  .hero-card { padding: 16px; }
  form .row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item-lg { grid-column: span 1; }
  .city-list { grid-template-columns: 1fr; }

  .plan-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 20px;
    gap: 18px;
  }
  .plan-banner-icon { margin: 0 auto; }
  .plan-banner-copy { margin: 0 auto; }
  .plan-banner-cta {
    flex-direction: column;
    gap: 14px;
  }
  .plan-banner-price { align-items: center; }

  .process-step { padding: 28px 22px 22px; }
  .brands-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
  }
  .brands-label {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-2);
    width: 100%;
  }
  .brands-list { gap: 8px 18px; }

  .testimonial { padding: 26px 22px 22px; }
  .lightbox-close { top: 16px; right: 16px; width: 44px; height: 44px; font-size: 26px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
