/* ============================================================
   BROADBAND BLOOM — SHARED STYLESHEET
   Domain: broadbandbloom.shop
   AT&T-inspired design | Independent Platform
   ============================================================ */

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  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 {
  --blue: #0057B8;
  --blue-dark: #00439a;
  --blue-light: #00A8E0;
  --navy: #00244c;
  --navy2: #001a38;
  --cyan: #00c2e0;
  --bg: #ffffff;
  --bg-gray: #f5f7fa;
  --bg-gray2: #eef2f8;
  --border: #dde3ef;
  --text: #1a1a2e;
  --muted: #5a6a8a;
  --green: #16a34a;
  --yellow: #f59e0b;
  --red-light: #fef2f2;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 20px rgba(0,36,76,.08);
  --shadow-lg: 0 8px 40px rgba(0,36,76,.14);
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--muted); line-height: 1.7; }

.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: .625rem;
}
.label.light { color: var(--cyan); }
.label.white { color: rgba(255,255,255,.7); }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: .875rem; }
.section-head p { max-width: 560px; margin: 0 auto; font-size: 1.0625rem; }
.section-head.left { text-align: left; }
.section-head.left p { margin: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.875rem;
  border-radius: var(--radius);
  font-family: inherit; font-size: .9375rem; font-weight: 700;
  cursor: pointer; transition: all .2s; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,87,184,.3); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-blue { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn-white:hover { background: #e8f0fd; }
.btn-green { background: #16a34a; color: #fff; border-color: #16a34a; }
.btn-green:hover { background: #15803d; }
.btn-lg { padding: 1.0625rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { flex-shrink: 0; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease; padding: 0;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.navbar-brand {
  display: flex; align-items: center; gap: .625rem;
  font-weight: 900; font-size: 1.2rem; color: #fff; transition: color .2s;
}
.navbar.scrolled .navbar-brand { color: var(--text); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; transition: all .2s;
}
.navbar.scrolled .brand-mark { background: var(--blue); }
.brand-bloom { color: var(--blue-light); }
.navbar.scrolled .brand-bloom { color: var(--blue); }

.nav-links ul { display: flex; align-items: center; gap: 1.625rem; }
.nav-links a {
  font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.85);
  transition: color .2s; padding: .25rem 0;
}
.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(--blue); }

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

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: .5rem; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .2s;
}
.navbar.scrolled .hamburger span { background: var(--text); }
@media (max-width: 767px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
}

.mobile-nav {
  display: none; background: #fff; border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,36,76,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { margin-bottom: 1.25rem; }
.mobile-nav ul li { border-bottom: 1px solid var(--bg-gray); }
.mobile-nav ul a {
  display: block; padding: .875rem 0; font-weight: 600;
  color: var(--text); transition: color .15s;
}
.mobile-nav ul a:hover, .mobile-nav ul a.active { color: var(--blue); }
.mobile-tel {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-weight: 800; font-size: 1.125rem;
  color: var(--blue); padding: .875rem 0 1rem;
}
.navbar.scrolled { background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.06); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 45%, #0057B8 100%);
  display: flex; align-items: center;
}
.hero-bg-circles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,224,.18), transparent 70%);
}
.hero-circle-1 { width: 700px; height: 700px; top: -200px; right: -100px; }
.hero-circle-2 { width: 500px; height: 500px; bottom: -200px; left: -150px; background: radial-gradient(circle, rgba(0,87,184,.25), transparent 70%); }
.hero-content { position: relative; z-index: 1; padding: 9rem 0 5.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .625rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 6px;
  padding: .45rem 1rem; font-size: .8125rem; font-weight: 700;
  color: #fff; margin-bottom: 1.75rem;
}
.hero-badge .pulse { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { color: #fff; max-width: 800px; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero-sub { color: rgba(255,255,255,.75); font-size: clamp(.975rem, 1.8vw, 1.175rem); max-width: 560px; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: rgba(255,255,255,.7); font-weight: 500;
}
.hero-trust-icon { color: #4ade80; flex-shrink: 0; }
.hero-right { display: none; }
@media (min-width: 1024px) {
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .hero-right { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-end; }
}
.speed-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg);
  padding: 2rem; width: 280px;
}
.speed-card-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); font-weight: 700; margin-bottom: .5rem; }
.speed-card-value { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.speed-card-unit { font-size: 1rem; color: var(--cyan); font-weight: 700; margin-bottom: .75rem; }
.speed-bar { height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; margin-bottom: .5rem; }
.speed-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue-light), var(--cyan)); border-radius: 3px; }
.speed-card-sub { font-size: .75rem; color: rgba(255,255,255,.55); }

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

