/* ============================================================
   Central MN Drone — Premium 2026 Design System
   Dark-first · Aurora · Glassmorphism · Bento
   ============================================================ */

:root {
  --bg-0: #04070e;
  --bg-1: #070c18;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(0, 240, 255, 0.35);
  --cyan: #00f0ff;
  --sky: #4da3ff;
  --purple: #a29bfe;
  --amber: #ffc46b;
  --text-1: #ffffff;
  --text-2: rgba(255, 255, 255, 0.66);
  --text-3: rgba(255, 255, 255, 0.42);
  --grad-main: linear-gradient(135deg, #00f0ff, #4da3ff 55%, #a29bfe);
  --grad-btn: linear-gradient(135deg, #00c2e0, #2f7fe0);
  --shadow-glow: 0 4px 24px rgba(0, 240, 255, 0.22);
  --radius: 18px;
  --nav-h: 72px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(0, 240, 255, 0.3); }

/* ---------- Aurora background ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
  radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 80, 160, 0.25), transparent 60%), var(--bg-0); }
.aurora-blob { position: absolute; border-radius: 50%; will-change: transform; }
.aurora-blob.b1 { width: 64vw; height: 64vw; top: -20%; left: -16%;
  background: radial-gradient(circle, rgba(14, 111, 255, 0.22), transparent 68%);
  animation: drift 11s ease-in-out infinite alternate; }
.aurora-blob.b2 { width: 56vw; height: 56vw; bottom: -22%; right: -14%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.17), transparent 68%);
  animation: drift 14s ease-in-out infinite alternate-reverse; }
.aurora-blob.b3 { width: 48vw; height: 48vw; top: 30%; left: 34%;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.16), transparent 68%);
  animation: drift 17s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6vw, 4vh, 0) scale(1.15); }
}
.grid-lines { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%); }

/* ---------- Layout ---------- */
.container { width: min(1180px, 92%); margin: 0 auto; }
section { padding: 96px 0; position: relative; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan);
  background: rgba(0, 240, 255, 0.07); border: 1px solid rgba(0, 240, 255, 0.22);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px; }
.section-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan); }
h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
h3 { font-size: 1.18rem; font-weight: 700; }
.grad-text { background: var(--grad-main); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--text-2); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  background: rgba(5, 8, 16, 0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: background 0.3s; }
.nav-inner { width: min(1240px, 94%); margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em; }
.logo-mark { width: 38px; height: 38px; flex: none; }
.logo span em { font-style: normal; color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 0.94rem; font-weight: 500; color: var(--text-2); }
.nav-links a { position: relative; padding: 6px 0; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-1); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--grad-main); border-radius: 2px; transition: width 0.25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 102; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font);
  font-weight: 600; font-size: 0.97rem; padding: 14px 30px; border-radius: 13px; border: none; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s; white-space: nowrap; }
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 34px rgba(0, 240, 255, 0.4); }
.btn-outline { background: rgba(255, 255, 255, 0.04); color: #fff; border: 1px solid var(--border);
  backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--border-strong); transform: translateY(-2px); background: rgba(0, 240, 255, 0.06); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; border-radius: 11px; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: calc(var(--nav-h) + 60px) 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero .lead { margin: 22px 0 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 500; color: var(--text-2);
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px;
  backdrop-filter: blur(12px); }
.badge svg { width: 15px; height: 15px; color: var(--cyan); flex: none; }
.word-rotator { display: inline-block; position: relative; color: var(--cyan); min-width: 5ch; }
.word-rotator .word { position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(12px); transition: 0.45s; white-space: nowrap; }
.word-rotator .word.on { position: relative; opacity: 1; transform: translateY(0); }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 4/4.6; }
.hero-frame { position: absolute; inset: 0; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border); background: linear-gradient(160deg, #0a1626, #050a14 60%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); }
.hero-frame svg { width: 100%; height: 100%; }
.float-card { position: absolute; padding: 14px 18px; border-radius: 15px; background: rgba(10, 16, 30, 0.82);
  border: 1px solid var(--border); backdrop-filter: blur(16px); box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  display: flex; align-items: center; gap: 12px; animation: floaty 5.5s ease-in-out infinite; }
.float-card .fc-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(0, 240, 255, 0.12); color: var(--cyan); flex: none; }
.float-card .fc-icon svg { width: 19px; height: 19px; }
.float-card b { display: block; font-size: 0.92rem; }
.float-card small { color: var(--text-3); font-size: 0.76rem; }
.float-card.fc1 { top: 7%; left: -11%; animation-delay: 0s; }
.float-card.fc2 { bottom: 20%; right: -9%; animation-delay: 1.6s; }
.float-card.fc3 { bottom: -4%; left: 6%; animation-delay: 3s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Stats bar ---------- */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(10px); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800;
  background: var(--grad-main); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--text-3); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Cards / bento ---------- */
