/* ============================================================
   NO LIMIT NET — Main Stylesheet
   Easy to customize: edit the :root variables below
   ============================================================ */

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

:root {
  --primary:        #0D2473;   /* Deep Navy */
  --primary-dark:   #081859;
  --primary-light:  #1a3299;
  --secondary:      #09B8D6;   /* Electric Teal */
  --secondary-dark: #07A1BD;
  --white:          #ffffff;
  --bg:             #ffffff;
  --foreground:     #0A112A;
  --muted:          #EEF2F7;
  --muted-fg:       #6B7EA3;
  --border:         #DDE4EE;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-2xl:     28px;
  --radius-full:    9999px;
  --container:      1200px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow:         0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:      0 16px 48px rgba(0,0,0,.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--foreground);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 800; color: var(--foreground); }
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--muted-fg); line-height: 1.75; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted-fg); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-lg { padding: 18px 36px; font-size: 1.125rem; }
.btn-xl { padding: 20px 44px; font-size: 1.25rem; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(9,184,214,0.35); }
.btn-outline { background: rgba(255,255,255,0.1); color: var(--white); border: 2px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.2); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--secondary); box-shadow: var(--shadow); }
.card-muted { background: var(--muted); border-color: transparent; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-diamond {
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border-radius: 4px;
  transform: rotate(45deg);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-fg);
  transition: color 0.15s;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--primary); }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.9rem;
}
.navbar-phone svg { color: var(--secondary); }
.navbar-cta { margin-left: 8px; }
.navbar-cta .btn { padding: 10px 20px; font-size: 0.875rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.mobile-menu nav a { font-size: 1rem; font-weight: 600; color: var(--muted-fg); padding: 4px 0; }
.mobile-menu nav a:hover { color: var(--primary); }
.mobile-menu-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .logo-icon { background: var(--white); }
.footer-logo .logo-diamond { background: var(--secondary); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.875rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
}
.footer-disclaimer { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   HERO (Home page)
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,36,115,0.97) 0%, rgba(13,36,115,0.82) 55%, rgba(13,36,115,0.2) 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 700px; color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(9,184,214,0.15);
  color: var(--secondary);
  border: 1px solid rgba(9,184,214,0.3);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; margin-bottom: 24px; line-height: 1.05; color: var(--white); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.6; font-weight: 300; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item svg { color: var(--secondary); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--primary); margin-bottom: 20px; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.2rem; }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3-col { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: start; }

/* ============================================================
   HOME SECTIONS
   ============================================================ */
/* Section 2 - Services */
.bg-white { background: var(--white); }
.bg-muted { background: var(--muted); }
.bg-primary { background: var(--primary); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header h2 { color: var(--primary); margin-bottom: 16px; }

.service-card { background: var(--muted); border: 1px solid transparent; border-radius: var(--radius-xl); padding: 40px; transition: border-color 0.2s; }
.service-card:hover { border-color: var(--secondary); }
.service-icon { width: 60px; height: 60px; background: rgba(13,36,115,0.05); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--secondary); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--primary); margin-bottom: 12px; }

/* Section 3 - Speed Tiers */
.speed-section { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.speed-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.08) 1px, transparent 0); background-size: 40px 40px; }
.speed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.speed-grid h2 { color: var(--white); margin-bottom: 16px; }
.speed-grid p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.speed-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.speed-bullet { width: 48px; height: 48px; border-radius: 50%; background: rgba(9,184,214,0.2); border: 1px solid rgba(9,184,214,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--secondary); }
.speed-bullet svg { width: 22px; height: 22px; }
.speed-item h4 { font-size: 1.2rem; color: var(--white); font-weight: 800; margin-bottom: 4px; }
.speed-item p { color: rgba(255,255,255,0.65); margin: 0; }
.speed-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.1); }

/* Section 4 - Why us */
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-sm); }
.why-card svg { color: var(--secondary); width: 36px; height: 36px; margin-bottom: 20px; }
.why-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; }

