/* =============================================================================
   V-Broadband — premium multi-page design system
   Fonts: Outfit (display) + Source Sans 3 (body) — loaded in HTML
   ============================================================================= */

:root {
  --ocean-950: #020617;
  --ocean-900: #0c1a3a;
  --ocean-800: #0f3568;
  --ocean-700: #0b4f7c;
  --ocean-600: #0a6d9c;
  --ocean-500: #0891b2;
  --ocean-400: #22d3ee;
  --ocean-100: #e0f2fe;
  --cta: #f97316;
  --cta-hover: #ea580c;
  --cta-soft: rgba(249, 115, 22, 0.1);
  --gold-line: rgba(251, 191, 36, 0.35);
  --ink: #0f172a;
  --muted: #64748b;
  --paper: #f1f5f9;
  --surface: #ffffff;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 12px 40px rgba(15, 23, 42, 0.06);
  --header-h: 76px;
  --mobile-cta-h: 64px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --container: min(1140px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  padding-bottom: calc(var(--mobile-cta-h) + 0.5rem);
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

h1,
h2,
h3,
.brand-name,
.plan-speed,
.phone-big {
  font-family: var(--font-display);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ocean-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--ocean-400);
  outline-offset: 2px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--cta-soft);
  color: var(--cta-hover);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

/* -----------------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  height: 46px;
  width: auto;
  max-width: min(150px, 38vw);
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mark {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  letter-spacing: -0.03em;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.nav-desktop a,
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-desktop a:hover,
.nav-link:hover {
  text-decoration: none;
  background: var(--ocean-100);
  color: var(--ocean-800);
}

.nav-desktop a.is-active,
.nav-link.is-active {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(249, 115, 22, 0.08));
  color: var(--ocean-800);
  box-shadow: inset 0 0 0 1px rgba(8, 145, 178, 0.2);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.45rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--surface);
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  margin-bottom: 1rem;
  width: 100%;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--paper);
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

.mobile-nav-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  color: #fff;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.42);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ocean-800);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ocean {
  background: linear-gradient(135deg, var(--ocean-800), var(--ocean-600));
  color: #fff;
  box-shadow: 0 8px 28px rgba(11, 79, 124, 0.28);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 14px;
}

/* -----------------------------------------------------------------------------
   Hero (home)
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ocean-950);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(249, 115, 22, 0.12), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(15, 53, 104, 0.9), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0.65rem;
  backdrop-filter: blur(12px);
}

.hero-card img {
  border-radius: calc(var(--radius-sm) + 2px);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.hero-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trust */
.trust-bar {
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}

.trust-inner {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.6rem 1.5rem;
  }
}

.trust-item {
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ocean-800);
  font-family: var(--font-display);
}

.trust-item span {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
  color: var(--ocean-600);
}

/* -----------------------------------------------------------------------------
   Sections & typography
   ----------------------------------------------------------------------------- */
section {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ocean-900);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean-600);
  margin: 0 0 0.5rem;
}

/* Service bento (home) */
.bento-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(8, 145, 178, 0.25);
}

.bento-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ocean-900);
}

.bento-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  flex: 1;
  font-size: 0.98rem;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean-100), #fff);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.bento-card .btn {
  align-self: flex-start;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 720px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ocean-800);
  letter-spacing: -0.02em;
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ocean-900), var(--ocean-700));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
  max-width: 46ch;
  margin-inline: auto;
}

.cta-band .btn-primary {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Forms */
label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ocean-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.availability-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  max-width: 560px;
  margin-inline: auto;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}

.urgency {
  background: linear-gradient(90deg, var(--cta-soft), transparent);
  border-left: 4px solid var(--cta);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin: 1rem auto;
  max-width: 560px;
  font-weight: 600;
  color: var(--ink);
}

/* Plan cards */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid.cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .cards-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-card);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.plan-card.popular {
  border-color: rgba(8, 145, 178, 0.45);
  box-shadow: 0 0 0 1px rgba(8, 145, 178, 0.15), var(--shadow-sm);
}

.popular-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--cta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-speed {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ocean-800);
  letter-spacing: -0.03em;
}