/* ── SECTIONS ── */
section { padding: 5rem 0; }
.section-gray { background: var(--bg-gray); }
.section-gray2 { background: var(--bg-gray2); }
.section-blue { background: var(--blue); color: #fff; }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-blue h2 { color: #fff; }
.section-navy .section-head p, .section-blue .section-head p { color: rgba(255,255,255,.7); }
.section-gradient { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; text-align: center; }
.section-gradient h2 { color: #fff; }

/* ── STATS BAR ── */
.stats-bar { background: var(--blue); padding: 2.5rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-num { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #fff; line-height: 1; }
.stat-lbl { font-size: .875rem; color: rgba(255,255,255,.7); font-weight: 500; margin-top: .25rem; }

/* ── GRID ── */
.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-4 { grid-template-columns: repeat(4,1fr); }
  .grid-2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}

/* ── PLAN CARDS ── */
.plan-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .25s; position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 4px 24px rgba(0,87,184,.15); }
.plan-badge {
  background: var(--blue); color: #fff; text-align: center;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  padding: .5rem;
}
.plan-body { padding: 1.75rem; }
.plan-tier { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--muted); margin-bottom: .5rem; }
.plan-name { font-size: 1.375rem; font-weight: 900; color: var(--text); margin-bottom: .25rem; }
.plan-speed {
  display: inline-flex; align-items: center; gap: .375rem;
  background: rgba(0,87,184,.06); color: var(--blue);
  font-weight: 700; font-size: .875rem; padding: .3rem .75rem;
  border-radius: 6px; margin-bottom: 1rem;
}
.plan-price { margin-bottom: .25rem; }
.plan-amount { font-size: 2.75rem; font-weight: 900; color: var(--blue); line-height: 1; }
.plan-period { font-size: .9rem; color: var(--muted); }
.plan-note { font-size: .8rem; color: var(--muted); margin-bottom: 1.25rem; }
.plan-features { margin-bottom: 1.5rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9rem; padding: .4rem 0; border-bottom: 1px solid var(--bg-gray); }
.plan-features li:last-child { border-bottom: none; }
.plan-features .chk { color: var(--green); flex-shrink: 0; margin-top: .1rem; }
.plan-features .xmk { color: #fca5a5; flex-shrink: 0; margin-top: .1rem; }

/* ── FEATURE GRID ── */
.feat-card {
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--bg-gray); transition: all .25s;
  border: 1.5px solid transparent;
}
.feat-card:hover { background: #fff; border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: rgba(0,87,184,.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.125rem; transition: all .25s;
}
.feat-card:hover .feat-icon { background: var(--blue); color: #fff; }
.feat-card h3 { margin-bottom: .625rem; }

/* ── HOW IT WORKS ── */
.step-wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .step-wrap { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .step-wrap { grid-template-columns: repeat(4,1fr); } }
.step { position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; font-weight: 900; color: #fff; margin-bottom: 1.125rem;
}
.step h3 { font-size: 1.0625rem; color: #fff; margin-bottom: .625rem; }
.step p { color: rgba(255,255,255,.65); font-size: .9375rem; }

/* ── TESTIMONIALS ── */
.tcard {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,36,76,.06); border: 1px solid var(--border);
}
.stars { display: flex; gap: .2rem; margin-bottom: .875rem; }
.star { color: #f59e0b; font-size: 1rem; }
.tcard-text { font-size: .95rem; color: var(--text); line-height: 1.75; margin-bottom: 1.375rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: .75rem; }
.tcard-av {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.tcard-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.tcard-loc { font-size: .8rem; color: var(--muted); }

/* ── WHY / VALUE CARDS ── */
.why-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; transition: all .25s; background: #fff;
}
.why-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.why-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(0,87,184,.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.125rem;
}
.why-card h3 { font-size: 1.125rem; margin-bottom: .75rem; }

/* ── DEALS ── */
.deal-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,36,76,.07); border: 1.5px solid var(--border);
  transition: box-shadow .25s;
}
.deal-card:hover { box-shadow: var(--shadow-lg); }
.deal-top { background: var(--blue); padding: 1.5rem; color: #fff; }
.deal-top h3 { color: #fff; font-size: 1.25rem; }
.deal-top p { color: rgba(255,255,255,.75); font-size: .875rem; }
.deal-badge { display: inline-block; background: #f59e0b; color: #fff; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .625rem; border-radius: 4px; margin-bottom: .625rem; }
.deal-body { padding: 1.5rem; }
.deal-body ul { list-style: none; margin-bottom: 1.25rem; }
.deal-body ul li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; padding: .3rem 0; }
.deal-body ul li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.deal-exp { font-size: .8rem; color: var(--muted); margin-top: .875rem; }

/* ── SUPPORT ── */
.support-card {
  border-radius: var(--radius-lg); padding: 2rem; background: #fff;
  border: 1.5px solid var(--border); transition: all .25s;
}
.support-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.support-icon { width: 48px; height: 48px; border-radius: var(--radius); background: rgba(0,87,184,.1); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }

/* ── CITY COVERAGE ── */
.cov-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); }
.cov-head { background: var(--navy); color: #fff; padding: 1rem 1.5rem; display: flex; align-items: center; gap: .625rem; font-weight: 700; }
.cov-list { padding: 1.25rem 1.5rem; }
.cov-list li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--muted); padding: .35rem 0; border-bottom: 1px solid var(--bg-gray); }
.cov-list li:last-child { border-bottom: none; }
.cov-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

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

