/* ================================================
   FIBER FLOW - Shared Stylesheet
   Edit colors in :root to retheme the entire site
   ================================================ */

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

/* ---- THEME VARIABLES ---- */
:root {
  --bg:          #070d1c;
  --bg-card:     #0c1428;
  --bg-card2:    #0f1a32;
  --primary:     #00d4ff;
  --primary-fg:  #070d1c;
  --fg:          #f8fafc;
  --muted:       #8896b3;
  --border:      rgba(255,255,255,0.08);
  --border-med:  rgba(255,255,255,0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;
  --font:        'Plus Jakarta Sans', sans-serif;
  --transition:  0.2s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { color: var(--fg); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--muted); }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }

@media(max-width:900px) { .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .grid-3,.grid-2,.grid-4 { grid-template-columns: 1fr; } }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #7df9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- COMPONENTS ---- */

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 2rem;
  height: 3rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 0 24px rgba(0,212,255,0.3);
}
.btn-primary:hover { background: #00bde8; transform: translateY(-1px); box-shadow: 0 0 32px rgba(0,212,255,0.45); }
.btn-outline {
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  border: 1px solid var(--border-med);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { height: 3.75rem; padding: 0 2.5rem; font-size: 1.05rem; border-radius: var(--radius-full); }
.btn-white { background: #fff; color: var(--bg); font-weight: 800; }
.btn-white:hover { background: #e2e8f0; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition);
}
.card:hover { border-color: rgba(0,212,255,0.3); }
.card-primary {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 0 40px rgba(0,212,255,0.12);
  position: relative;
}

/* Section Headings */
.section-heading { margin-bottom: 3.5rem; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p { font-size: 1.1rem; max-width: 680px; }
.section-heading.center { text-align: center; }
.section-heading.center p { margin: 0 auto; }

/* Check List */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  margin-top: 2px;
}

/* Stars */
.stars { color: var(--primary); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }

/* Icon Box */
.icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all var(--transition);
}
.card:hover .icon-box { background: var(--primary); }

/* Divider */
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* Glow BG */
.glow-top-right {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.relative { position: relative; }
.z1 { position: relative; z-index: 1; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,13,28,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.navbar-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.2rem; font-weight: 800; color: var(--fg);
  text-decoration: none;
}
.navbar-brand .logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-fg); font-size: 1.2rem;
}

.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a {
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--primary); }

.navbar-actions { display: flex; align-items: center; gap: 1rem; }
.navbar-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; font-weight: 600; color: var(--fg);
  text-decoration: none;
  transition: color var(--transition);
}
.navbar-phone:hover { color: var(--primary); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--fg); border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: absolute; top: 72px; left: 0; right: 0;
  background: rgba(7,13,28,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column; gap: 1rem;
}
.mobile-menu a {
  color: var(--muted); font-size: 1.05rem; font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }

@media(max-width:768px) {
  .navbar-links, .navbar-actions { display: none; }
  .hamburger { display: flex; }
}

/* ---- FOOTER ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 340px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.9rem;
  margin-bottom: 0.6rem; text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--primary); }
.footer-col h4 { color: var(--fg); font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--muted); font-size: 0.9rem; transition: color var(--transition); text-decoration: none; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }

@media(max-width:700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- HERO ---- */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-glow-1 {
  position: absolute; top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-content { z-index: 1; }
.hero-content h1 { margin: 1rem 0; line-height: 1.1; }
.hero-content p { font-size: 1.1rem; max-width: 480px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-note { margin-top: 1rem; color: var(--muted); font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; }
.hero-note::before { content: '✓'; color: var(--primary); font-weight: 700; }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 480px;
}
.orb { position: absolute; border-radius: 50%; border: 1px solid rgba(0,212,255,0.25); }
.orb-1 { width: 280px; height: 280px; animation: pulse 3s ease-in-out infinite; }
.orb-2 { width: 200px; height: 200px; border-color: rgba(0,212,255,0.4); }
.orb-3 {
  width: 120px; height: 120px;
  background: rgba(0,212,255,0.15);
  border-color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: 0 0 50px rgba(0,212,255,0.3) inset, 0 0 30px rgba(0,212,255,0.2);
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.05);opacity:1} }

.data-lines {
  position: absolute; top: 50%; left: 0; right: 0;
  pointer-events: none;
}
.data-line {
  position: absolute;
  height: 1px;
  width: 35%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: slide 3s linear infinite;
}
.data-line:nth-child(1){top:-60px;animation-delay:0s;}
.data-line:nth-child(2){top:-20px;animation-delay:0.5s;}
.data-line:nth-child(3){top:20px;animation-delay:1s;}
.data-line:nth-child(4){top:60px;animation-delay:1.5s;}
.data-line:nth-child(5){top:100px;animation-delay:2s;}
@keyframes slide { from{left:-40%} to{left:140%} }

@media(max-width:768px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-bar-label { text-align: center; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 1.5rem; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; opacity: 0.55; }
.trust-logos .trust-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1rem; }

/* ---- FEATURES ---- */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:900px){ .features-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .features-grid{grid-template-columns:1fr;} }

/* ---- PLANS ---- */
.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; align-items: start;
}
@media(max-width:900px){ .plans-grid{grid-template-columns:1fr;} }

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.plan-card.popular {
  border: 2px solid var(--primary);
  box-shadow: 0 0 40px rgba(0,212,255,0.12);
  transform: translateY(-12px);
  position: relative;
}
.plan-card.popular::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), #7df9ff);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.plan-badge {
  position: absolute; top: -14px; right: 1.5rem;
  background: var(--primary); color: var(--primary-fg);
  font-size: 0.75rem; font-weight: 800;
  padding: 0.3rem 0.9rem; border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}