/* Section 5 - How it works */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.steps-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.step-item { display: flex; gap: 24px; margin-bottom: 40px; }
.step-number { font-size: 2.5rem; font-weight: 900; color: rgba(9,184,214,0.3); line-height: 1; flex-shrink: 0; min-width: 56px; }
.step-item h4 { color: var(--primary); font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.step-item p { font-size: 0.95rem; margin: 0; }

/* Section 6 - Coverage callout */
.coverage-callout { background: var(--primary); padding: 96px 0; text-align: center; }
.coverage-callout h2 { color: var(--white); margin-bottom: 20px; }
.coverage-callout p { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 640px; margin: 0 auto 40px; }
.callout-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.coverage-map-icon { width: 80px; height: 80px; margin: 0 auto 24px; color: var(--secondary); }
.coverage-map-icon svg { width: 80px; height: 80px; }

/* Section 7 - Testimonials */
.testimonial-card { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--secondary); }
.stars svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial-card blockquote { color: var(--muted-fg); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author strong { display: block; color: var(--primary); font-weight: 700; }
.testimonial-author span { font-size: 0.875rem; color: var(--muted-fg); }

/* Section 8 - CTA */
.bottom-cta { padding: 96px 0; background: rgba(9,184,214,0.04); }
.cta-box { background: var(--primary); border-radius: 28px; padding: 72px; text-align: center; box-shadow: var(--shadow-xl); max-width: 900px; margin: 0 auto; }
.cta-box h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3.5rem); margin-bottom: 20px; }
.cta-box p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 520px; margin: 0 auto 40px; }
.cta-phone-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(9,184,214,0.5); } 50% { box-shadow: 0 0 0 12px rgba(9,184,214,0); } }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 80px; }
.service-detail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 48px; box-shadow: var(--shadow-sm); }
.service-detail-icon { width: 70px; height: 70px; background: rgba(13,36,115,0.05); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--secondary); }
.service-detail-icon svg { width: 32px; height: 32px; }
.service-detail-card h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 16px; }
.service-detail-card > p { margin-bottom: 28px; }
.feature-list { margin-bottom: 36px; }
.feature-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.9rem; font-weight: 600; color: rgba(13,36,115,0.8); }
.feature-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; flex-shrink: 0; }
.services-cta { background: var(--primary); border-radius: var(--radius-2xl); padding: 72px; text-align: center; }
.services-cta h2 { color: var(--white); margin-bottom: 16px; }
.services-cta p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; }

/* ============================================================
   PLANS PAGE
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plan-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); }
.plan-card.popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
  z-index: 5;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.plan-header { text-align: center; margin-bottom: 28px; }
.plan-header h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.plan-speed { font-size: 1.3rem; font-weight: 900; color: var(--secondary); margin-bottom: 16px; }
.plan-price { display: flex; align-items: flex-end; justify-content: center; gap: 2px; margin-bottom: 8px; }
.plan-price .dollar { font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1.4; }
.plan-price .amount { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; }
.plan-price .period { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 6px; }
.plan-ideal { font-size: 0.8rem; color: var(--muted-fg); background: var(--muted); padding: 6px 14px; border-radius: var(--radius); display: inline-block; font-weight: 600; }
.plan-features { flex: 1; margin-bottom: 28px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; }
.plan-feature svg { color: var(--secondary); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.plan-feature span { font-size: 0.85rem; color: rgba(13,36,115,0.8); }
.plans-note { text-align: center; font-size: 0.85rem; color: var(--muted-fg); max-width: 800px; margin: 0 auto; padding: 0 16px; }

/* ============================================================
   COVERAGE PAGE
   ============================================================ */
