/* ============================================================
   UNBOUND WIFI — SHARED STYLESHEET
   Domain: unboundwifi.online
   ============================================================ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── VARIABLES ── */
:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --cyan: #06b6d4;
  --navy: #0a1628;
  --navy2: #0d2147;
  --bg: #ffffff;
  --bg-muted: #f8fafc;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --green: #22c55e;
  --yellow: #facc15;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.375rem; font-weight: 700; }
p { color: var(--muted); }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: .75rem;
}
.section-tag.light { color: var(--cyan); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.125rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,.35); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f1f5f9; transform: translateY(-1px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.125rem; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius); }
.btn svg { flex-shrink: 0; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .3s;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  transition: color .2s;
}
.navbar.scrolled .navbar-brand { color: var(--text); }
.brand-icon {
  width: 40px; height: 40px;
  background: rgba(59,130,246,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  color: #fff;
}
.navbar.scrolled .brand-icon { background: rgba(59,130,246,.12); color: var(--primary); }
.brand-icon:hover { background: var(--primary); color: #fff; }

.nav-links ul { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--muted); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .875rem;
  color: rgba(255,255,255,.9);
}
.navbar.scrolled .nav-phone { color: var(--text); }
@media (min-width: 1024px) { .nav-phone { display: flex; } }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: .5rem;
  transition: color .2s;
}
.navbar.scrolled .mobile-toggle { color: var(--text); }
@media (max-width: 767px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: flex; align-items: center; }
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.mobile-menu a {
  display: block;
  padding: .875rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(59,130,246,.08); color: var(--primary); }
.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  padding: .875rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: .75rem;
  color: var(--text);
}

