/* ============================================================
   SECTIONS — page-section-specific layout & styles
   Each section is clearly delimited for easy navigation.
   ============================================================ */

/* ── Header ───────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.logo-image {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
  transition: transform 0.15s ease, opacity 0.15s ease;
  object-fit: contain;
}

.logo-image:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* Show light logo in light mode, dark logo in dark mode */
[data-theme="light"] .logo-light,
:root:not([data-theme="dark"]) .logo-light { display: block; }
[data-theme="light"] .logo-dark,
:root:not([data-theme="dark"]) .logo-dark  { display: none; }

[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark  { display: block; }


.nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  padding-bottom: 3px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-toggle {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #ffffff;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav               { display: flex; }
  .menu-toggle       { display: none; }
  .button-primary    { padding-inline: 22px; }
  .header-inner      { height: auto; padding-top: 14px; padding-bottom: 14px; }
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (min-width: 992px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

.hero-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-title {
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 14px;
}

@media (min-width: 768px)  { .hero-title { font-size: 44px; } }
@media (min-width: 1100px) { .hero-title { font-size: 52px; } }

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid var(--primary);
}

/* Hero visual */

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

@media (min-width: 992px) {
  .hero-photo {
    height: 460px;
  }
}

.hero-card {
  background: var(--card-bg);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.hero-orbit {
  position: absolute;
  inset: -20%;
  opacity: 0.35;
  background:
    radial-gradient(circle at 10% 20%, rgba(21, 201, 195, 0.5) 0, transparent 48%),
    radial-gradient(circle at 80% 10%, rgba(15, 23, 42, 0.6) 0, transparent 52%),
    radial-gradient(circle at 50% 100%, rgba(148, 163, 184, 0.5) 0, transparent 45%);
  mix-blend-mode: multiply;
}

.drone-shape {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 18px auto 24px;
  border-radius: 40px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #e2fdfb 35%, #0b1d3a 110%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drone-body {
  position: relative;
  width: 88px;
  height: 32px;
  border-radius: 999px;
  background: #f9f9fb;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.drone-body::before,
.drone-body::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #cbd5f5;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #f1f5f9 0, #e2e8f0 55%, #94a3b8 100%);
}

.drone-body::before { left: -32px; }
.drone-body::after  { right: -32px; }

.drone-body span {
  position: absolute;
  inset: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b1d3a, #2dd4bf);
}

.hero-floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-size: 11px;
}

.hero-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-bottom-card {
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 12px 14px;
  background: rgba(248, 250, 252, 0.95);
}

.hero-bottom-card strong {
  display: block;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 4px;
}

/* ── Trust strip ──────────────────────────────────── */

.trust-strip {
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 768px)  { .trust-items { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .trust-items { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

/* ── Georgia map card ─────────────────────────────── */

.geo-map-card {
  border-radius: 24px;
  background: var(--bg-soft);
  border: 1px solid rgba(209, 213, 219, 0.8);
  padding: 22px 22px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.geo-map-bg {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(21, 201, 195, 0.55) 0, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(15, 23, 42, 0.6) 0, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(148, 163, 184, 0.6) 0, transparent 40%);
  opacity: 0.45;
  mix-blend-mode: multiply;
}

.geo-map-foreground {
  position: relative;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  padding: 18px;
  color: #e5e7eb;
  font-size: 12px;
}

.geo-hotspots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.geo-tag {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
  white-space: nowrap;
}

.geo-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  color: var(--dark);
}

/* ── Coverage cards ───────────────────────────────── */

.coverage-bg {
  background: var(--bg-soft);
}

.cards-row {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 900px) {
  .cards-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.coverage-card {
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.coverage-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 201, 195, 0.08);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverage-chip-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary);
}

.coverage-title {
  font-weight: 600;
  color: var(--dark);
}

.coverage-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.coverage-meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── How it works ─────────────────────────────────── */

.steps-row {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

@media (min-width: 900px) {
  .steps-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.step-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
  padding: 16px 16px 18px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(21, 201, 195, 0.16);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.step-desc {
  color: var(--text-muted);
  font-size: 12px;
}

.step-arrow { display: none; }

@media (min-width: 900px) {
  .step-card  { padding-right: 26px; }
  .step-arrow {
    display: block;
    position: absolute;
    right: 4px;
    top: 18px;
    font-size: 16px;
    color: rgba(148, 163, 184, 0.9);
  }
}

/* ── Partnership ──────────────────────────────────── */

.partnership {
  background: linear-gradient(135deg, #0b1d3a 0%, #071528 60%, #020617 100%);
  color: #f9fafb;
  position: relative;
}

.partnership-inner {
  position: relative;
  display: grid;
  gap: 26px;
}

@media (min-width: 992px) {
  .partnership-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }
}

.partnership-title {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 14px;
}

.partnership-subtitle {
  font-size: 15px;
  color: rgba(226, 232, 240, 0.86);
  max-width: 520px;
}

.contact-card {
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 18px 18px 20px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 520px) {
  .contact-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.contact-label {
  color: rgba(148, 163, 184, 0.9);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-value {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13px;
  color: rgba(209, 213, 219, 0.92);
}

.contact-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.85);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* ── Waitlist ─────────────────────────────────────── */

.waitlist {
  background: var(--bg-soft);
}

.waitlist-header {
  text-align: center;
  margin-bottom: 48px;
}

.waitlist-grid {
  display: grid;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

/* ── Delivery calculator ──────────────────────────── */

.calc-card {
  background: var(--dark);
  border-radius: 24px;
  padding: 32px;
  color: #f9fafb;
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.calc-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(21, 201, 195, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.calc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.calc-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.calc-desc {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7);
  margin: 0 0 24px;
}

.calc-field-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 7px;
}

.calc-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(148, 163, 184, 0.3);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 16px;
}

.calc-input:focus {
  border-color: var(--primary);
}

.calc-btn {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.calc-result-item {
  background: rgba(21, 201, 195, 0.1);
  border: 1px solid rgba(21, 201, 195, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.calc-result-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.calc-result-label {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.6);
  margin-top: 4px;
}

.calc-message {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.6);
}

.calc-warning {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7);
}

/* ── Footer ───────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
  padding: 20px 0 26px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--dark);
}
