/* KeyWorks Mobile — cyber / circuit theme matching brand logos */
:root {
  --black: #000000;
  --charcoal: #0a0a0c;
  --carbon: #111116;
  --carbon-light: #1a1a22;
  --chrome: #c8d0dc;
  --text: #e8edf5;
  --muted: #8b95a8;
  --neon-blue: #0088ff;
  --neon-blue-bright: #33aaff;
  --neon-red: #e8223a;
  --neon-red-bright: #ff3355;
  --gradient-brand: linear-gradient(90deg, var(--neon-blue) 0%, #6b7280 50%, var(--neon-red) 100%);
  --gradient-btn: linear-gradient(135deg, var(--neon-blue) 0%, #0055cc 100%);
  --gradient-btn-red: linear-gradient(135deg, var(--neon-red) 0%, #aa1122 100%);
  --glass: rgba(12, 12, 18, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --max: 1140px;
  --font-display: "Orbitron", "Segoe UI", sans-serif;
  --font-body: "Rajdhani", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  background: var(--black);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Full-page circuit board background (logo-style blue left / red right) */
.circuit-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}

.circuit-background__art {
  position: absolute;
  inset: -5% 0 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 8%;
  opacity: 0.68;
  filter: saturate(0.95) brightness(0.88);
}

.circuit-background__scanlines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.04) 2px,
    rgba(255, 255, 255, 0.04) 4px
  );
}

/* Ambient blue/red glow like the logos */
.page-glow {
  position: fixed;
  width: 55vw;
  height: 55vh;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.page-glow--blue {
  top: -10%;
  left: -15%;
  background: var(--neon-blue);
}

.page-glow--red {
  bottom: -10%;
  right: -15%;
  background: var(--neon-red);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.local-preview-bar {
  position: relative;
  z-index: 200;
  background: #1a1408;
  border-bottom: 1px solid #f59e0b;
  color: #fcd34d;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

.local-preview-bar code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

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

a {
  color: var(--neon-blue-bright);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: var(--neon-blue-bright);
  text-shadow: 0 0 12px rgba(0, 136, 255, 0.45);
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Carbon fiber texture utility — semi-transparent so circuits show through */
.section-carbon {
  background-color: rgba(17, 17, 22, 0.55);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.015) 3px,
      rgba(255, 255, 255, 0.015) 6px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.01) 3px,
      rgba(255, 255, 255, 0.01) 6px
    );
}

.section-dark {
  background: rgba(10, 10, 12, 0.45);
}

/* Glass panels */
.glass-panel {
  background: rgba(8, 8, 14, 0.92);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-panel:hover {
  border-color: rgba(0, 136, 255, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(0, 136, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid transparent;
  border-image: var(--gradient-brand) 1;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  opacity: 0.92;
  filter: drop-shadow(0 0 10px rgba(0, 136, 255, 0.35));
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--chrome);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-desktop a:hover {
  color: var(--neon-blue-bright);
  text-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow:
    0 0 20px rgba(0, 136, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  color: #fff;
  box-shadow:
    0 0 28px rgba(0, 136, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--gradient-btn-red);
  color: #fff;
  box-shadow:
    0 0 20px rgba(232, 34, 58, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  color: #fff;
  box-shadow:
    0 0 28px rgba(232, 34, 58, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 16px rgba(232, 34, 58, 0.12);
}

.btn-outline:hover {
  border-color: var(--neon-red-bright);
  color: #fff;
  box-shadow: 0 0 22px rgba(232, 34, 58, 0.35);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--chrome);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  color: var(--text);
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  background: transparent;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 136, 255, 0.12);
  border: 1px solid rgba(0, 136, 255, 0.35);
  color: var(--neon-blue-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 18px rgba(0, 136, 255, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  color: #f0f4f8;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 1px rgba(0, 0, 0, 0.8);
}

.hero-lead {
  font-size: 1.15rem;
  color: #c5ced9;
  margin: 0 0 1.75rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.hero-text-hint {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-trust span::before {
  content: "▸ ";
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0, 136, 255, 0.6);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-logo-frame {
  position: relative;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 136, 255, 0.25), rgba(232, 34, 58, 0.2));
  box-shadow:
    0 0 40px rgba(0, 136, 255, 0.15),
    0 0 40px rgba(232, 34, 58, 0.1);
}

.hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
}

.hero-card {
  padding: 1.35rem 1.5rem;
}

.hero-card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chrome);
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-card li:last-child {
  border-bottom: none;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #f0f4f8;
  letter-spacing: 0.04em;
}

.section-title p {
  margin: 0;
  color: #b8c2d0;
  max-width: 36rem;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.65rem;
  overflow: hidden;
}

.service-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.service-accent--blue {
  background: linear-gradient(180deg, var(--neon-blue), transparent);
  box-shadow: 0 0 12px var(--neon-blue);
}

.service-accent--red {
  background: linear-gradient(180deg, var(--neon-red), transparent);
  box-shadow: 0 0 12px var(--neon-red);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chrome);
}

.service-card p {
  margin: 0;
  color: #b8c2d0;
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.why-item {
  padding: 1.5rem;
}

.why-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--neon-blue-bright);
}

.why-item:nth-child(even) h3 {
  color: var(--neon-red-bright);
}

.why-item p {
  margin: 0;
  color: #b8c2d0;
  font-size: 1.05rem;
}

.area-box {
  padding: 1.75rem 2rem;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  border-color: rgba(0, 136, 255, 0.2);
}

.area-map-wrap {
  max-width: 820px;
  margin-inline: auto;
  padding: 1rem;
  border-color: rgba(0, 136, 255, 0.18);
  overflow: hidden;
}

.area-map {
  position: relative;
  height: min(62vw, 420px);
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0c;
  z-index: 1;
}

.area-map-loading {
  display: grid;
  place-items: center;
  height: 100%;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-map--ready .area-map-loading {
  display: none;
}

.area-map.leaflet-container {
  background: #0a0a0c;
  font-family: var(--font-body);
  height: 100% !important;
  width: 100% !important;
}

.area-map-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  margin: 0;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}

.area-map-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 1.25rem;
  margin: 0.85rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  margin-right: -0.35rem;
}

.legend-swatch--county {
  background: rgba(232, 34, 58, 0.45);
  border: 2px solid #ff4466;
}

.legend-swatch--city {
  background: rgba(0, 136, 255, 0.45);
  border: 2px solid #33aaff;
}

/* Keep Leaflet's default pane stacking — do not force a flat z-index on .leaflet-pane */

.area-map .leaflet-control-zoom a {
  background: rgba(12, 12, 18, 0.92);
  color: var(--chrome);
  border-color: rgba(255, 255, 255, 0.12);
}

.area-map .leaflet-control-zoom a:hover {
  background: rgba(20, 20, 30, 0.95);
  color: var(--neon-blue-bright);
}

.area-map .leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.65) !important;
  color: #64748b !important;
  font-size: 0.65rem !important;
}

.area-map .leaflet-control-attribution a {
  color: #94a3b8 !important;
}

.map-tooltip--county {
  background: rgba(12, 12, 18, 0.92) !important;
  border: 1px solid rgba(232, 34, 58, 0.5) !important;
  color: var(--text) !important;
  font-family: var(--font-display) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5) !important;
}