.plan-speed small {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.plan-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.5rem 0;
}

.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--muted);
}

.plan-card li {
  padding: 0.35rem 0;
  padding-left: 1.35rem;
  position: relative;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ocean-600);
  font-weight: 800;
}

.combo-tier {
  margin-bottom: 2.25rem;
}

.combo-tier h3 {
  margin: 0 0 1rem;
  color: var(--ocean-800);
  font-size: 1.2rem;
  font-weight: 800;
}

.ott-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1rem;
}

.ott-pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
}

.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.why-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonials {
  background: linear-gradient(180deg, var(--ocean-950), var(--ocean-900));
  color: #fff;
}

.testimonials .section-head h2 {
  color: #fff;
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.35rem;
}

.testimonial q {
  font-style: italic;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.testimonial cite {
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.85;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 820px;
  margin-inline: auto;
}

.area-chip {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.media-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
}

@media (min-width: 800px) {
  .media-row {
    grid-template-columns: 1fr 1fr;
  }

  .media-row.reverse .media-row-text {
    order: -1;
  }
}

.media-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.15rem, 3vw, 1.85rem);
  max-width: 100%;
}

.media-row img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.section--surface-white .media-block {
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-list strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.phone-big {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ocean-800);
}

.map-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--ocean-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 calc(3rem + var(--mobile-cta-h));
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.site-footer a {
  color: #fff;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.85;
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
}

@media (min-width: 900px) {
  .mobile-sticky-cta {
    display: none;
  }
}

.mobile-sticky-cta .btn {
  flex: 1;
  padding: 0.9rem 0.5rem;
}

.fab-wa {
  position: fixed;
  bottom: calc(var(--mobile-cta-h) + 1rem + env(safe-area-inset-bottom));
  right: 1rem;
  z-index: 1600;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.fab-wa:hover {
  transform: scale(1.06);
  text-decoration: none;
}

@media (min-width: 900px) {
  .fab-wa {
    bottom: 1.5rem;
  }
}

.fab-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* -----------------------------------------------------------------------------
   Home page — premium sections (after hero / trust)
   ----------------------------------------------------------------------------- */
.home-showcase {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.home-showcase .media-block {
  max-width: 1000px;
  margin-inline: auto;
}

.home-showcase-kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-600);
  margin: 0 0 0.5rem;
  text-align: center;
}

.home-process {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.home-steps {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .home-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.home-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem 0;
}

@media (min-width: 768px) {
  .home-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.25rem;
    left: calc(50% + 2.5rem);
    width: calc(100% - 5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--ocean-400), transparent);
    opacity: 0.45;
    pointer-events: none;
  }
}

.home-step-num {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(145deg, var(--ocean-600), var(--ocean-800));
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.home-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ocean-900);
}

.home-step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.home-features {
  background: linear-gradient(180deg, var(--paper), #fff 40%, #fff);
}

.home-feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .home-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .home-feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.home-feature-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-feature-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 145, 178, 0.3);
  box-shadow: var(--shadow-card);
}

.home-feature-tile .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(8, 145, 178, 0.08));
  border: 1px solid rgba(8, 145, 178, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
  line-height: 1;
}

.home-feature-tile h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ocean-900);
}

.home-feature-tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.home-voices {
  background: linear-gradient(165deg, var(--ocean-950) 0%, #0a1628 45%, var(--ocean-900) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.home-voices::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 10% 80%, rgba(34, 211, 238, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(249, 115, 22, 0.08), transparent 45%);
  pointer-events: none;
}

.home-voices .container {
  position: relative;
}

.home-voices .section-head h2 {
  color: #fff;
}

.home-voices .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.home-voice-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-voice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.home-voice-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.35rem;
  backdrop-filter: blur(8px);
}

.home-voice-card blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.home-voice-card blockquote p {
  font-style: italic;
  margin: 0;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.home-voice-card figcaption {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ocean-400);
  letter-spacing: 0.02em;
}

.home-voices-cta {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.home-voices-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}

.home-spotlight {
  background: #fff;
}

.home-spotlight-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .home-spotlight-grid {
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 3rem;
  }
}

