/* ========================================
   Midlands Spotlight — Pure CSS
   No frameworks, no build tools.
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* ---------- Colors (as CSS vars) ---------- */
:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 768px;
}

.section {
  padding: 80px 0;
}

.bg-white { background: #fff; }
.bg-slate { background: var(--slate-50); }

/* ---------- Typography helpers ---------- */
.text-amber { color: var(--amber-500); }
.text-amber-light { color: var(--amber-400); }
.text-white { color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-600);
}

.section-header h2 {
  margin-top: 12px;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.025em;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-sm { padding: 10px 24px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { display: block; width: 100%; padding: 12px 0; }

.btn-primary {
  background: var(--sky-600);
  color: #fff;
}
.btn-primary:hover { background: var(--sky-700); }

.btn-secondary {
  background: var(--slate-100);
  color: var(--slate-800);
}
.btn-secondary:hover { background: var(--slate-200); }

.btn-amber {
  background: var(--amber-500);
  color: var(--slate-900);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.btn-amber:hover { background: var(--amber-400); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); }

/* ========================================
   HEADER
   ======================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--sky-700);
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--sky-700); }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  padding: 8px;
  color: var(--slate-700);
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--slate-200);
  background: #fff;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,74,110,0.92), rgba(7,89,133,0.88), rgba(15,23,42,0.92));
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(251,191,36,0.2);
  color: var(--amber-300);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 900px;
  margin: 16px auto 0;
}

.hero-sub {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(224,242,254,0.9);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-buttons .btn { width: 100%; max-width: 300px; }

.hero-trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  font-size: 0.875rem;
  color: rgba(186,230,253,0.7);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--emerald-400);
  flex-shrink: 0;
}

.hide-mobile { display: none; }

/* ========================================
   BENEFITS (Why Shared Mail)
   ======================================== */
.benefits-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-50);
  border-radius: 12px;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--sky-600);
}

.benefit-card h3 {
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}

.benefit-card p {
  margin-top: 8px;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-grid {
  position: relative;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

.steps-line {
  display: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sky-600);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(2,132,199,0.3);
  position: relative;
  z-index: 2;
}

.step h3 {
  margin-top: 24px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}

.step p {
  margin-top: 8px;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ========================================
   COVERAGE
   ======================================== */
.coverage-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}

.coverage-text .section-tag {
  display: block;
  margin-bottom: 0;
}

.coverage-text h2 {
  margin-top: 12px;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.025em;
}

.coverage-text > p {
  margin-top: 16px;
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.zone-card {
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  border-radius: 8px;
  padding: 12px 16px;
}

.zone-name {
  font-weight: 700;
  color: var(--slate-900);
}

.zone-count {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.coverage-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  overflow: hidden;
}

.map-logo {
  width: 256px;
  height: 256px;
  object-fit: contain;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pricing-highlight {
  border-color: var(--sky-600);
  box-shadow: 0 8px 30px rgba(2,132,199,0.15);
  ring: 2px solid var(--sky-600);
  outline: 2px solid var(--sky-600);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky-600);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 9999px;
}

.pricing-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}

.pricing-desc {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.pricing-price {
  margin-top: 24px;
}

.pricing-price .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--slate-900);
}

.pricing-price .period {
  color: var(--slate-500);
}

.pricing-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.check-green {
  width: 20px;
  height: 20px;
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  margin-top: 32px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--slate-200);
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--slate-400);
  transition: transform 0.25s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--slate-500);
  line-height: 1.7;
}

/* ========================================
   CTA / RESERVE
   ======================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-700), var(--sky-800), var(--slate-900));
  padding: 80px 0;
}

.cta-glow {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: rgba(251,191,36,0.1);
  filter: blur(80px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
}

.cta-content > p {
  margin-top: 16px;
  font-size: 1.125rem;
  color: rgba(224,242,254,0.9);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 14px 24px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cta-form input::placeholder {
  color: rgba(186,230,253,0.6);
}

.cta-form input:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 3px rgba(251,191,36,0.3);
}

.cta-form .btn {
  padding: 14px 32px;
}

.cta-fine-print {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(186,230,253,0.6);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  border-top: 1px solid var(--slate-200);
  background: #fff;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-tagline {
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-links a:hover { color: var(--sky-600); }

.footer-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-100);
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* ========================================
   RESPONSIVE — Tablet (640px+)
   ======================================== */
@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 1.25rem; }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .hero-buttons .btn { width: auto; }
  .hide-mobile { display: inline; }

  .section-header h2 { font-size: 2.25rem; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }

  .cta-form { flex-direction: row; }

  .cta-content h2 { font-size: 2.25rem; }
}

/* ========================================
   RESPONSIVE — Desktop (768px+)
   ======================================== */
@media (min-width: 768px) {
  .section { padding: 112px 0; }

  .hero {
    padding: 144px 0 112px;
  }

  /* Show desktop nav, hide hamburger */
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ========================================
   RESPONSIVE — Large Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }

  .benefits-grid { grid-template-columns: 1fr 1fr 1fr; }

  .steps-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }

  .steps-line {
    display: block;
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--sky-200);
    pointer-events: none;
  }

  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .coverage-text h2 { font-size: 2.25rem; }

  .map-container { height: 448px; }
  .map-logo { width: 320px; height: 320px; }

  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
}