.map-tooltip--county::before {
  border-top-color: rgba(232, 34, 58, 0.5) !important;
}

.map-city-label {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-shadow:
    0 0 8px rgba(0, 136, 255, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.95);
  pointer-events: none;
}

.map-city-label::before {
  display: none !important;
}

.area-map-wrap .area-main {
  text-align: center;
}

.area-map-wrap .area-note {
  text-align: center;
}

.area-main {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.15rem;
}

.area-note {
  margin: 1.15rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
  font-size: 1rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chrome);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-list a {
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-note,
.contact-lead {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted);
}

.contact-lead {
  margin-top: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* CTA */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 3.5rem 1rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid transparent;
  border-image: var(--gradient-brand) 1;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 136, 255, 0.18), transparent 45%),
    radial-gradient(circle at 70% 50%, rgba(232, 34, 58, 0.15), transparent 45%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
}

.cta-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 0 16px rgba(0, 136, 255, 0.25));
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.03em;
}

.cta-banner p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-logo {
  height: 44px;
  width: auto;
  opacity: 0.9;
}

.footer-copy {
  color: var(--muted);
  flex: 1;
  text-align: center;
}

.footer-link {
  color: var(--chrome);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link:hover {
  color: var(--neon-red-bright);
  text-shadow: 0 0 10px rgba(232, 34, 58, 0.45);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-frame {
    max-width: 420px;
    margin-inline: auto;
  }
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-inner > .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .footer-copy {
    text-align: left;
    flex: 100%;
    order: 3;
  }

  .footer-logo {
    order: 1;
  }

  .footer-link {
    order: 2;
    margin-left: auto;
  }

  .footer-links {
    order: 2;
    margin-left: auto;
  }

  .mobile-call-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(0, 136, 255, 0.35);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.55);
  }

  .mobile-call-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.65rem 0.4rem;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
  }

  .mobile-call-bar__btn--call {
    color: #fff;
    background: var(--gradient-btn);
    box-shadow: 0 0 18px rgba(0, 136, 255, 0.35);
  }

  .mobile-call-bar__btn--text {
    color: var(--chrome);
    background: rgba(20, 20, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  body {
    padding-bottom: 5.5rem;
  }
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  margin: 0;
  padding: 1.35rem 1.4rem;
}

.review-quote {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
}

.review-meta {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--chrome);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--neon-blue-bright);
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

/* Privacy */
.privacy-section {
  padding: 2.5rem 0;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chrome);
}

.privacy-section p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