.home-spotlight-copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ocean-900);
}

.home-spotlight-copy > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 48ch;
}

.home-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-areas-preview {
  background: var(--paper);
  border-block: 1px solid var(--border);
}

.home-areas-preview .area-chips {
  margin-top: 0.5rem;
}

/* SEO inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--ocean-950), var(--ocean-700));
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2.25rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.12), transparent 45%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  max-width: 60ch;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 2rem;
  color: var(--ocean-800);
  font-size: 1.35rem;
  font-weight: 800;
}

.prose p,
.prose ul {
  color: var(--muted);
}

.cta-inline {
  margin: 2rem 0;
  padding: 1.35rem;
  background: var(--cta-soft);
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.error-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fade-up 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

/* =============================================================================
   Refinement layer — duration tabs, badges, FAQ, area search, mobile polish
   Added during CRO + local SEO pass (no design system overrides).
   ============================================================================= */

/* ---------- Duration tabs (broadband plans) ---------- */
.duration-tabs {
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.duration-tabs-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 2rem;
}

.duration-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: -0.01em;
}

.duration-tab:hover {
  color: var(--ocean-800);
}

.duration-tab.is-active {
  background: linear-gradient(145deg, var(--ocean-700), var(--ocean-900));
  color: #fff;
  box-shadow: 0 6px 18px rgba(8, 81, 124, 0.25);
}

.duration-tab .save-pill {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--cta-hover);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.duration-tab.is-active .save-pill {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ---------- Plan card pricing line + benefits ---------- */
.plan-price-period {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-top: 0.15rem;
}

.plan-benefits {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.plan-benefits li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}

.plan-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(8, 145, 178, 0.15));
  border: 1px solid rgba(8, 145, 178, 0.35);
}

.plan-benefits li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.22rem;
  border-left: 2px solid var(--ocean-700);
  border-bottom: 2px solid var(--ocean-700);
  transform: rotate(-45deg);
}

.plan-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.plan-card-actions .btn {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
}

.plan-card-actions .btn-link {
  background: transparent;
  border: 0;
  color: var(--ocean-700);
  text-align: center;
  font-weight: 700;
  padding: 0.35rem;
}

.plan-card-actions .btn-link:hover {
  color: var(--ocean-900);
  text-decoration: underline;
}

/* ---------- Trending ribbon variant ---------- */
.popular-ribbon.trending {
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
}

/* ---------- Combo tier accents (silver / golden / platinum) ---------- */
.combo-tier {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.combo-tier-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.combo-tier-head h2,
.combo-tier-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ocean-900);
  font-size: 1.45rem;
}

.combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--ocean-800);
  background: var(--surface);
}

.combo-badge.silver {
  background: linear-gradient(145deg, #e2e8f0, #f8fafc);
  border-color: #cbd5e1;
  color: #1e293b;
}

.combo-badge.gold {
  background: linear-gradient(145deg, #fef3c7, #fde68a);
  border-color: #f5c542;
  color: #7c4a03;
}

.combo-badge.platinum {
  background: linear-gradient(145deg, #0c1a3a, #1e293b);
  border-color: #334155;
  color: #ffffff;
}

.combo-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.combo-card .combo-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  background: var(--cta-soft);
  color: var(--cta-hover);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.combo-card .combo-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ocean-900);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.combo-card .combo-includes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.combo-card .combo-includes li::before {
  content: "✓ ";
  color: var(--ocean-600);
  font-weight: 800;
  margin-right: 0.25rem;
}

.combo-card.is-platinum {
  background: linear-gradient(165deg, #0c1a3a 0%, #11254d 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.combo-card.is-platinum .combo-name,
.combo-card.is-platinum .plan-speed,
.combo-card.is-platinum .plan-price-amount {
  color: #fff;
}

.combo-card.is-platinum .combo-includes,
.combo-card.is-platinum .plan-price-period {
  color: rgba(255, 255, 255, 0.78);
}

.combo-card.is-platinum .combo-includes li::before {
  color: var(--ocean-400);
}

/* ---------- Cable TV pack list ---------- */
.tv-pack-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .tv-pack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .tv-pack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tv-pack {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tv-pack.is-trending {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.12);
}

.tv-pack-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-600);
  margin: 0 0 0.4rem;
}

.tv-pack h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ocean-900);
  font-family: var(--font-display);
}