/* ── PAGE HERO (dark) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  padding: 8rem 0 5rem;
  text-align: center;
}
.page-hero .section-tag { color: var(--cyan); }
.page-hero h1 { color: #fff; margin: .5rem 0 1.25rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.25rem; max-width: 640px; margin: 0 auto; }
.page-hero-meta { margin-top: .75rem; font-size: .8125rem; color: rgba(255,255,255,.4); }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: var(--primary);
  border-radius: 50%;
  top: -100px; left: -150px;
  opacity: .12;
  filter: blur(80px);
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--cyan);
  border-radius: 50%;
  bottom: -80px; right: -100px;
  opacity: .12;
  filter: blur(80px);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10rem 0 6rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}
.hero-badge .dot { width: 6px; height: 6px; background: #facc15; border-radius: 50%; }
.hero h1 { color: #fff; max-width: 880px; margin: 0 auto 1.5rem; }
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: rgba(255,255,255,.75); font-size: clamp(1rem, 2vw, 1.25rem); max-width: 580px; margin: 0 auto 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-checks {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.hero-check .icon-check { color: var(--green); }
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
}

/* ── SECTIONS ── */
section { padding: 5rem 0; }
.section-alt { background: var(--bg-muted); }
.section-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
}
.section-dark h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,.65); }
.section-primary { background: var(--primary); color: #fff; text-align: center; }
.section-gradient { background: linear-gradient(90deg, var(--primary), var(--cyan)); color: #fff; text-align: center; }

/* ── STATS STRIP ── */
.stats-strip { border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { color: var(--muted); font-weight: 600; margin-top: .375rem; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .grid-2.large { grid-template-columns: repeat(2, 1fr); gap: 5rem; align-items: center; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-body { padding: 2rem; }

.plan-card { position: relative; }
.plan-card.popular { border: 2px solid var(--primary); box-shadow: 0 4px 24px rgba(59,130,246,.12); }
.plan-popular-badge {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .5rem;
}
.plan-name { font-size: 1.5rem; font-weight: 900; }
.plan-price { display: flex; align-items: baseline; gap: .25rem; margin: .5rem 0 .25rem; }
.plan-price .amount { font-size: 2.5rem; font-weight: 900; color: var(--primary); }
.plan-price .period { color: var(--muted); font-size: .9rem; }
.plan-speed { display: flex; align-items: center; gap: .375rem; color: #0891b2; font-weight: 700; font-size: .9rem; margin-bottom: 1rem; }
.plan-desc { font-size: .9rem; margin-bottom: 1.25rem; }
.plan-features { list-style: none; margin-bottom: 1.75rem; }
.plan-features li { display: flex; align-items: center; gap: .625rem; font-size: .9rem; padding: .375rem 0; }
.plan-features li.strike { text-decoration: line-through; color: var(--muted); opacity: .5; }
.icon-check { color: var(--green); flex-shrink: 0; }
.icon-x { color: #fca5a5; flex-shrink: 0; }

/* ── FEATURE CARDS ── */
.feature-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-muted);
  transition: all .3s;
}
.feature-card:hover { background: var(--primary); color: #fff; }
.feature-card:hover p { color: rgba(255,255,255,.8); }
.feature-card:hover .feature-icon { background: rgba(255,255,255,.2); color: #fff; }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(59,130,246,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all .3s;
}
.feature-card h3 { margin-bottom: .75rem; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-number { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,.08); line-height: 1; margin-bottom: .75rem; }
.step-title { font-weight: 700; font-size: 1.125rem; color: #fff; margin-bottom: .625rem; }
.step-desc { color: rgba(255,255,255,.6); font-size: .9375rem; }

/* ── TESTIMONIALS ── */
.stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.star { color: var(--yellow); }
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(59,130,246,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.125rem;
}
.author-name { font-weight: 700; font-size: .9rem; }
.author-loc { color: var(--muted); font-size: .8rem; }

/* ── CTA SECTIONS ── */
.cta-section { padding: 5rem 0; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section p { font-size: 1.125rem; opacity: .8; max-width: 560px; margin: 0 auto 2.5rem; }
.cta-note { margin-top: 1.5rem; font-size: .875rem; opacity: .6; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT INFO ── */
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(59,130,246,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--muted); margin-bottom: .25rem; }
.contact-value { font-weight: 700; font-size: 1.0625rem; color: var(--text); }
.contact-value a { color: inherit; transition: color .15s; }
.contact-value a:hover { color: var(--primary); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
label { display: block; font-size: .875rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
input, textarea, select {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
input.error, textarea.error { border-color: #ef4444; }
.error-msg { color: #ef4444; font-size: .8rem; margin-top: .3rem; display: none; }
.error-msg.show { display: block; }
textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1.25rem;
  color: #166534;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ── ACCORDION (FAQ) ── */
.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: .75rem;
  background: #fff;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color .2s;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(59,130,246,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
  font-size: 1rem;
  line-height: 1;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-content-inner { padding: 0 1.5rem 1.375rem; color: var(--muted); line-height: 1.75; }

/* ── COVERAGE ── */
.zip-card { max-width: 560px; margin: 0 auto; }
.zip-form { display: flex; gap: .75rem; }
.zip-form input { border-radius: var(--radius); flex: 1; padding: .875rem 1.25rem; font-size: 1.0625rem; }
.zip-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  display: none;
}
.zip-result.success { display: block; background: #f0fdf4; border: 1.5px solid #86efac; }
.zip-result .result-head { display: flex; align-items: center; gap: .75rem; font-weight: 700; color: #166534; font-size: 1.0625rem; margin-bottom: .5rem; }
.zip-result p { color: #15803d; font-size: .9375rem; margin-bottom: 1rem; }

/* ── VALUES / WHY CARDS ── */
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
  transition: box-shadow .25s;
}
.value-card:hover { box-shadow: var(--shadow); }
.value-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.125rem;
}
.value-card h3 { font-size: 1.125rem; margin-bottom: .625rem; }
.value-card p { font-size: .9rem; }

/* ── TEAM CARDS ── */
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(59,130,246,.3);
}
.team-name { font-weight: 800; font-size: 1.0625rem; }
.team-role { color: var(--muted); font-size: .875rem; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; font-weight: 900; color: var(--text); margin: 2.5rem 0 .875rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.legal-content ul li { font-size: 1rem; color: var(--muted); line-height: 1.8; padding: .25rem 0; }
.legal-content a { color: var(--primary); }
.legal-content a:hover { text-decoration: underline; }
.legal-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; font-size: .875rem; }
.legal-footer a { color: var(--primary); }
.notice-box {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.notice-box strong { color: #92400e; display: block; font-size: 1.0625rem; margin-bottom: .375rem; }
.notice-box p { color: #78350f; margin: 0; }

/* ── WHY CARDS (3-col border) ── */
.why-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: all .25s;
}
.why-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(59,130,246,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.25rem;
}
.why-card h3 { font-size: 1.25rem; margin-bottom: .875rem; }

/* ── COVERAGE CITY GRID ── */
.city-card { padding: 1.5rem; }
.city-card h3 { font-size: 1.0625rem; font-weight: 800; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.city-list { list-style: none; }
.city-list li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--muted); padding: .3rem 0; }
.city-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: .75rem; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; } }
.footer-brand { max-width: 280px; }
.footer-brand .navbar-brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { color: #94a3b8; font-size: .9375rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.footer-call:hover { background: var(--primary-dark); }
.footer-col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .75rem; }
.footer-col ul a { color: #94a3b8; font-size: .9375rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; color: #94a3b8; font-size: .9375rem; margin-bottom: 1rem; }
.footer-contact-icon { color: var(--primary); margin-top: .1rem; flex-shrink: 0; }
.footer-contact a { color: inherit; transition: color .15s; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; text-align: center; }
.footer-disclaimer { color: #64748b; font-size: .8125rem; margin-bottom: .75rem; }
.footer-copy { color: #475569; font-size: .8125rem; }

/* ── INLINE ICONS (SVG helpers) ── */
svg.icon { display: inline-block; vertical-align: middle; }

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: .75rem; }

/* ── ACTIVE NAV PAGE ── */
.page-home .nav-home,
.page-plans .nav-plans,
.page-coverage .nav-coverage,
.page-faq .nav-faq,
.page-about .nav-about,
.page-contact .nav-contact { color: var(--primary) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  section { padding: 3.5rem 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; max-width: 340px; }
  .zip-form { flex-direction: column; }
  .zip-form input { width: 100%; }
}