.plan-speed { font-size: 3rem; font-weight: 800; }
.plan-speed span { font-size: 1.1rem; font-weight: 400; color: var(--muted); }
.plan-price { font-size: 2.5rem; font-weight: 800; margin: 1rem 0; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; min-height: 2.5rem; }
.plan-features { flex: 1; margin-bottom: 1.5rem; }
.plan-features li {
  display: flex; gap: 0.75rem; color: rgba(248,250,252,0.8);
  font-size: 0.92rem; margin-bottom: 0.9rem;
}
.plan-features li::before {
  content: '✓';
  color: var(--primary); font-weight: 700; min-width: 16px;
}

/* ---- STEPS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 48px; left: 20%; right: 20%;
  height: 1px; background: linear-gradient(90deg, rgba(0,212,255,0.1), rgba(0,212,255,0.5), rgba(0,212,255,0.1));
}
.step-num {
  width: 96px; height: 96px;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: var(--primary);
  margin: 0 auto 2rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 30px rgba(0,212,255,0.15);
}
.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
@media(max-width:700px){ .steps-grid{grid-template-columns:1fr;} .steps-grid::before{display:none;} }

/* ---- TESTIMONIALS ---- */
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.testimonial-card .quote { font-size: 1rem; color: var(--fg); font-style: italic; margin-bottom: 1.5rem; line-height: 1.75; }
.testimonial-card .author { font-weight: 700; }
.testimonial-card .role { color: var(--muted); font-size: 0.85rem; }

/* ---- COVERAGE TEASER ---- */
.coverage-box {
  background: rgba(12,20,40,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-med);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  display: flex; align-items: center; gap: 3rem;
  position: relative; overflow: hidden;
}
.coverage-box::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') center/cover no-repeat; opacity: 0.06; }
.coverage-box-content { flex: 1; z-index: 1; }
.coverage-box-cta { z-index: 1; flex-shrink: 0; }
@media(max-width:768px){ .coverage-box{flex-direction:column;padding:2rem;} .coverage-box-cta{width:100%;} .coverage-box-cta a{width:100%;justify-content:center;} }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 7rem 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,212,255,0.06);
}
.cta-section .glow-ball {
  position: absolute; bottom: -150px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 450px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 1rem; position: relative; }
.cta-section p { margin-bottom: 2.5rem; position: relative; }
.cta-btns { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- FAQ ACCORDION ---- */
.accordion { border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%; text-align: left; background: none;
  padding: 1.4rem 0; font-size: 1.05rem; font-weight: 600;
  color: var(--fg); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-icon {
  width: 24px; height: 24px; min-width: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-med);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted);
  transition: all var(--transition);
}
.accordion-item.open .accordion-icon { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.accordion-content p { color: var(--muted); font-size: 0.97rem; line-height: 1.75; padding-bottom: 1.25rem; }
.accordion-item.open .accordion-content { max-height: 300px; }

/* ---- LEGAL PAGES ---- */
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--fg); }
.legal-content p { margin-bottom: 1rem; font-size: 0.97rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--muted); font-size: 0.97rem; margin-bottom: 0.4rem; }
.legal-content strong { color: var(--fg); }

/* ---- CONTACT FORM ---- */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media(max-width:500px){ .form-row{grid-template-columns:1fr;} }
label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 0 1rem; height: 3rem;
  color: var(--fg); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, textarea::placeholder { color: var(--muted); }
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
textarea { height: 130px; padding: 1rem; resize: vertical; }

/* Contact info items */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.contact-info-icon.primary { background: rgba(0,212,255,0.12); }
.contact-info-icon.muted { background: rgba(255,255,255,0.05); }
.contact-info-label { font-weight: 700; margin-bottom: 0.25rem; }
.contact-info-value a { color: var(--primary); font-size: 1.5rem; font-weight: 800; text-decoration: none; }
.contact-info-value { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.contact-info-note { color: var(--muted); font-size: 0.82rem; margin-top: 0.25rem; }

/* ---- PAGE HEADER ---- */
.page-header { padding: 6rem 0 3.5rem; position: relative; overflow: hidden; }
.page-header .glow { position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 65%); pointer-events: none; }

/* ---- COVERAGE CARDS ---- */
.coverage-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: border-color var(--transition); }
.coverage-card:hover { border-color: rgba(0,212,255,0.3); }
.coverage-city { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.92rem; margin-bottom: 0.5rem; }
.coverage-city::before { content: '✓'; color: rgba(0,212,255,0.5); font-weight: 700; }
.coverage-more { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ---- INCLUDE GRID ---- */
.include-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; }
.include-card .icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.include-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.include-card p { font-size: 0.85rem; }

/* ---- SEARCH BAR ---- */
.search-bar { background: var(--bg-card); border: 1px solid var(--border-med); border-radius: var(--radius-full); padding: 0.4rem; display: flex; align-items: center; max-width: 580px; margin: 0 auto; }
.search-bar input { flex: 1; background: none; border: none; padding: 0 1rem; height: 2.75rem; color: var(--fg); font-size: 0.97rem; outline: none; }
.search-bar button { background: var(--primary); color: var(--primary-fg); font-weight: 700; padding: 0 1.5rem; height: 2.75rem; border-radius: var(--radius-full); font-size: 0.9rem; }

/* ---- UTILITY ---- */
.mt-1{margin-top:0.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-6{margin-top:3rem}
.mb-1{margin-bottom:0.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-6{margin-bottom:3rem}
.text-primary{color:var(--primary)}
.text-muted{color:var(--muted)}
.text-white{color:var(--fg)}
.font-bold{font-weight:700}
.font-800{font-weight:800}
