/* ===== Fonts ===== */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: local('Baloo 2'), url('../fonts/baloo2.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: local('Manrope'), url('../fonts/manrope.woff2') format('woff2');
}

/* ===== Tokens ===== */
:root {
  --bg: #FCFEFB;
  --surface: #FFFFFF;
  --surface-alt: #EEF6EF;
  --text: #142A20;
  --text-muted: #4E6459;
  --border: #DCE7E0;
  --green: #3FA535;
  --green-deep: #1D7A34;
  --blue: #1596D6;
  --blue-deep: #0B5FA5;
  --gradient: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  --on-accent: #FFFFFF;
  --shadow: 0 10px 28px -14px rgba(15, 55, 35, 0.28);
  --shadow-sm: 0 4px 14px -8px rgba(15, 55, 35, 0.22);
  --radius-blob: 62% 38% 55% 45% / 45% 40% 60% 55%;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0A1512;
    --surface: #101F1A;
    --surface-alt: #142722;
    --text: #E7F3EC;
    --text-muted: #93AFA2;
    --border: #21362E;
    --green: #58C750;
    --green-deep: #8BE07F;
    --blue: #4FC3F7;
    --blue-deep: #8FDBFF;
    --on-accent: #06140F;
    --shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.65);
    --shadow-sm: 0 6px 18px -10px rgba(0, 0, 0, 0.6);
  }
}
:root[data-theme="dark"] {
  --bg: #0A1512;
  --surface: #101F1A;
  --surface-alt: #142722;
  --text: #E7F3EC;
  --text-muted: #93AFA2;
  --border: #21362E;
  --green: #58C750;
  --green-deep: #8BE07F;
  --blue: #4FC3F7;
  --blue-deep: #8FDBFF;
  --on-accent: #06140F;
  --shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 6px 18px -10px rgba(0, 0, 0, 0.6);
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
h1, h2, h3, h4 {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
  color: var(--text);
}
.eyebrow {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
:root[data-theme="dark"] .eyebrow, @media (prefers-color-scheme: dark) { }
.section-head { max-width: 640px; margin: 0 0 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-top: 0.5rem; }
.section-head p { color: var(--text-muted); margin: 0.7rem 0 0; font-size: 1.03rem; }
.lede { color: var(--text-muted); }

section { padding: 5rem 0; }
.alt { background: var(--surface-alt); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--green); }
.btn-block { width: 100%; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand img { height: 38px; width: auto; }
.main-nav { display: flex; gap: 1.7rem; margin-left: auto; }
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-muted);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--text); border-color: var(--green); }
.header-cta { display: flex; align-items: center; gap: 0.9rem; }
.phone-link {
  display: none;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text);
}
@media (min-width: 720px) { .phone-link { display: inline-flex; align-items: center; gap: 0.4rem; } }
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 62px 0 0 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.3rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { font-size: 1.1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta .btn-primary { display: none; }
}

/* ===== Hero ===== */
.hero {
  padding: 3.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}
.hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); margin: 0.7rem 0 1.1rem; }
.hero-copy .lede { font-size: 1.12rem; max-width: 46ch; margin-bottom: 1.9rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-badge .dot {
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem; flex-shrink: 0;
}
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -12% -18%;
  background: var(--gradient);
  border-radius: var(--radius-blob);
  opacity: 0.16;
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-blob);
  width: 100%;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-media { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ===== Value strip ===== */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  padding-top: 0;
}
.value-item { display: flex; gap: 0.9rem; }
.value-icon {
  flex-shrink: 0;
  width: 2.7rem; height: 2.7rem;
  border-radius: 0.85rem;
  background: var(--gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.value-item h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.value-item p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
@media (max-width: 980px) { .value-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-strip { grid-template-columns: 1fr; } }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-alt); }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-media.tv {
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient);
}
.service-media.tv svg { width: 3.4rem; height: 3.4rem; color: #fff; }
.service-body { padding: 1.3rem 1.4rem 1.5rem; }
.service-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-body p { margin: 0; color: var(--text-muted); font-size: 0.93rem; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== Plans ===== */
.plans-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 230px;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 1.6rem;
  scroll-snap-type: x proximity;
  margin: 0 -0.2rem;
}
.plans-scroller::-webkit-scrollbar { height: 8px; }
.plans-scroller::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.plan-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.plan-card.featured { border-color: var(--green); box-shadow: var(--shadow); }
.plan-tag {
  position: absolute; top: -0.7rem; left: 1.2rem;
  background: var(--gradient); color: #fff;
  font-family: 'Baloo 2', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 999px;
}
.plan-speed {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--green-deep);
}
.plan-speed span { font-size: 1rem; font-weight: 700; color: var(--text-muted); margin-left: 0.25rem; }
.plan-card h4 { font-size: 0.98rem; margin: 0.4rem 0 0.9rem; color: var(--text-muted); font-weight: 600; }
.plan-specs { list-style: none; margin: 0 0 1.3rem; padding: 0; flex-grow: 1; }
.plan-specs li {
  font-size: 0.86rem; color: var(--text-muted);
  padding: 0.4rem 0; border-top: 1px solid var(--border);
  display: flex; gap: 0.5rem;
}
.plan-specs li:first-child { border-top: none; }
.plan-specs li svg { flex-shrink: 0; width: 1rem; height: 1rem; color: var(--green); margin-top: 0.15rem; }

/* ===== Coverage ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.coverage-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.coverage-chip .loc { font-weight: 700; font-size: 0.94rem; }
.coverage-chip .mbps {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.76rem; font-weight: 700;
  color: var(--green-deep);
  background: var(--surface-alt);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.coverage-note { margin-top: 1.8rem; color: var(--text-muted); font-size: 0.94rem; }
@media (max-width: 900px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .coverage-grid { grid-template-columns: 1fr; } }

/* ===== Payments ===== */
.payments-row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  padding: 1.6rem 0 0;
}
.payments-row img { height: 42px; width: auto; opacity: 0.92; }
.payments-methods {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.1rem;
}
.payments-methods span {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 0.3rem 0.8rem;
}

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list a { text-decoration: none; font-weight: 700; }
.contact-list .ico {
  width: 2.4rem; height: 2.4rem; border-radius: 0.75rem;
  background: var(--gradient); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-list .label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-bottom: 0.15rem; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.contact-card p { color: var(--text-muted); font-size: 0.94rem; margin: 0 0 1.3rem; }
@media (max-width: 820px) { .contact-wrap { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: var(--surface-alt); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand img { height: 30px; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--green-deep); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.3rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