.glass { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.glass:hover { transform: translateY(-5px); border-color: rgba(0, 240, 255, 0.28); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 240, 255, 0.08); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.bento .span2 { grid-column: span 2; }
.card { padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.card-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.14), rgba(77, 163, 255, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.22); color: var(--cyan); }
.card-icon svg { width: 25px; height: 25px; }
.card p { color: var(--text-2); font-size: 0.95rem; }
.card .card-link { margin-top: auto; color: var(--cyan); font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.25s; }
.card:hover .card-link svg { transform: translateX(4px); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 0.76rem; font-weight: 500; color: var(--text-2); background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); padding: 4px 12px; border-radius: 999px; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; counter-reset: step; }
.process-step { padding: 30px 26px; position: relative; }
.step-num { font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, rgba(0,240,255,0.9), rgba(122,92,255,0.65));
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.process-step p { color: var(--text-2); font-size: 0.92rem; }

/* ---------- Service area ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.city-pill { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-radius: 13px;
  background: var(--surface); border: 1px solid var(--border); font-weight: 500; font-size: 0.94rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s; }
.city-pill:hover { border-color: var(--border-strong); background: rgba(0, 240, 255, 0.06); transform: translateX(4px); }
.city-pill svg { width: 15px; height: 15px; color: var(--cyan); flex: none; }
.map-visual { border-radius: 24px; overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(160deg, #0a1424, #050a14); box-shadow: 0 24px 70px rgba(0,0,0,0.5); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; align-items: stretch; }
.price-card { padding: 38px 32px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.price-card.featured { border-color: rgba(0, 240, 255, 0.45); background: linear-gradient(180deg, rgba(0, 240, 255, 0.07), rgba(255,255,255,0.03));
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.1); }
.pop-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-btn); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; box-shadow: var(--shadow-glow); white-space: nowrap; }
.price { font-size: 2.7rem; font-weight: 800; margin: 6px 0 2px; }
.price small { font-size: 1rem; color: var(--text-3); font-weight: 500; }
.price-desc { color: var(--text-2); font-size: 0.92rem; min-height: 44px; }
.feature-list { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.feature-list li { display: flex; gap: 11px; font-size: 0.93rem; color: var(--text-2); align-items: flex-start; }
.feature-list svg { width: 17px; height: 17px; color: var(--cyan); flex: none; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border-radius: 15px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 21px 26px; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; color: var(--cyan); transition: transform 0.3s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 22px; color: var(--text-2); font-size: 0.96rem; }

/* ---------- Portfolio ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--border); background: linear-gradient(150deg, #0b1830, #060c18); }
.g-item.wide { grid-column: span 2; aspect-ratio: auto; }
.g-item svg { width: 100%; height: 100%; object-fit: cover; }
.g-label { position: absolute; left: 16px; bottom: 14px; background: rgba(5, 9, 18, 0.78);
  backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 10px;
  padding: 7px 14px; font-size: 0.82rem; font-weight: 600; }

/* ---------- Contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; margin-top: 50px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-row { display: flex; gap: 15px; align-items: flex-start; padding: 20px 22px; }
.info-row svg { width: 21px; height: 21px; color: var(--cyan); flex: none; margin-top: 2px; }
.info-row b { display: block; font-size: 0.95rem; }
.info-row a, .info-row span { color: var(--text-2); font-size: 0.92rem; }
.info-row a:hover { color: var(--cyan); }
form.quote-form { padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.84rem; font-weight: 600; color: var(--text-2); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font); font-size: 0.95rem; color: #fff;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); border-radius: 11px;
  padding: 13px 16px; outline: none; transition: border-color 0.25s, background 0.25s; width: 100%; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field select option { background: #0a1220; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--border-strong); background: rgba(0, 240, 255, 0.045); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ---------- CTA band ---------- */
.cta-band { margin: 40px 0 90px; }
.cta-inner { padding: 64px 48px; text-align: center; border-radius: 28px; position: relative; overflow: hidden;
  background: linear-gradient(140deg, rgba(0, 240, 255, 0.09), rgba(122, 92, 255, 0.09));
  border: 1px solid rgba(0, 240, 255, 0.25); }
.cta-inner::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(0, 240, 255, 0.14); filter: blur(100px); top: -180px; left: 50%; transform: translateX(-50%); }
.cta-inner > * { position: relative; }
.cta-inner .lead { margin: 14px auto 32px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); background: rgba(3, 5, 10, 0.75); backdrop-filter: blur(16px);
  padding: 64px 0 30px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 18px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a { color: var(--text-2); transition: color 0.25s; }