.zip-card { background: var(--primary); border-radius: var(--radius-2xl); padding: 64px; text-align: center; max-width: 700px; margin: 0 auto 80px; position: relative; overflow: hidden; box-shadow: var(--shadow-xl); }
.zip-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.zip-card h2 { color: var(--white); margin-bottom: 16px; font-size: 1.8rem; }
.zip-card p { color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.zip-form { display: flex; gap: 12px; max-width: 420px; margin: 0 auto 36px; }
.zip-input { flex: 1; height: 56px; padding: 0 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: var(--white); font-size: 1.1rem; font-weight: 600; }
.zip-input::placeholder { color: rgba(255,255,255,0.45); }
.zip-input:focus { outline: 2px solid var(--secondary); outline-offset: 0; }
.zip-divider { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; }
.zip-divider p { color: rgba(255,255,255,0.75); font-weight: 600; margin-bottom: 12px; }
.zip-phone { font-size: 1.6rem; font-weight: 900; color: var(--secondary); display: flex; align-items: center; justify-content: center; gap: 10px; }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.region-card { background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.region-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.region-card-header svg { color: var(--secondary); width: 20px; height: 20px; }
.region-card-header h4 { color: var(--primary); font-size: 1.05rem; font-weight: 800; }
.region-card p { font-size: 0.875rem; }
.coverage-note { text-align: center; font-size: 0.875rem; color: var(--muted-fg); margin-top: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-card { background: var(--white); border-radius: var(--radius-2xl); padding: 48px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--secondary); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; background: var(--muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.2s; }
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--secondary); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--muted-fg); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-cta { background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 56px; text-align: center; }
.faq-cta h3 { color: var(--primary); margin-bottom: 12px; }
.faq-cta p { margin-bottom: 28px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 80px; align-items: start; }
.about-text h2 { color: var(--primary); margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; }
.about-callout { background: var(--primary); color: var(--white); border-radius: var(--radius-2xl); padding: 48px; }
.about-callout h3 { color: var(--white); margin-bottom: 32px; font-size: 1.4rem; }
.about-point { display: flex; gap: 16px; margin-bottom: 32px; }
.about-point:last-child { margin-bottom: 0; }
.about-point svg { color: var(--secondary); width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px; }
.about-point strong { display: block; color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.about-point p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.about-cta { text-align: center; }
.about-cta h2 { color: var(--primary); margin-bottom: 28px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.contact-info-stack { display: flex; flex-direction: column; gap: 24px; }
.contact-phone-card { background: var(--primary); border-radius: var(--radius-2xl); padding: 36px; box-shadow: var(--shadow-lg); color: var(--white); }
.contact-phone-card svg { color: var(--secondary); width: 40px; height: 40px; margin-bottom: 16px; }
.contact-phone-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.contact-phone-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 16px; }
.contact-phone-number { font-size: 1.6rem; font-weight: 900; color: var(--secondary); }
.contact-details-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-details-card h3 { color: var(--primary); margin-bottom: 24px; font-size: 1.1rem; }
.contact-detail-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-detail-item:last-child { margin-bottom: 0; }
.contact-detail-item svg { color: var(--secondary); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-detail-item strong { display: block; color: var(--primary); font-weight: 700; margin-bottom: 2px; font-size: 0.875rem; }
.contact-detail-item span { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.5; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 48px; box-shadow: var(--shadow-sm); }
.contact-form-card h2 { color: var(--primary); margin-bottom: 32px; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.form-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--muted);
  color: var(--foreground);
  transition: border-color 0.15s;
}
.form-input:focus { outline: none; border-color: var(--secondary); background: var(--white); }
.form-textarea { height: auto; padding: 14px 16px; resize: vertical; min-height: 140px; }

/* ============================================================
   LEGAL PAGES (Privacy, Terms, Disclaimer)
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { color: var(--primary); margin-bottom: 8px; }
.legal-content .last-updated { color: var(--muted-fg); font-size: 0.9rem; margin-bottom: 40px; }
.legal-section { margin-bottom: 36px; }
.legal-section h2 { color: var(--primary); font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; margin-top: 40px; }
.legal-section p { margin-bottom: 16px; }
.legal-section ul { list-style: disc; padding-left: 24px; }
.legal-section ul li { color: var(--muted-fg); margin-bottom: 10px; line-height: 1.6; }
.legal-section ul li strong { color: var(--foreground); }
.legal-highlight { background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 32px; }
.legal-highlight p { color: var(--primary); font-weight: 700; font-size: 1.05rem; margin: 0; }
.legal-contact { color: var(--primary) !important; font-weight: 600; margin-top: 8px; line-height: 1.8; }

/* ============================================================
   UTILS
   ============================================================ */
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 12px; }
.inline-flex { display: inline-flex; align-items: center; gap: 8px; }
.gap-4 { gap: 4px; }
.phone-display { font-size: 1.8rem; font-weight: 900; color: var(--secondary); display: inline-flex; align-items: center; gap: 10px; }
.phone-display svg { width: 28px; height: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .speed-grid { grid-template-columns: 1fr; gap: 48px; }
  .speed-img { max-width: 560px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .navbar-links, .navbar-phone, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4, .services-grid, .about-grid, .steps-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .contact-layout, .grid-3-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 48px 28px; }
  .zip-form { flex-direction: column; }
  .region-grid { grid-template-columns: 1fr; }
  .zip-card { padding: 40px 24px; }
  .hero-buttons { flex-direction: column; }
  .hero { padding: 80px 0 80px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .callout-buttons { flex-direction: column; align-items: center; }
  .speed-img { max-width: 100%; }
  .faq-card { padding: 28px; }
  .contact-form-card { padding: 28px; }
  .services-cta { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .cta-box { border-radius: 20px; }
}
