:root {
  --bg: #060b12;
  --bg-2: #0a1320;
  --panel: rgba(9, 18, 31, 0.82);
  --panel-2: rgba(12, 23, 39, 0.94);
  --panel-3: rgba(16, 31, 49, 0.96);
  --ink: #edf7ff;
  --ink-soft: #9eb3c4;
  --line: rgba(91, 228, 255, 0.12);
  --line-strong: rgba(91, 228, 255, 0.24);
  --blue: #39d2ff;
  --cyan: #8df3ff;
  --lime: #a7ff77;
  --gold: #ffd36f;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --radius: 28px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(57, 210, 255, 0.14), transparent 26%),
    radial-gradient(circle at left center, rgba(167, 255, 119, 0.1), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, #07111d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent);
}

a {
  color: inherit;
}

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

.page-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  opacity: 0.65;
}

.page-orb-one {
  width: 360px;
  height: 360px;
  top: -90px;
  right: -90px;
  background: radial-gradient(circle, rgba(57, 210, 255, 0.26), transparent 70%);
}

.page-orb-two {
  width: 320px;
  height: 320px;
  left: -110px;
  top: 38%;
  background: radial-gradient(circle, rgba(167, 255, 119, 0.18), transparent 72%);
}

.site-shell {
  position: relative;
  z-index: 1;
}

.topbar,
.hero,
.section,
.intro-band,
.footer,
.page-hero {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  width: 122px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(57, 210, 255, 0.12));
}

.brand-logo-header {
  width: 196px;
  max-width: 34vw;
}

.footer-logo {
  width: 136px;
}

.brand-text,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-text strong,
.hero h1,
.page-hero h1,
.section-heading h2,
.category-header h3,
.service-card h3,
.promise-card h3,
.plan-name,
.plan-price,
.route-card h3,
.tv-page-card h3,
.footer-panel h3,
.company-card h3 {
  font-family: "Sora", sans-serif;
}

.brand-text small,
.main-nav a,
.lead,
.hero-company-note,
.hero-strip span,
.card-label,
.section-heading .heading-note,
.promise-card p,
.company-card p,
.plan-card ul,
.coverage-board p,
.ai-copy p,
.chat-note,
.footer-links a,
.footer-brand p,
.form-feedback,
.service-card p,
.page-hero p:last-child,
.footer-copy,
.footer-list span,
.feature-list {
  color: var(--ink-soft);
}

.main-nav {
  display: flex;
  gap: 24px;
}

.menu-shell {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-nav a,
.footer-links a {
  text-decoration: none;
}

.main-nav a.is-active {
  color: var(--ink);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  color: #041018;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(57, 210, 255, 0.18);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
  padding: 42px 0 30px;
}

.page-hero {
  padding: 44px 0 8px;
}

.page-hero h1,
.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.95;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.eyebrow,
.category-kicker,
.service-tag,
.company-tag {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--blue);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(3.3rem, 6vw, 6.3rem);
  max-width: 9ch;
}