/* ── ZIP CHECK ── */
.zip-wrap { max-width: 540px; margin: 0 auto; }
.zip-form { display: flex; gap: .75rem; }
.zip-input {
  flex: 1; padding: .875rem 1.125rem; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 1rem;
  color: var(--text); outline: none; transition: border-color .2s;
}
.zip-input:focus { border-color: var(--blue); }
.zip-result {
  margin-top: 1.25rem; padding: 1.25rem; border-radius: var(--radius);
  display: none;
}
.zip-result.ok { display: block; background: #f0fdf4; border: 1.5px solid #86efac; }
.zip-ok-head { display: flex; align-items: center; gap: .625rem; font-weight: 700; color: #166534; font-size: 1rem; margin-bottom: .5rem; }
.zip-result p { color: #15803d; font-size: .9rem; margin-bottom: 1rem; }

/* ── CONTACT FORM ── */
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2,1fr); } }
.form-group { margin-bottom: 1.125rem; }
label { display: block; font-size: .8125rem; font-weight: 700; color: var(--text); margin-bottom: .375rem; text-transform: uppercase; letter-spacing: .04em; }
input, textarea, select {
  width: 100%; padding: .875rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: .9375rem;
  color: var(--text); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,184,.1); }
input.err, textarea.err { border-color: #ef4444; }
.err-msg { color: #ef4444; font-size: .78rem; margin-top: .3rem; display: none; }
.err-msg.show { display: block; }
textarea { resize: vertical; min-height: 128px; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 1.25rem; text-align: center; color: #166534; font-weight: 600; }
.form-success.show { display: block; }

/* ── CONTACT INFO ── */
.ci { display: flex; align-items: flex-start; gap: .875rem; margin-bottom: 1.375rem; }
.ci-icon { width: 42px; height: 42px; border-radius: var(--radius); background: rgba(0,87,184,.1); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .2rem; }
.ci-val { font-weight: 700; font-size: .9375rem; color: var(--text); }
.ci-val a { color: inherit; transition: color .15s; }
.ci-val a:hover { color: var(--blue); }

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

/* ── CTA SECTION ── */
.cta-sec { padding: 5.5rem 0; }
.cta-sec h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: .875rem; color: #fff; }
.cta-sec p { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 540px; margin: 0 auto 2.25rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: .8125rem; color: rgba(255,255,255,.5); margin-top: 1.25rem; }

/* ── TEAM ── */
.team-card { text-align: center; }
.team-av { width: 76px; height: 76px; border-radius: 18px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.625rem; font-weight: 900; margin: 0 auto .875rem; box-shadow: 0 4px 14px rgba(0,87,184,.25); }
.team-name { font-weight: 800; font-size: 1rem; }
.team-role { color: var(--muted); font-size: .8125rem; }

/* ── FOOTER ── */
.footer { background: var(--navy2); 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; display: inline-flex; }
.footer-brand p { color: #7a8fab; font-size: .9rem; line-height: 1.7; margin-bottom: 1.375rem; }
.footer-cta-tel { display: inline-flex; align-items: center; gap: .5rem; background: var(--blue); color: #fff; font-weight: 700; padding: .75rem 1.25rem; border-radius: var(--radius); transition: background .2s; }
.footer-cta-tel:hover { background: var(--blue-dark); }
.footer-col h4 { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: rgba(255,255,255,.5); margin-bottom: 1.125rem; }
.footer-col ul li { margin-bottom: .625rem; }
.footer-col ul a { color: #7a8fab; font-size: .9rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--blue-light); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .625rem; color: #7a8fab; font-size: .875rem; margin-bottom: .875rem; }
.footer-contact-list svg { color: var(--blue-light); flex-shrink: 0; margin-top: .1rem; }
.footer-contact-list a { color: inherit; transition: color .15s; }
.footer-contact-list a:hover { color: var(--blue-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem; text-align: center; }
.footer-disc { color: #4a5f7a; font-size: .8rem; margin-bottom: .625rem; }
.footer-copy { color: #3a4f68; font-size: .8rem; }

/* ── 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; }

/* Page active nav */
.p-home .n-home, .p-plans .n-plans, .p-coverage .n-coverage,
.p-faq .n-faq, .p-deals .n-deals, .p-about .n-about, .p-contact .n-contact { color: var(--blue) !important; }
.navbar:not(.scrolled) .p-home .n-home { color: #fff !important; }

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