:root {
  --ink: #071224;
  --muted: #627086;
  --line: #dbe4ef;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --navy: #061429;
  --blue: #0b6cff;
  --blue-dark: #0756cf;
  --cyan: #2ad5ff;
  --green: #25d996;
  --shadow-sm: 0 10px 30px rgba(7, 18, 36, .08);
  --shadow-lg: 0 30px 80px rgba(4, 17, 40, .22);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 14px; background: #fff; border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.back-to-top {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 900;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(5, 44, 110, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.94);
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: linear-gradient(145deg, #1680ff, var(--blue));
  box-shadow: 0 15px 34px rgba(5, 44, 110, .4);
  transform: translateY(-3px) scale(1);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
.back-to-top svg { width: 23px; height: 23px; fill: currentColor; }

@media (max-width: 640px) {
  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .back-to-top { transition: none; }
}

.site-header { position: fixed; inset: 18px 0 auto; z-index: 1000; transition: .3s ease; }
.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 8px 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0, 15, 40, .16);
  backdrop-filter: blur(18px);
}
.site-header.scrolled { inset-block-start: 8px; }
.site-header.scrolled .nav-shell {
  min-height: 60px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 22, 43, .97), rgba(7, 38, 65, .95));
  border-color: rgba(128,199,255,.18);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(0,0,0,.28);
}
.brand { display: grid; align-items: center; min-width: 0; overflow: hidden; }
.brand img { grid-area: 1 / 1; width: 300px; max-width: min(42vw, 300px); height: 52px; transition: opacity .25s ease; }
.brand-logo-default { object-fit: contain; object-position: left center; opacity: 1; }
.brand-logo-white { object-fit: cover; object-position: center 44%; opacity: 0; }
.site-header.scrolled .brand-logo-default { opacity: 0; }
.site-header.scrolled .brand-logo-white { opacity: 1; }
.site-header.scrolled .site-nav { color: #fff; }
.site-header.scrolled .site-nav > a:not(.nav-cta):not(.nav-login)::after { background: var(--cyan); }
.site-header.scrolled .nav-cta { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.56); box-shadow: none; }
.site-header.scrolled .nav-cta:hover { color: var(--ink); background: #fff; border-color: #fff; }
.site-header.scrolled .nav-login { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); }
.site-header.scrolled .nav-login:hover,
.site-header.scrolled .nav-login[aria-current="page"] { color: var(--navy); border-color: #fff; background: #fff; }
.site-header.scrolled .menu-toggle { background: rgba(255,255,255,.1); }
.site-header.scrolled .menu-toggle span { background: #fff; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .91rem; font-weight: 700; }
.site-nav > a:not(.nav-cta):not(.nav-login) { position: relative; }
.site-nav > a:not(.nav-cta):not(.nav-login)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .25s ease; }
.site-nav > a:not(.nav-cta):not(.nav-login):hover::after { right: 0; }
.nav-login { padding: 9px 13px; color: var(--blue); border: 1px solid #bdd2ee; border-radius: 10px; background: #f7faff; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.nav-login:hover,
.nav-login[aria-current="page"] { color: #fff; border-color: var(--blue); background: var(--blue); }
.nav-cta { padding: 12px 18px; color: #fff; background: var(--blue); border-radius: 12px; box-shadow: 0 8px 22px rgba(11,108,255,.25); }
.nav-cta:hover { background: var(--blue-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--surface-alt); padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

.hero { position: relative; min-height: 820px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero-video, .hero-overlay, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(3,12,27,.92) 0%, rgba(3,15,34,.77) 48%, rgba(3,15,34,.32) 100%); }
.hero-grid { opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr); align-items: center; gap: 80px; padding-top: 118px; padding-bottom: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: #c8ddff; font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: var(--cyan); }
.eyebrow.dark { color: var(--blue); }
.eyebrow.light { color: #b7d6ff; }
.hero h1 { margin: 0; font-size: clamp(4rem, 8vw, 7.5rem); line-height: .86; letter-spacing: -.07em; font-weight: 860; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: #d4e0ee; font-size: clamp(1rem, 1.8vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 1px solid transparent; border-radius: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 15px 35px rgba(11,108,255,.3); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 18px 42px rgba(11,108,255,.36); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-outline { color: var(--blue); border-color: #b8cff2; background: #fff; }
.button-outline:hover { border-color: var(--blue); background: #f5f9ff; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 690px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust div { min-width: 0; }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { font-size: .96rem; }
.hero-trust span { color: #aebdd0; font-size: .78rem; margin-top: 2px; }

.speed-card { position: relative; padding: 24px; border: 1px solid rgba(255,255,255,.24); border-radius: 28px; background: linear-gradient(150deg, rgba(255,255,255,.17), rgba(255,255,255,.06)); box-shadow: 0 40px 90px rgba(0,7,24,.45); backdrop-filter: blur(18px); }
.speed-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(42,213,255,.8), transparent 45%, rgba(11,108,255,.65)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.speed-card-top { display: flex; align-items: center; gap: 9px; color: #d6e7fb; font-size: .78rem; font-weight: 700; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(37,217,150,.12); }
.status-pill { margin-left: auto; padding: 5px 8px; border-radius: 99px; color: var(--green); background: rgba(37,217,150,.12); font-size: .64rem; letter-spacing: .08em; }
.gauge { position: relative; aspect-ratio: 1; max-width: 330px; margin: 24px auto 14px; display: grid; place-items: center; }
.gauge-ring { position: absolute; inset: 5%; border-radius: 50%; background: conic-gradient(from 210deg, transparent 0 14%, #22d3ee 14% 46%, #0b6cff 46% 78%, transparent 78%); filter: drop-shadow(0 0 18px rgba(42,213,255,.35)); mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 0); }
.gauge-ring::before { content: ""; position: absolute; inset: 11%; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.gauge-center { text-align: center; }
.gauge-center span, .gauge-center small { display: block; color: #a9bad0; letter-spacing: .14em; font-size: .62rem; }
.gauge-center strong { display: block; margin: 3px 0; font-size: 5.2rem; line-height: 1; letter-spacing: -.07em; }
.speed-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.speed-metrics div { padding: 13px; background: rgba(2,11,27,.32); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; }
.speed-metrics span, .speed-metrics strong { display: block; }
.speed-metrics span { color: #8295ae; font-size: .58rem; letter-spacing: .12em; }
.speed-metrics strong { font-size: .83rem; margin-top: 3px; }
.video-toggle { position: absolute; z-index: 3; right: 26px; bottom: 25px; width: 42px; height: 42px; display: grid; place-items: center; color: white; background: rgba(3,13,29,.45); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; backdrop-filter: blur(10px); }
.video-toggle svg { width: 17px; fill: currentColor; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 24px; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.4); border-radius: 20px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 7px; margin-left: -2px; border-radius: 5px; background: #fff; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 100% { transform: translateY(15px); opacity: 0; } }

.signal-strip { border-bottom: 1px solid var(--line); background: #fff; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid > div { display: flex; align-items: center; gap: 14px; min-height: 112px; padding: 20px; border-right: 1px solid var(--line); }
.signal-grid > div:first-child { border-left: 1px solid var(--line); }
.signal-icon { min-width: 35px; color: var(--blue); font-size: .73rem; font-weight: 900; letter-spacing: .08em; }
.signal-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.signal-grid strong { color: var(--ink); font-size: .92rem; }

.section { padding: 112px 0; }
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section h2, .coverage-section h2 { margin: 0; font-size: clamp(2.35rem, 5vw, 4.4rem); line-height: 1.03; letter-spacing: -.055em; }
.section-heading > p:last-child, .section-intro { color: var(--muted); font-size: 1.06rem; }

.plans-section { background: var(--surface-alt); }
.plans-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: .25s ease; }
.plan-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.plan-card.featured { color: #fff; background: linear-gradient(160deg, #0a65ec 0%, #0649b3 100%); border-color: transparent; box-shadow: 0 30px 70px rgba(11,108,255,.28); }
.popular-tag { position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%); padding: 8px 13px; color: var(--blue); background: #dff8ff; border-radius: 99px; font-size: .66rem; font-weight: 900; letter-spacing: .1em; white-space: nowrap; }
.plan-label { margin: 0; color: var(--blue); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.featured .plan-label { color: #aeeeff; }
.plan-head h3 { margin: 4px 0 16px; font-size: 1.5rem; }
.plan-speed { display: flex; align-items: flex-end; gap: 7px; margin: 0; }
.plan-speed strong { font-size: 3.8rem; line-height: .86; letter-spacing: -.07em; }
.plan-speed span { padding-bottom: 6px; color: var(--muted); font-weight: 700; }
.featured .plan-speed span { color: #c3ddff; }
.price { margin: 26px 0 24px; padding-top: 23px; border-top: 1px solid var(--line); font-size: 2.15rem; font-weight: 900; letter-spacing: -.04em; }
.featured .price { border-color: rgba(255,255,255,.2); }
.price > span { font-size: 1rem; vertical-align: top; }
.price small { margin-left: 4px; color: var(--muted); font-size: .75rem; font-weight: 600; letter-spacing: 0; }
.featured .price small { color: #c8dbf5; }
.plan-card ul { display: grid; gap: 13px; margin: 0 0 30px; padding: 0; list-style: none; color: var(--muted); font-size: .9rem; }
.featured ul { color: #e2ecfa; }
.plan-card li { position: relative; padding-left: 25px; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plan-disclaimer { margin: -10px 0 22px; color: #7c8799; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.plan-card .button { margin-top: auto; width: 100%; }
.featured .button-primary { color: var(--blue); background: #fff; box-shadow: none; }
.featured .button-primary:hover { background: #ecf6ff; }
.plans-note { max-width: 850px; margin: 28px auto 0; color: #7c8799; text-align: center; font-size: .76rem; }

.features-section { overflow: hidden; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.feature-visual { position: relative; min-height: 610px; display: grid; place-items: center; border-radius: 40px; background: radial-gradient(circle at 50% 40%, #e6f7ff, #eff5fd 48%, #e9eef7 100%); overflow: hidden; }
.feature-visual::before { content: ""; position: absolute; width: 450px; height: 450px; border-radius: 50%; background: rgba(11,108,255,.1); filter: blur(1px); }
.visual-orbit { position: absolute; border: 1px solid rgba(11,108,255,.2); border-radius: 50%; }
.orbit-one { width: 420px; height: 420px; }
.orbit-two { width: 550px; height: 550px; }
.router-card { position: relative; z-index: 2; width: 310px; height: 230px; padding: 34px; color: #fff; border-radius: 34px; background: linear-gradient(155deg, #0b6cff, #063c92); box-shadow: 0 40px 80px rgba(11,108,255,.27); transform: perspective(900px) rotateX(4deg) rotateY(-7deg); }
.router-body { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.router-body img { width: 54px; height: 54px; object-fit: contain; filter: invert(1); }
.router-body p { margin: 10px 0 0; font-size: 1.5rem; font-weight: 900; }
.router-body small { color: #b9dcff; }
.router-lights { position: absolute; top: 24px; right: 28px; display: flex; gap: 8px; }
.router-lights span { width: 8px; height: 8px; border-radius: 50%; background: #25d996; box-shadow: 0 0 8px rgba(37,217,150,.9); }
.router-lights span:nth-child(3), .router-lights span:nth-child(4) { background: #8bc7ff; box-shadow: 0 0 8px rgba(139,199,255,.8); }
.router-wave { position: absolute; left: 50%; top: -45px; border: 3px solid rgba(11,108,255,.42); border-bottom: 0; border-left-color: transparent; border-right-color: transparent; border-radius: 50% 50% 0 0; transform: translateX(-50%); }
.wave-one { width: 120px; height: 55px; }
.wave-two { width: 200px; height: 95px; top: -84px; opacity: .55; }
.floating-chip { position: absolute; z-index: 3; padding: 12px 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 14px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); font-size: .8rem; font-weight: 800; }
.floating-chip span { color: var(--blue); font-size: 1rem; }
.chip-one { top: 15%; right: 8%; }
.chip-two { bottom: 18%; left: 5%; }
.chip-three { bottom: 9%; right: 12%; }
.feature-copy .section-intro { margin: 24px 0 34px; }
.feature-list { display: grid; gap: 0; }
.feature-list article { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.feature-number { color: var(--blue); font-size: .75rem; font-weight: 900; padding-top: 5px; }
.feature-list h3 { margin: 0 0 5px; font-size: 1.1rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.process-section { background: var(--surface-alt); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-grid::before { content: ""; position: absolute; top: 28px; left: 16.5%; right: 16.5%; height: 1px; background: linear-gradient(90deg, transparent, #9fc0f4 10%, #9fc0f4 90%, transparent); }
.process-grid article { position: relative; text-align: center; padding: 0 25px; }
.process-icon { position: relative; z-index: 2; width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 25px; color: #fff; background: var(--blue); border: 8px solid var(--surface-alt); border-radius: 50%; font-size: .8rem; font-weight: 900; box-shadow: 0 0 0 1px #b7cdf0; }
.process-grid h3 { margin: 0 0 8px; }
.process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.coverage-section { position: relative; padding: 120px 0; color: #fff; overflow: hidden; background: var(--navy); }
.coverage-image, .coverage-overlay { position: absolute; inset: 0; }
.coverage-image { background: url('assets/coverage-bg.jpg') center / cover no-repeat; transform: scale(1.05); }
.coverage-overlay { background: linear-gradient(100deg, rgba(4,14,32,.97) 0%, rgba(4,18,42,.85) 50%, rgba(4,18,42,.55) 100%); }
.coverage-content { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.coverage-copy p:not(.eyebrow) { max-width: 570px; color: #c9d6e7; }
.coverage-copy .button { margin-top: 18px; }
.area-card { padding: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.09); box-shadow: 0 30px 80px rgba(0,0,0,.25); backdrop-filter: blur(18px); }
.area-card h3 { margin: 0 0 22px; font-size: 1.3rem; }
.area-columns { display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; }
.area-columns > div { padding: 20px; border-radius: 15px; background: rgba(2,12,29,.35); }
.area-columns strong { color: var(--cyan); }
.area-columns p { margin: 8px 0 0; color: #d4e0ef; font-size: .85rem; }
.area-note { display: flex; align-items: center; gap: 10px; margin: 22px 0 0; color: #c7d5e8; font-size: .8rem; }
.area-note span { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(37,217,150,.12); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; color: var(--ink); border: 0; background: none; text-align: left; font-weight: 800; }
.faq-item i { position: relative; width: 22px; height: 22px; flex: 0 0 22px; border: 1px solid #b9c8d9; border-radius: 50%; }
.faq-item i::before, .faq-item i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 1px; background: var(--blue); transform: translate(-50%,-50%); }
.faq-item i::after { transform: translate(-50%,-50%) rotate(90deg); transition: .2s; }
.faq-item.open i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: .94rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 24px; }

.availability-section { color: #fff; background: linear-gradient(150deg, #061429, #082751 72%, #0a3d72); }
.availability-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.availability-copy { padding-top: 30px; }
.availability-copy > p:not(.eyebrow) { color: #c7d5e8; }
.contact-points { display: grid; gap: 15px; margin-top: 32px; }
.contact-points > div { display: flex; gap: 13px; align-items: flex-start; }
.contact-points span { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 26px; color: #06213b; background: var(--green); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.contact-points p { margin: 0; color: #afc2d8; font-size: .85rem; }
.contact-points strong { color: #fff; }
.availability-form { padding: 34px; color: var(--ink); background: #fff; border-radius: 26px; box-shadow: 0 40px 90px rgba(0,0,0,.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { font-size: .76rem; font-weight: 800; }
input, select, textarea { width: 100%; color: var(--ink); border: 1px solid #ccd8e6; border-radius: 11px; background: #fafdff; outline: none; }
input, select { height: 50px; padding: 0 14px; }
textarea { padding: 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,108,255,.11); }
.form-submit { width: 100%; margin-top: 20px; }
.privacy-note { margin: 12px 0 0; color: #8090a5; text-align: center; font-size: .7rem; }
.prepared-message { margin-top: 22px; padding: 18px; border: 1px solid #b9d0f4; border-radius: 15px; background: #f5f9ff; }
.prepared-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 10px; }
.prepared-head button { width: 30px; height: 30px; color: #65758b; border: 0; border-radius: 50%; background: #e5edf7; font-size: 1.2rem; }
#inquiry-text { min-height: 170px; background: #fff; font-size: .84rem; }
.prepared-message .button { min-height: 42px; margin-top: 10px; padding: 9px 16px; }
.copy-status { margin-left: 10px; color: #26845f; font-size: .78rem; font-weight: 700; }


/* Barangay gallery */
.gallery-section { background: var(--surface-alt); overflow: hidden; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -20px 0 34px; }
.gallery-filter {
  min-height: 42px;
  padding: 9px 18px;
  color: #44536a;
  border: 1px solid #cbd8e8;
  border-radius: 999px;
  background: #fff;
  font-size: .82rem;
  font-weight: 800;
  transition: .2s ease;
}
.gallery-filter:hover { color: var(--blue); border-color: #9bbcf0; transform: translateY(-1px); }
.gallery-filter.active { color: #fff; border-color: var(--blue); background: var(--blue); box-shadow: 0 10px 25px rgba(11,108,255,.22); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  color: #fff;
  border: 0;
  border-radius: 19px;
  background: #071a35;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: left;
  isolation: isolate;
}
.gallery-card[hidden] { display: none; }
.gallery-card::after { content: ""; position: absolute; inset: 0; z-index: 2; border: 1px solid rgba(255,255,255,.16); border-radius: inherit; pointer-events: none; }
.gallery-card img { width: 100%; height: clamp(150px, 14vw, 190px); object-fit: cover; object-position: center; transition: transform .45s ease, filter .45s ease; }
.gallery-card-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(2,10,24,.9), rgba(2,10,24,.03) 68%); }
.gallery-card-copy { position: absolute; z-index: 3; inset: auto 18px 16px; display: grid; }
.gallery-card-copy small { color: #b8d8ff; font-size: .68rem; font-style: normal; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.gallery-card-copy strong { margin-top: 1px; font-size: 1.05rem; line-height: 1.2; }
.gallery-card-copy em { max-height: 0; margin-top: 0; color: #fff; font-size: .72rem; font-style: normal; font-weight: 700; opacity: 0; transform: translateY(7px); transition: .25s ease; }
.gallery-card:hover img, .gallery-card:focus-visible img { transform: scale(1.055); filter: saturate(1.12); }
.gallery-card:hover .gallery-card-copy em, .gallery-card:focus-visible .gallery-card-copy em { max-height: 22px; margin-top: 5px; opacity: .9; transform: none; }
.gallery-card:focus-visible { outline: 4px solid rgba(11,108,255,.28); outline-offset: 3px; }

.gallery-more { display: grid; justify-items: center; gap: 9px; margin-top: 38px; text-align: center; }
.gallery-more p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Official Facebook feed */
.facebook-section { color: #fff; background: linear-gradient(145deg, #071a35 0%, #0a315f 58%, #0757a8 100%); overflow: hidden; }
.facebook-heading, .reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 45px; }
.facebook-heading > div:first-child, .reviews-heading > div:first-child { max-width: 760px; }
.facebook-heading h2 { color: #fff; }
.facebook-heading > div:first-child > p:last-child { max-width: 690px; color: #c4d7ec; font-size: 1.02rem; }
.facebook-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; min-width: 310px; }
.facebook-page-button, .messenger-button { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.1); backdrop-filter: blur(9px); }
.facebook-page-button:hover, .messenger-button:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.18); }
.facebook-page-button span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #1877f2; font-family: Arial, sans-serif; font-size: 1.1rem; font-weight: 900; }
.messenger-button { background: #1877f2; border-color: #3b8cff; }
.facebook-reel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; max-width: 1120px; margin-inline: auto; }
.facebook-reel-card { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 22px; background: rgba(2,12,29,.48); box-shadow: 0 24px 58px rgba(0,0,0,.2); }
.facebook-reel-frame { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #020813; }
.facebook-reel-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.facebook-reel-card > a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; color: #dcecff; font-size: .78rem; font-weight: 800; }
.facebook-reel-card > a:hover { color: #fff; background: rgba(255,255,255,.07); }

/* Public client reviews */
.reviews-section { background: #fff; }
.reviews-heading h2 { color: var(--ink); }
.reviews-heading p:last-child { max-width: 660px; color: var(--muted); }
.reviews-live-status { padding: 24px; color: var(--muted); border: 1px dashed #bfd0e4; border-radius: 16px; background: #f8fbff; text-align: center; }
.reviews-live-status[hidden] { display: none; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { min-width: 0; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, #fff, #f7faff); box-shadow: var(--shadow-sm); }
.review-card-stars { color: #f3a712; font-size: 1.05rem; letter-spacing: .12em; }
.review-card blockquote { margin: 17px 0 24px; color: #263a52; font-size: .92rem; line-height: 1.7; overflow-wrap: anywhere; }
.review-card footer { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; border-radius: 50%; background: linear-gradient(145deg, #0b6cff, #0750b7); font-size: .72rem; font-weight: 900; }
.review-card footer strong, .review-card footer small { display: block; }
.review-card footer strong { color: var(--ink); font-size: .82rem; }
.review-card footer small { margin-top: 2px; color: var(--muted); font-size: .67rem; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  place-items: center;
  padding: 34px;
  background: rgba(1,7,17,.92);
  backdrop-filter: blur(14px);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox-panel { width: min(1040px, 100%); max-height: calc(100vh - 68px); overflow: hidden; background: #061429; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; box-shadow: 0 40px 100px rgba(0,0,0,.55); }
.gallery-lightbox-panel img { width: 100%; max-height: calc(100vh - 180px); aspect-ratio: 3 / 2; object-fit: contain; background: #020915; }
.gallery-lightbox-caption { display: flex; align-items: end; justify-content: space-between; gap: 25px; padding: 18px 22px 21px; color: #fff; }
.gallery-lightbox-caption p { margin: 0; color: #94c4ff; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.gallery-lightbox-caption h3 { margin: 0; font-size: 1.35rem; line-height: 1.2; }
.gallery-lightbox-close, .gallery-lightbox-nav { display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.09); backdrop-filter: blur(10px); transition: .2s ease; }
.gallery-lightbox-close:hover, .gallery-lightbox-nav:hover { background: rgba(255,255,255,.18); }
.gallery-lightbox-close { position: absolute; top: 20px; right: 22px; width: 46px; height: 46px; border-radius: 50%; font-size: 1.8rem; line-height: 1; }
.gallery-lightbox-nav { width: 52px; height: 72px; border-radius: 15px; font-size: 2.5rem; line-height: 1; }
body.modal-open { overflow: hidden; }

.site-footer { padding: 72px 0 25px; color: #b8c4d5; background: #030b18; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .8fr 1fr 1.05fr; gap: 48px; padding-bottom: 50px; }
.footer-logo-wrap { display: inline-flex; padding: 8px 12px; background: #fff; border-radius: 12px; }
.footer-logo-wrap img { width: 250px; height: 50px; object-fit: contain; }
.footer-brand p { max-width: 360px; }
.site-footer h3 { margin: 4px 0 16px; color: #fff; font-size: .9rem; }
.site-footer a, .site-footer p { display: block; margin: 0 0 9px; font-size: .83rem; }
.site-footer a:hover { color: var(--cyan); }
.footer-small { color: #6f7e92; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #718095; font-size: .73rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .hero { min-height: 900px; }
  .hero-content { grid-template-columns: 1fr .72fr; gap: 35px; }
  .brand img { width: 240px; }
  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-layout, .coverage-content, .availability-shell { gap: 45px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .site-header { inset-block-start: 10px; }
  .nav-shell { min-height: 64px; padding-left: 14px; }
  .brand img { width: 225px; height: 45px; max-width: 63vw; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 10px); left: 20px; right: 20px; display: grid; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
  .site-header.scrolled .site-nav { background: linear-gradient(145deg, #06162b, #072641); border-color: rgba(128,199,255,.18); }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 13px; }
  .site-nav > a:not(.nav-cta):not(.nav-login)::after { display: none; }
  .nav-login { margin-top: 5px; text-align: center; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 1020px; align-items: start; }
  .hero-content { grid-template-columns: 1fr; padding-top: 150px; gap: 52px; }
  .hero-copy { text-align: center; }
  .hero-lead, .hero-trust { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .speed-card { width: min(100%, 440px); margin-inline: auto; }
  .scroll-cue { display: none; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .signal-grid > div { border-bottom: 1px solid var(--line); }
  .plans-grid, .process-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facebook-heading, .reviews-heading { align-items: flex-start; flex-direction: column; gap: 24px; }
  .facebook-actions { justify-content: flex-start; min-width: 0; }
  .facebook-reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-lightbox { grid-template-columns: 54px minmax(0, 1fr) 54px; padding: 24px 12px; }
  .gallery-lightbox-nav { width: 44px; height: 60px; }
  .process-grid::before { display: none; }
  .split-layout, .coverage-content, .faq-layout, .availability-shell { grid-template-columns: 1fr; }
  .feature-visual { min-height: 530px; }
  .coverage-content { gap: 55px; }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section { padding: 82px 0; }
  .site-header .container { width: calc(100% - 18px); }
  .brand img { width: 205px; }
  .hero { min-height: 955px; }
  .hero-content { padding-top: 128px; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero-actions .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .hero-trust div { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .speed-card { padding: 18px; }
  .gauge { max-width: 270px; }
  .gauge-center strong { font-size: 4.2rem; }
  .video-toggle { right: 14px; bottom: 14px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid > div { min-height: 90px; border-left: 1px solid var(--line); }
  .plan-card { padding: 26px; }
  .feature-visual { min-height: 440px; }
  .router-card { width: 245px; height: 190px; padding: 27px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 430px; height: 430px; }
  .floating-chip { padding: 9px 11px; font-size: .7rem; }
  .chip-one { top: 10%; right: 3%; }
  .chip-two { left: 2%; bottom: 16%; }
  .chip-three { right: 4%; bottom: 6%; }
  .gallery-grid { gap: 12px; }
  .facebook-actions, .facebook-actions .button, .reviews-heading .button { width: 100%; }
  .facebook-reel-grid, .reviews-grid { grid-template-columns: 1fr; }
  .facebook-reel-grid { max-width: 360px; }
  .gallery-card { border-radius: 15px; }
  .gallery-card img { height: 145px; }
  .gallery-card-copy { inset: auto 13px 12px; }
  .gallery-card-copy strong { font-size: .91rem; }
  .gallery-card-copy small { font-size: .58rem; }
  .gallery-card-copy em { display: none; }
  .gallery-lightbox { grid-template-columns: 1fr; padding: 60px 12px 16px; }
  .gallery-lightbox-panel { max-height: calc(100vh - 80px); border-radius: 17px; }
  .gallery-lightbox-panel img { max-height: calc(100vh - 190px); }
  .gallery-lightbox-nav { position: absolute; bottom: 26px; width: 48px; height: 48px; border-radius: 50%; z-index: 2; }
  .gallery-lightbox-prev { left: 20px; }
  .gallery-lightbox-next { right: 20px; }
  .gallery-lightbox-caption { min-height: 86px; padding: 15px 76px 16px; text-align: center; justify-content: center; }
  .gallery-lightbox-caption p { font-size: .62rem; }
  .gallery-lightbox-caption h3 { font-size: 1.08rem; }
  .gallery-lightbox-close { top: 10px; right: 12px; }
  .area-card, .availability-form { padding: 23px; }
  .area-columns, .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card img { height: 175px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
  .reveal { opacity: 1; transform: none; }
}