.lead {
  margin: 24px 0 0;
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-company-note {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-actions,
.hero-strip,
.hero-stats,
.footer-links,
.ai-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-strip {
  margin-top: 26px;
}

.hero-strip span,
.ai-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero-panel,
.window-shell,
.hero-card,
.promise-card,
.plan-card,
.coverage-board,
.coverage-form,
.service-card,
.chat-card,
.route-card,
.tv-page-card,
.company-card,
.footer-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card,
.window-shell,
.promise-card,
.plan-card,
.coverage-board,
.coverage-form,
.service-card,
.chat-card,
.route-card,
.tv-page-card,
.company-card,
.footer-panel {
  background: linear-gradient(180deg, rgba(11, 21, 35, 0.92), rgba(7, 16, 27, 0.88));
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.hero-card,
.route-card,
.tv-page-card,
.promise-card,
.company-card,
.plan-card,
.service-card,
.coverage-form,
.chat-card,
.footer-panel {
  padding: 28px;
}

.window-shell {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 18, 31, 0.94), rgba(8, 16, 27, 0.88));
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(57, 210, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.window-top p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.window-dots {
  display: inline-flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.window-dots span:nth-child(1) { background: #5ee4ff; }
.window-dots span:nth-child(2) { background: #a7ff77; }
.window-dots span:nth-child(3) { background: #90a5b6; }

.window-body {
  padding: 28px;
}

.hero-card-main {
  min-height: 430px;
  background:
    radial-gradient(circle at top right, rgba(57, 210, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(11, 24, 38, 0.96), rgba(8, 18, 30, 0.94));
}

.card-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.signal-lines {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.signal-lines span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d6e89, var(--blue), var(--lime));
}

.signal-lines span:nth-child(1) { width: 42%; }
.signal-lines span:nth-child(2) { width: 68%; }
.signal-lines span:nth-child(3) { width: 88%; }
.signal-lines span:nth-child(4) { width: 56%; }

.hero-stats {
  margin-top: 34px;
}

.hero-stats article {
  flex: 1 1 140px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
}

.hero-card-side {
  display: grid;
  gap: 12px;
}

.hero-card-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 700;
}

.hero-card-side a::after,
.mini-link::after {
  content: ">";
  font-family: "Sora", sans-serif;
}

.tv-badge {
  margin-top: 8px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(57, 210, 255, 0.08), rgba(167, 255, 119, 0.1));
  border: 1px solid rgba(57, 210, 255, 0.12);
}

.tv-badge img {
  width: 300px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 20px;
  border: 1px solid rgba(91, 228, 255, 0.14);
  background: linear-gradient(135deg, rgba(57, 210, 255, 0.08), rgba(167, 255, 119, 0.08));
}

.icon-badge svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge-small {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 16px;
}

.icon-badge-small svg {
  width: 24px;
  height: 24px;
}

.intro-band {
  overflow: hidden;
  border-top: 1px solid rgba(57, 210, 255, 0.12);
  border-bottom: 1px solid rgba(57, 210, 255, 0.12);
}

.intro-band-track {
  display: flex;
  gap: 28px;
  padding: 16px 0;
  white-space: nowrap;
  animation: band-scroll 18s linear infinite;
  color: var(--blue);
  font-weight: 800;
}

@keyframes band-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.section {
  padding: 96px 0 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  max-width: none;
}

.heading-note {
  max-width: 330px;
}

.promise-grid,
.company-grid,
.plan-grid,
.coverage-layout,
.service-grid,
.ai-layout,
.route-grid,
.tv-page-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.promise-grid { grid-template-columns: repeat(3, 1fr); }
.company-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.route-grid { grid-template-columns: repeat(3, 1fr); }
.tv-page-grid { grid-template-columns: 0.9fr 1.1fr; }

.tv-channel-showcase {
  display: grid;
  gap: 28px;
  margin-top: 42px;
}

.channel-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.channel-panel,
.tv-message-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(57, 210, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(11, 21, 35, 0.94), rgba(7, 16, 27, 0.88));
  box-shadow: var(--shadow);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.channel-chip {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(91, 228, 255, 0.14);
  background: linear-gradient(135deg, rgba(57, 210, 255, 0.08), rgba(167, 255, 119, 0.08));
  color: var(--ink);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.channel-chip small,
.channel-chip strong {
  display: block;
}

.channel-chip small {
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(237, 247, 255, 0.68);
}

.channel-chip strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.channel-chip.ecuavisa {
  background: linear-gradient(135deg, rgba(21, 73, 176, 0.92), rgba(38, 147, 255, 0.78));
}

.channel-chip.teleamazonas {
  background: linear-gradient(135deg, rgba(38, 118, 201, 0.92), rgba(54, 197, 255, 0.74));
}

.channel-chip.tc {
  background: linear-gradient(135deg, rgba(255, 171, 47, 0.9), rgba(255, 96, 43, 0.78));
}

.channel-chip.rts {
  background: linear-gradient(135deg, rgba(198, 44, 83, 0.9), rgba(255, 128, 113, 0.74));
}

.channel-chip.cnn {
  background: linear-gradient(135deg, rgba(155, 19, 26, 0.96), rgba(230, 51, 61, 0.8));
}

.channel-chip.dw {
  background: linear-gradient(135deg, rgba(21, 44, 84, 0.94), rgba(74, 133, 255, 0.78));
}

.channel-chip.france24 {
  background: linear-gradient(135deg, rgba(0, 93, 164, 0.92), rgba(45, 193, 255, 0.78));
}

.channel-chip.tve {
  background: linear-gradient(135deg, rgba(255, 177, 0, 0.88), rgba(255, 120, 39, 0.72));
}

.tv-message-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.tv-message-card p:last-child {
  margin-bottom: 0;
}

.tv-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(91, 228, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(167, 255, 119, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(10, 21, 35, 0.96), rgba(9, 33, 31, 0.94));
  box-shadow: var(--shadow);
}

.tv-cta-band h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  line-height: 1.04;
}

.tv-cta-band p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.tv-logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  padding: 18px;
}

.tv-logo-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(57, 210, 255, 0.18), transparent 68%);
  filter: blur(22px);
}

.tv-logo-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 18px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 255, 0.94));
  border: 1px solid rgba(57, 210, 255, 0.16);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.route-card,
