/* ============================================================
   VOLARI — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --sky:         #080F1E;
  --sky-card:    #0F1D35;
  --sky-card-2:  #132240;
  --sky-border:  #1A2E50;
  --accent:      #3E8FFF;
  --accent-2:    #00D4AA;
  --accent-glow: rgba(62,143,255,0.18);
  --danger:      #FF5A5A;
  --warning:     #FFA940;
  --text:        #EDF2FF;
  --text-muted:  #7A90B4;
  --text-faint:  #3D5480;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.35);
  --nav-h:       64px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sky);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-muted); }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,15,30,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sky-border);
  display: flex; align-items: center;
}
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  width: 100%;
  display: flex; align-items: center; gap: 2rem;
}
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--text) !important;
  text-decoration: none !important;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; flex: 1;
}
.nav__links a {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  color: var(--text-muted) !important;
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none !important;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--text) !important; background: var(--sky-card); }
.nav__actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--text); padding: 0.5rem;
}

/* ── Nav dropdown ──────────────────────────────────────────── */
.nav__item--dropdown { position: relative; }
.nav__item--dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav__dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 0.5rem; /* bridge the gap — pointer stays in hover zone */
  z-index: 1100;
}
.nav__dropdown__inner {
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-radius: var(--radius-lg); padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.nav__dropdown__heading {
  padding: 0.4rem 0.75rem 0.65rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-faint);
  border-bottom: 1px solid var(--sky-border); margin-bottom: 0.25rem;
}
.nav__item--dropdown:hover .nav__dropdown { display: block; }
.nav__dropdown a {
  padding: 0.5rem 0.75rem !important; border-radius: var(--radius);
  color: var(--text-muted) !important; font-size: 0.875rem !important;
  background: none !important; white-space: nowrap; display: block;
}
.nav__dropdown a:hover { background: var(--sky-card-2) !important; color: var(--text) !important; }
/* Scope first-child bold/border to directory dropdown only */
.nav__dropdown:not(.nav__dropdown--products) a:first-child {
  font-weight: 700; color: var(--text) !important;
  border-bottom: 1px solid var(--sky-border); margin-bottom: 0.25rem; padding-bottom: 0.75rem !important;
}
.nav__dropdown--products .nav__dropdown__inner { min-width: 270px; }
.nav__dropdown--products a {
  display: flex !important; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.75rem !important; white-space: normal !important;
}
.nav__dropdown--products a:first-child {
  border-bottom: none !important; font-weight: 400 !important;
}
.nav__dropdown--products a strong { display: block; font-size: 0.875rem; color: var(--text); font-weight: 600; }
.nav__dropdown--products a small  { display: block; font-size: 0.75rem; color: var(--text-faint); margin-top: 0.05rem; }
.nav__product-icon { font-size: 1.25rem; flex-shrink: 0; width: 1.5rem; text-align: center; }
.nav__mobile {
  display: none; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--sky-card);
  border-bottom: 1px solid var(--sky-border);
  padding: 1rem 1.5rem; gap: 0.25rem; z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 0.6rem 0.75rem; border-radius: 6px;
  color: var(--text-muted) !important; font-size: 0.9rem;
  text-decoration: none !important;
}
.nav__mobile a:hover, .nav__mobile a.active { color: var(--text) !important; background: var(--sky-card-2); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; outline: none;
  transition: all 0.2s; text-decoration: none !important;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent) !important;
  color: #FFFFFF !important;
}
.btn--primary:hover { background: #2d7de8 !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(62,143,255,0.4); }
.btn--secondary {
  background: var(--sky-card-2);
  color: var(--text) !important;
  border: 1px solid var(--sky-border);
}
.btn--secondary:hover { background: var(--sky-border); }
.btn--outline {
  background: transparent;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent);
}
.btn--outline:hover { background: var(--accent-glow); }
.btn--teal {
  background: var(--accent-2) !important;
  color: #000 !important;
}
.btn--teal:hover { background: #00bfa0 !important; }
.btn--danger { background: var(--danger) !important; color: #fff !important; }
.btn--sm { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--sky-card);
  border: 1px solid var(--sky-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.card--hover { transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.card--hover:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(62,143,255,0.15);
}

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.6rem; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.badge--verified   { background: rgba(0,212,170,0.15); color: var(--accent-2); border: 1px solid rgba(0,212,170,0.3); }
.badge--active     { background: rgba(0,212,170,0.12); color: var(--accent-2); }
.badge--pending    { background: rgba(255,169,64,0.12); color: var(--warning); }
.badge--expired    { background: rgba(255,90,90,0.12); color: var(--danger); }
.badge--blue       { background: rgba(62,143,255,0.15); color: var(--accent); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.form-control {
  background: var(--sky-card-2);
  border: 1px solid var(--sky-border);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  width: 100%; transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-control::placeholder { color: var(--text-faint); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.78rem; color: var(--text-faint); }

/* ── Stars ─────────────────────────────────────────────────── */
.stars { display: flex; gap: 2px; }
.stars .star { color: var(--text-faint); font-size: 1.1rem; cursor: pointer; transition: color 0.15s; }
.stars .star.filled { color: #FFA940; }
.star-display { color: #FFA940; }
.star-empty  { color: var(--text-faint); }

/* ── Section layout ────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container--sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.page-top { padding-top: calc(var(--nav-h) + 3rem); }
.section-title { margin-bottom: 0.5rem; }
.section-sub   { color: var(--text-muted); margin-bottom: 2.5rem; }

/* ── Grid ──────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── Provider Card ─────────────────────────────────────────── */
.provider-card { display: flex; flex-direction: column; gap: 0.6rem; }
.provider-card__type { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.provider-card__name { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-top: 0.15rem; }
.provider-card__loc  { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.1rem; }
.provider-card__desc { font-size: 0.85rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.provider-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 0.5rem; border-top: 1px solid var(--sky-border); }
.provider-card__rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.82rem; color: var(--text-muted); }
.provider-card__head { display: flex; justify-content: space-between; align-items: flex-start; }

/* ── Sector pill ───────────────────────────────────────────── */
.sector-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.sector-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
  border: 1.5px solid var(--sky-border);
  background: var(--sky-card-2); color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.sector-pill:hover { border-color: var(--accent); color: var(--text); text-decoration: none; }
.sector-pill.active { color: #fff !important; border-color: transparent; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(62,143,255,0.12) 0%, transparent 70%);
  padding-top: var(--nav-h);
}
.hero > .container { width: 100%; }
.hero__content { width: 100%; max-width: 780px; margin: 0 auto; text-align: center; }
.hero__eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.hero__title { margin-bottom: 1.25rem; }
.hero__title span { color: var(--accent); }
.hero__sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; justify-content: center; }
.hero__stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero__stat-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Sidebar layout ────────────────────────────────────────── */
.layout-sidebar { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
.sidebar { background: var(--sky-card); border: 1px solid var(--sky-border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: calc(var(--nav-h) + 1rem); }
.sidebar__title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 1rem; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group__label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; display: block; }
.checkbox-list { display: flex; flex-direction: column; gap: 0.35rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-item input { accent-color: var(--accent); width: 14px; height: 14px; }
.checkbox-item span { font-size: 0.84rem; color: var(--text-muted); }
.checkbox-item:hover span { color: var(--text); }

/* ── Tabs ──────────────────────────────────────────────────── */
.tabs { display: flex; gap: 0.25rem; border-bottom: 1px solid var(--sky-border); margin-bottom: 1.5rem; }
.tab {
  padding: 0.6rem 1.1rem; border: none; background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Wizard steps ──────────────────────────────────────────── */
.wizard-steps { display: flex; align-items: center; gap: 0; margin-bottom: 2.5rem; }
.wizard-step { display: flex; align-items: center; gap: 0; flex: 1; }
.wizard-step__dot {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  background: var(--sky-card-2); border: 2px solid var(--sky-border); color: var(--text-muted);
  transition: all 0.3s;
}
.wizard-step__dot.active  { background: var(--accent); border-color: var(--accent); color: #fff; }
.wizard-step__dot.done    { background: var(--accent-2); border-color: var(--accent-2); color: #000; }
.wizard-step__line { flex: 1; height: 2px; background: var(--sky-border); }
.wizard-step__line.done { background: var(--accent-2); }

/* ── Map ───────────────────────────────────────────────────── */
.map-container { position: relative; }
#map { width: 100%; border-radius: var(--radius-lg); }
.mapboxgl-popup-content { background: var(--sky-card) !important; color: var(--text) !important; border: 1px solid var(--sky-border) !important; border-radius: var(--radius) !important; padding: 0.9rem 1rem !important; font-family: 'DM Sans',sans-serif !important; }
.mapboxgl-popup-tip { display: none !important; }

/* ── Stat cards ────────────────────────────────────────────── */
.stat-card { text-align: center; }
.stat-card__num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.stat-card__lbl { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem; border-radius: var(--radius);
  font-size: 0.875rem; color: var(--text);
  box-shadow: var(--shadow); display: none;
  max-width: 340px;
}
.toast.show { display: block; animation: slideIn 0.3s ease; }
.toast.error { border-left-color: var(--danger); }
.toast.success { border-left-color: var(--accent-2); }
@keyframes slideIn { from { transform: translateY(1rem); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--sky-border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer__brand { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--text); }
.footer__brand span { color: var(--accent); }
.footer__tagline { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; }
.footer__heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 0.75rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer__links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--sky-border); font-size: 0.8rem; color: var(--text-faint); flex-wrap: wrap; gap: 0.5rem; }

/* ── Loading ───────────────────────────────────────────────── */
.loading { text-align: center; padding: 3rem; color: var(--text-muted); }
.spinner { display: inline-block; width: 32px; height: 32px; border: 3px solid var(--sky-border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; margin-bottom: 0.75rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state h3 { margin-bottom: 0.5rem; color: var(--text); }

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-radius: var(--radius-lg); padding: 2rem; width: 100%; max-width: 600px;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.modal__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal__close { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.modal__close:hover { color: var(--text); }

/* ── Search bar ────────────────────────────────────────────── */
.search-bar {
  display: flex; gap: 0.5rem;
  background: var(--sky-card); border: 1px solid var(--sky-border);
  border-radius: var(--radius); padding: 0.4rem 0.4rem 0.4rem 1rem;
  max-width: 580px;
}
.search-bar input { flex: 1; background: none; border: none; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; }
.search-bar input::placeholder { color: var(--text-faint); }

/* ── Page header band ──────────────────────────────────────── */
.page-header {
  background: linear-gradient(180deg, rgba(62,143,255,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--sky-border);
  padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
}
.page-header h1 { margin-bottom: 0.5rem; }

/* ── Pilot card ────────────────────────────────────────────── */
.pilot-card__name { font-family: 'Syne', sans-serif; font-weight: 700; }
.pilot-card__licence { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin: 0.2rem 0 0.5rem; }
.pilot-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.pilot-card__bio { font-size: 0.85rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Job card ──────────────────────────────────────────────── */
.job-card__title { font-family: 'Syne', sans-serif; font-weight: 700; }
.job-card__company { font-size: 0.85rem; color: var(--accent); margin: 0.15rem 0; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0; }
.job-card__desc { font-size: 0.85rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── News card ─────────────────────────────────────────────── */
.news-card__img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); background: var(--sky-card-2); margin-bottom: 1rem; }
.news-card__cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.4rem; }
.news-card__title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 0.5rem; font-size: 1.05rem; }
.news-card__excerpt { font-size: 0.85rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__date { font-size: 0.78rem; color: var(--text-faint); margin-top: 0.75rem; }

/* ── Dashboard layout ──────────────────────────────────────── */
.dash { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.dash__sidebar {
  background: var(--sky-card); border-right: 1px solid var(--sky-border);
  padding: calc(var(--nav-h) + 1.5rem) 1.25rem 1.5rem;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.dash__nav { display: flex; flex-direction: column; gap: 0.25rem; }
.dash__nav-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.75rem; border-radius: var(--radius);
  font-size: 0.875rem; color: var(--text-muted);
  cursor: pointer; border: none; background: none; text-align: left;
  transition: all 0.2s; width: 100%;
}
.dash__nav-item:hover { background: var(--sky-card-2); color: var(--text); }
.dash__nav-item.active { background: var(--accent-glow); color: var(--accent); }
.dash__main { padding: calc(var(--nav-h) + 2rem) 2rem 2rem; }
.dash__section { display: none; }
.dash__section.active { display: block; }
.dash__title { margin-bottom: 1.5rem; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__actions .btn:not(.nav__cta) { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .dash { grid-template-columns: 1fr; }
  .dash__sidebar { display: none; }
}

/* ── Location widget (submit + provider dashboard) ─────────── */
.loc-method-btn {
  padding:0.4rem 0.9rem; border-radius:20px; font-size:0.8rem; font-weight:600;
  border:1.5px solid var(--sky-border); background:var(--sky-card-2);
  color:var(--text-muted); cursor:pointer; transition:all 0.2s; font-family:'DM Sans',sans-serif;
}
.loc-method-btn:hover  { border-color:var(--accent); color:var(--text); }
.loc-method-btn.active { background:var(--accent); border-color:var(--accent); color:#fff; }
.location-search { position:relative; }
.location-confirmed {
  display:none; background:rgba(0,212,170,0.08); border:1px solid rgba(0,212,170,0.3);
  border-radius:var(--radius); padding:0.6rem 0.9rem; font-size:0.85rem;
  color:var(--accent-2); margin-top:0.4rem; align-items:center; gap:0.5rem;
}
.location-confirmed.show { display:flex; }