.tv-pack-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--ocean-800);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.tv-pack-price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 0.25rem;
}

.tv-pack ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.tv-pack ul li::before {
  content: "✓ ";
  color: var(--ocean-600);
  font-weight: 800;
  margin-right: 0.3rem;
}

.tv-pack ul li.excl {
  color: var(--muted);
}

.tv-pack ul li.excl::before {
  content: "✕ ";
  color: #cbd5e1;
}

.tv-pack-cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tv-pack-cta .btn {
  flex: 1 1 auto;
  font-size: 0.88rem;
  padding: 0.7rem 0.9rem;
}

/* ---------- Area search + chips refinement ---------- */
.area-search {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.area-search-input {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.area-search-input:focus {
  border-color: var(--ocean-500);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18), var(--shadow-sm);
  outline: none;
}

.area-search::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--muted);
  border-radius: 50%;
  pointer-events: none;
}

.area-search::after {
  content: "";
  position: absolute;
  left: 1.85rem;
  top: 1.5rem;
  width: 0.55rem;
  height: 2px;
  background: var(--muted);
  transform: rotate(45deg);
  border-radius: 1px;
  pointer-events: none;
}

.area-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 820px;
  margin: 0 auto 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.area-count {
  font-weight: 700;
  color: var(--ocean-700);
}

.area-chip {
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: default;
}

.area-chip:hover {
  background: var(--ocean-100);
  border-color: rgba(8, 145, 178, 0.4);
  color: var(--ocean-900);
  transform: translateY(-1px);
}

.area-chip.is-hidden {
  display: none;
}

.area-empty {
  text-align: center;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.area-empty.hidden {
  display: none;
}

/* ---------- FAQ accordion (uses native <details>) ---------- */
.faq-section {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(8, 145, 178, 0.3);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ocean-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ocean-600);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ---------- CTA strip (3-button row) ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-row .btn {
  flex: 0 1 auto;
}

@media (max-width: 540px) {
  .cta-row .btn {
    flex: 1 1 100%;
  }
}

/* ---------- Local SEO copy block ---------- */
.local-seo-block {
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.local-seo-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--ocean-900);
  font-weight: 800;
}

.local-seo-block p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.local-seo-block p:last-child {
  margin-bottom: 0;
}

.local-seo-block a {
  font-weight: 700;
}

/* ---------- Mobile polish ---------- */
@media (max-width: 540px) {
  .page-hero {
    padding: 2.25rem 0 1.75rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  section {
    padding: 2.25rem 0;
  }

  .plan-card,
  .combo-card,
  .tv-pack {
    padding: 1.35rem 1.15rem;
  }

  .plan-speed {
    font-size: 1.65rem;
  }

  .plan-price {
    font-size: 1.5rem;
  }

  .duration-tab {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }

  .cards-grid {
    gap: 1rem;
  }

  .combo-tier-head h2,
  .combo-tier-head h3 {
    font-size: 1.2rem;
  }

  .container {
    width: min(1140px, 94vw);
  }
}

/* Prevent horizontal overflow on any small device */
html,
body {
  overflow-x: hidden;
}

/* =============================================================================
   Breadcrumbs (SEO + visible)
   ============================================================================= */
.breadcrumbs {
  background: #f5f7fb;
  border-bottom: 1px solid #e5e9f2;
  padding: 0.65rem 0;
  font-size: 0.875rem;
  line-height: 1.4;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: #5a6478;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumbs li + li::before {
  content: "›";
  color: #8a93a8;
  font-weight: 700;
}
.breadcrumbs a {
  color: #2a4585;
  text-decoration: none;
  font-weight: 600;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs li[aria-current="page"] {
  color: #0c1a3a;
  font-weight: 700;
}
@media (max-width: 480px) {
  .breadcrumbs {
    font-size: 0.8rem;
    padding: 0.55rem 0;
  }
}