.tv-page-card {
  text-decoration: none;
}

.route-card:hover {
  border-color: var(--line-strong);
}

.company-story,
.plan-card.featured {
  background:
    radial-gradient(circle at top right, rgba(57, 210, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(14, 26, 41, 0.96), rgba(9, 18, 31, 0.9));
}

.company-card h3 {
  font-size: 1.5rem;
  line-height: 1.08;
}

.plan-zone {
  display: grid;
  gap: 48px;
  margin-top: 34px;
}

.category-header {
  max-width: 620px;
}

.category-header h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.04;
}

.plan-grid.four-up { grid-template-columns: repeat(4, 1fr); }
.plan-grid.three-up,
.service-grid { grid-template-columns: repeat(4, 1fr); }

.plan-name,
.plan-speed,
.plan-price,
.coverage-city,
.form-title {
  margin: 0;
}

.plan-name {
  font-size: 1.2rem;
}

.plan-speed {
  margin-top: 18px;
  font-size: 2rem;
  font-weight: 800;
}

.plan-price {
  margin-top: 8px;
  font-size: 1.6rem;
  color: var(--gold);
}

.plan-note {
  margin: 10px 0 0;
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 500;
}

.plan-card ul,
.feature-list {
  margin: 20px 0 0;
  padding-left: 18px;
  line-height: 1.7;
}

.plan-button {
  width: 100%;
  margin-top: 22px;
}

.coverage-layout,
.ai-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.coverage-stack {
  display: grid;
  gap: 28px;
}

.coverage-map-shell {
  display: grid;
  gap: 22px;
}

.coverage-map-copy {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.coverage-map-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.coverage-map-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(57, 210, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(11, 21, 35, 0.94), rgba(7, 16, 27, 0.9));
  box-shadow: var(--shadow);
}