.footer-grid a:hover { color: var(--cyan); }
.footer-about p { color: var(--text-2); margin-top: 14px; max-width: 320px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px; color: var(--text-3); font-size: 0.84rem; }
.footer-bottom a { color: var(--text-2); }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Breadcrumbs / page hero ---------- */
.page-hero { padding: calc(var(--nav-h) + 80px) 0 40px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--text-3); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-2); }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs span.sep { color: var(--text-3); }

/* ---------- Content blocks (location/service pages) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .lead { margin-top: 16px; }
.checklist { display: flex; flex-direction: column; gap: 13px; margin-top: 24px; }
.checklist li { display: flex; gap: 12px; color: var(--text-2); align-items: flex-start; }
.checklist svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 4px; }
.prose { max-width: 820px; }
.prose p { color: var(--text-2); margin-bottom: 18px; }
.prose h2 { margin-top: 44px; }
.prose h3 { margin-top: 30px; margin-bottom: 10px; }

/* ---------- Coverage map (Leaflet) ---------- */
#coverageMap { height: 500px; width: 100%; border-radius: 24px; border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 240, 255, 0.06);
  background: #0a1220; position: relative; z-index: 1; margin-top: 50px; }
#coverageMap .leaflet-tile-pane { filter: saturate(0.85) brightness(0.95); }
.leaflet-popup-content-wrapper { background: rgba(8, 13, 24, 0.96) !important; color: #fff !important;
  border: 1px solid rgba(0, 240, 255, 0.3); border-radius: 12px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important; backdrop-filter: blur(10px); }
.leaflet-popup-content { font-family: var(--font) !important; font-size: 0.88rem !important; line-height: 1.55 !important; }
.leaflet-popup-content a { color: var(--cyan); font-weight: 600; }
.leaflet-popup-tip { background: rgba(8, 13, 24, 0.96) !important; border: 1px solid rgba(0, 240, 255, 0.3); }
.leaflet-popup-close-button { color: rgba(255,255,255,0.6) !important; }
.leaflet-control-zoom a { background: rgba(8, 13, 24, 0.92) !important; color: #fff !important;
  border-color: rgba(255, 255, 255, 0.12) !important; }
.leaflet-control-zoom a:hover { background: rgba(0, 240, 255, 0.15) !important; }
.leaflet-control-attribution { background: rgba(4, 7, 14, 0.75) !important; color: rgba(255,255,255,0.45) !important; font-size: 0.62rem !important; }
.leaflet-control-attribution a { color: rgba(255,255,255,0.6) !important; }

/* Home-base pulsing radar marker */
.home-pulse { position: relative; width: 18px; height: 18px; }
.home-pulse i { position: absolute; inset: 3px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 4px #fff inset; }
.home-pulse span { position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.8); animation: radar 2.6s ease-out infinite; }
.home-pulse span:nth-child(2) { animation-delay: 1.3s; }
@keyframes radar {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(4.2); opacity: 0; }
}

/* Map legend + city chips */
.map-legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 20px;
  color: var(--text-2); font-size: 0.86rem; }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.legend-dot.cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.legend-dot.purple { background: #7a5cff; }
.legend-dot.zone { width: 22px; height: 3px; border-radius: 2px; background: var(--cyan); opacity: 0.7; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 34px; }
.area-chips .city-pill { padding: 10px 18px; }

@media (max-width: 1080px) { .nav-links { gap: 20px; font-size: 0.88rem; } .nav-inner { gap: 16px; } }
@media (max-width: 768px) {
  #coverageMap { height: 380px; border-radius: 18px; }
}

/* ---------- Scroll top ---------- */
.scroll-top { position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-btn); color: #fff; border: none; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-glow); opacity: 0; pointer-events: none; transform: translateY(14px);
  transition: 0.3s; z-index: 90; }
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top svg { width: 20px; height: 20px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ---------- Noise ---------- */
.noise { position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bento, .pricing-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .float-card.fc1 { left: -2%; } .float-card.fc2 { right: -2%; }
}
@media (max-width: 768px) {
  section { padding: 68px 0; }
  /* backdrop-filter on .nav would make it the containing block for the
     fixed fullscreen menu, so the glass effect comes off on mobile */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(5, 8, 16, 0.96); }
  .nav-links { position: fixed; inset: 0; background: #04070e;
    flex-direction: column; justify-content: center; gap: 30px; font-size: 1.25rem;
    opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 101; }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .hamburger { display: block; }
  .nav-cta .btn { display: none; }
  .bento, .pricing-grid, .gallery, .process-grid, .stats-grid, .city-grid { grid-template-columns: 1fr; }
  .bento .span2, .g-item.wide { grid-column: span 1; }
  .area-wrap, .contact-grid, .split { grid-template-columns: 1fr; }
  form.quote-form { grid-template-columns: 1fr; padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .float-card { display: none; }
  .cta-inner { padding: 46px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