.coverage-map-toolbar,
.coverage-map-status,
.coverage-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.coverage-map-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-pill {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(91, 228, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.map-locate-button {
  min-width: 210px;
}

.coverage-map {
  height: 480px;
  margin-top: 20px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(91, 228, 255, 0.14);
}

.coverage-map-status {
  margin-top: 18px;
}

.coverage-map-status strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.coverage-map-status p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.coverage-layout-rich {
  grid-template-columns: 0.9fr 1.1fr;
}

.coverage-board {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.coverage-board article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.coverage-city {
  font-size: 1.25rem;
}

.coverage-form {
  display: grid;
  gap: 16px;
}

.coverage-form-rich {
  align-content: start;
}

.form-title {
  font-size: 1.4rem;
}

.coverage-form label,
.chat-form {
  display: grid;
  gap: 8px;
}

input {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
}

input::placeholder {
  color: #7890a3;
}

.leaflet-container {
  font: inherit;
  background: #08111d;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: rgba(8, 17, 29, 0.96);
  color: var(--ink);
}

.leaflet-control-zoom a {
  background: rgba(8, 17, 29, 0.94);
  color: var(--ink);
  border-bottom-color: rgba(91, 228, 255, 0.14);
}

.service-card {
  min-height: 250px;
}

.accent-a {
  background: linear-gradient(180deg, rgba(167, 255, 119, 0.08), rgba(9, 18, 31, 0.9));
}

.accent-b {
  background: linear-gradient(180deg, rgba(57, 210, 255, 0.09), rgba(9, 18, 31, 0.9));
}

.accent-c {
  background: linear-gradient(180deg, rgba(141, 243, 255, 0.08), rgba(9, 18, 31, 0.9));
}

.accent-d {
  background: linear-gradient(180deg, rgba(255, 211, 111, 0.08), rgba(9, 18, 31, 0.9));
}

.service-logo {
  width: 320px;
  height: 96px;
  object-fit: contain;
  margin-top: 24px;
}

.tv-page-logo {
  width: min(100%, 460px);
  height: 220px;
  object-fit: contain;
  margin: 0 auto;
}

.chat-log {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 210, 255, 0.4) rgba(255, 255, 255, 0.04);
}

.message {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-width: 0;
}

.message.user {
  background: rgba(57, 210, 255, 0.09);
}

.message p {
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer {
  padding: 96px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-copy {
  margin: 0;
  line-height: 1.7;
}

.footer-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  display: grid;
  gap: 4px;
}

.social-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(91, 228, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: var(--ink);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 16px;
}

.floating-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(57, 210, 255, 0.16), rgba(167, 255, 119, 0.12)),
    rgba(7, 17, 29, 0.92);
  color: var(--ink);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.floating-chat-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  color: #041018;
  box-shadow: 0 16px 30px rgba(57, 210, 255, 0.24);
}

.floating-chat-toggle-icon svg,
.floating-chat-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chat-toggle-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.floating-chat-toggle-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.floating-chat-toggle-copy small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.floating-chat-panel {
  width: min(390px, calc(100vw - 24px));
  height: min(640px, calc(100vh - 110px));
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(57, 210, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(9, 18, 31, 0.97), rgba(7, 17, 29, 0.98));
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.floating-chat-panel[hidden] {
  display: none !important;
}

.floating-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(91, 228, 255, 0.12);
}

.floating-chat-head p {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 800;
}

.floating-chat-head strong {
  font-family: "Sora", sans-serif;
}

.floating-chat-close {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(91, 228, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
  pointer-events: auto;
}

.floating-chat-log {
  min-height: 0;
  max-height: none;
  height: 100%;
  padding-right: 8px;
}

.chat-log::-webkit-scrollbar {
  width: 8px;
}

.chat-log::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.chat-log::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(57, 210, 255, 0.65), rgba(167, 255, 119, 0.45));
  border-radius: 999px;
}

.floating-chat-form {
  padding: 0 18px 18px;
}

.floating-chat-form input {
  min-width: 0;
}

.floating-chat-note {
  padding: 0 20px 20px;
}

@media (max-width: 1120px) {
  .plan-grid.four-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-grid,
  .company-grid,
  .plan-grid.three-up,
  .service-grid,
  .route-grid,
  .tv-page-grid,
  .channel-groups,
  .footer-grid,
  .coverage-layout-rich {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero,
  .split-heading,
  .coverage-layout,
  .coverage-map-copy,
  .ai-layout,
  .footer {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .heading-note {
    max-width: none;
  }

  .topbar {
    align-items: center;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    z-index: 12;
  }

  .menu-shell {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 11;
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line-strong);
    border-radius: 26px;
    background:
      radial-gradient(circle at top right, rgba(57, 210, 255, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(9, 18, 31, 0.98), rgba(7, 17, 29, 0.96));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .menu-shell.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .menu-actions {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .menu-cta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section,
  .intro-band,
  .footer {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-logo,
  .footer-logo {
    width: 110px;
  }

  .brand-logo-header {
    width: 168px;
    max-width: 46vw;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .plan-grid.four-up,
  .plan-grid.three-up {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .tv-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  input {
    width: 100%;
  }

  .chat-form,
  .hero-actions {
    gap: 12px;
  }

  .coverage-map {
    height: 360px;
  }

  .coverage-form-actions .button,
  .coverage-map-status .button,
  .map-locate-button {
    width: 100%;
  }

  .floating-chat {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-items: stretch;
  }

  .floating-chat-toggle,
  .floating-chat-panel {
    width: 100%;
  }

  .floating-chat-panel {
    height: min(72vh, 560px);
  }

  .floating-chat-toggle-copy {
    flex: 1;
  }
}
