/* NexaTV + Nexa8K — brand tokens */
:root {
  --bg: #030306;
  --bg-elevated: #0c0c12;
  --bg-card: #101018;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f6;
  --text-muted: #9a9aad;
  --blue: #00c8ff;
  --blue-dim: #0099cc;
  --blue-glow: rgba(0, 200, 255, 0.35);
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --radius: 0;
  --radius-lg: 0;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --header-h: 72px;
  --container: min(1120px, 100% - 2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body :where(h1, h2, h3, h4, h5, h6, p, li, a, button, label, summary, th, td, span, strong, small, output, .btn, .badge):not(code):not(pre):not(kbd):not(samp):not(input):not(textarea):not(select):not([href^="mailto:"]) {
  text-transform: capitalize !important;
}

.mobile-bar,
.nav-backdrop {
  display: none;
}

.nav-backdrop[hidden] {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

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

.container--narrow {
  max-width: 720px;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--blue {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: var(--blue-glow);
  opacity: 0.5;
}

.bg-glow--gold {
  width: 360px;
  height: 360px;
  bottom: 20%;
  left: -100px;
  background: var(--gold-glow);
  opacity: 0.25;
}

/* Typography */
.text-gradient-blue {
  background: linear-gradient(90deg, #fff 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

/* Title Case for card & feature headings (display font may still uppercase via text-transform) */
.feature h3,
.steps h3 {
  text-transform: none;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
}

.badge--blue {
  background: rgba(0, 200, 255, 0.12);
  color: var(--blue);
  border: 1px solid rgba(0, 200, 255, 0.25);
}

.badge--gold {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dim) 100%);
  color: #000;
  box-shadow: 0 0 24px var(--blue-glow);
}

.btn--primary:hover {
  box-shadow: 0 0 36px var(--blue-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #1a1400;
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  color: #fff;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(3, 3, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand img {
  height: 40px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__menu a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__menu a:not(.btn):hover {
  color: var(--blue);
}

.nav__cta-mobile {
  display: none;
}

.nav__end {
  display: contents;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  z-index: 1;
}

.hero__flare {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.4;
  filter: blur(2px);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 1rem 0;
}

.hero__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero__stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

.lineup-count--flash,
[data-live-count].lineup-count--flash,
[data-vod-count].lineup-count--flash {
  animation: lineup-count-pulse 1.2s ease-out;
}

@keyframes lineup-count-pulse {
  0% {
    color: #fff;
    text-shadow: 0 0 12px var(--blue-glow);
  }
  100% {
    color: var(--blue);
    text-shadow: none;
  }
}

.hero__stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 40px var(--blue-glow));
}

.hero__card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.hero__card-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Products */
.products {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

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

.product-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.product-card--tv:hover {
  border-color: rgba(0, 200, 255, 0.35);
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.08);
}

.product-card--8k:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
}

.product-card__icon img {
  height: 56px;
  width: auto;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-card__list {
  flex: 1;
  margin: 0.5rem 0 1rem;
}

.product-card__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.product-card--tv .product-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 0;
}

.product-card--8k .product-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 0;
}

.product-card__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.product-card__note--info {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.price-card__features--rates li::before {
  color: var(--gold);
}

.product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Features */
.features {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 12, 18, 0.6) 50%, transparent 100%);
  position: relative;
  z-index: 1;
}

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

.feature {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature__icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.feature__icon--blue {
  background: rgba(0, 200, 255, 0.1);
}

.feature__icon--gold {
  background: rgba(212, 175, 55, 0.1);
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Intro / about copy */
.intro {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 18, 0.45);
}

.intro__inner {
  max-width: 52rem;
  margin-inline: auto;
}

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.intro__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro__content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.intro__content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intro__content a:hover {
  color: #fff;
}

/* Trust & policies */
.trust {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-card {
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.trust-card p a {
  color: var(--blue);
}

.trust-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.25rem;
}

.trust-card__link:hover {
  color: #fff;
}

.trust-card__link--btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.trust-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 40rem;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: rgba(0, 200, 255, 0.04);
}

.modal-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.modal-trust-card {
  padding: 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.modal-trust-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.modal-trust-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.modal-trust-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(0, 200, 255, 0.04);
}

.modal-support-list {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.modal-support-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.modal-support-list a {
  color: var(--blue);
}

.legal-modal__body a {
  color: var(--blue);
}

.faq__policy-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}

.faq__policy-link:hover {
  color: #fff;
}

.intro__content a:focus-visible,
.trust-card__link:focus-visible,
.footer__link--btn:focus-visible,
.faq__policy-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Price comparison */
.compare {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  position: relative;
  z-index: 1;
}

.compare .section-header.compare__section-intro {
  max-width: 44rem;
  margin-bottom: 2.75rem;
}

.compare .compare__title {
  font-size: clamp(2rem, 4.8vw, 2.85rem);
  letter-spacing: 0.06em;
  line-height: 1.08;
}

.compare .compare__lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 auto;
}

.compare .section-header .badge {
  margin-bottom: 1rem;
}

.compare__summary {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 0;
}

.compare__nexa,
.compare__chart {
  min-width: 0;
}

.compare__grid > * {
  min-width: 0;
}

.compare__nexa {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.35rem 1.45rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 200, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.compare__nexa-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.compare__nexa-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.compare__nexa-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}

.compare__nexa-prices li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.75rem 0.65rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.compare__nexa-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.compare__nexa-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.compare__nexa-amount--gold {
  color: var(--gold-light);
}

.compare__nexa-term {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.compare__nexa-savings {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 0 0;
  list-style: none;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.compare__nexa-savings strong {
  color: var(--gold-light);
  font-weight: 600;
}

.compare__nexa .btn {
  margin-top: auto;
}

.compare__chart {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.compare__chart-head {
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compare__chart-head .compare__chart-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  color: var(--text);
}

.compare__chart-legend {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(180, 190, 210, 0.88);
  max-width: 38rem;
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.75rem;
  margin-bottom: 1rem;
}

.compare__column-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(160, 170, 190, 0.95);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compare__list .compare-row {
  padding: 0.65rem 0.8rem 0.7rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.compare__list .compare-row:hover {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.compare-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.45rem;
}

.compare-row__name {
  min-width: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.compare-row__price {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(180, 190, 208, 0.92);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.compare-row__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}

.compare-row__bar {
  display: block;
  height: 100%;
  min-width: 3px;
  width: var(--w, 50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.45s ease;
}

/* Competitor brand colors */
.compare-row__bar--directv {
  background: linear-gradient(90deg, #0072ad, #00a8e8);
}

.compare-row__bar--spectrum {
  background: linear-gradient(90deg, #005eb8, #0073cf);
}

.compare-row__bar--xfinity {
  background: linear-gradient(90deg, #4a0da3, #6138f5);
}

.compare-row__bar--fios {
  background: linear-gradient(90deg, #b10000, #ee0000);
}

.compare-row__bar--dish {
  background: linear-gradient(90deg, #c4003a, #f01446);
}

.compare-row__bar--youtube {
  background: linear-gradient(90deg, #cc0000, #ff0000);
}

.compare-row__bar--hulu {
  background: linear-gradient(90deg, #14a866, #1ce783);
}

.compare-row__bar--sling {
  background: linear-gradient(90deg, #e85d00, #ff7a00);
}

.compare-row__bar--philo {
  background: linear-gradient(90deg, #0088cc, #00b2e8);
}

.compare-row__bar--fubo {
  background: linear-gradient(90deg, #d42b1e, #e93e33);
}

.compare-row--nexa.compare-row--nexa-card {
  margin-top: 0.35rem;
  padding: 1rem 1.05rem;
  background: rgba(0, 200, 255, 0.06);
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 28px rgba(0, 0, 0, 0.2);
}

.compare-row__nexa-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  margin-bottom: 0.75rem;
}

.compare-row--nexa.compare-row--nexa-card .compare-row__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.compare-row__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.45rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--blue);
  border-radius: 3px;
  line-height: 1;
  vertical-align: middle;
}

.compare-row__price--nexa {
  flex: 1 1 12rem;
  max-width: 100%;
  color: rgba(165, 230, 255, 0.95);
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

.compare-row__price--nexa strong {
  font-weight: 700;
  color: var(--blue);
}

.compare-row__price-dot {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

.compare-row__track--nexa {
  margin-top: 0;
}

.compare-row__bar--nexa {
  background: linear-gradient(90deg, var(--blue-dim), var(--blue));
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.25);
}

.compare__disclaimer {
  max-width: none;
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  font-size: 0.68rem;
  line-height: 1.6;
  color: rgba(150, 160, 180, 0.9);
}

.nexa-lane__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nexa-lane__list li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 0.75rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.nexa-lane__list strong {
  color: var(--text);
  font-weight: 600;
}

/* Pricing */
.pricing {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.pricing__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing__billing {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.pricing__perk-callout {
  margin: 0;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-muted);
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: var(--radius);
  width: 100%;
  max-width: 36rem;
}

.pricing__perk-callout strong {
  color: var(--blue);
}

.pricing__perk-callout[hidden] {
  display: none !important;
}

.pricing__promo-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.25), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 0.9rem;
  color: #e2e8f0;
  text-align: center;
}

.pricing__promo-banner strong {
  color: #f0f9ff;
}

.pricing__promo-banner-off {
  font-size: 0.8rem;
  color: #7dd3fc;
  font-weight: 600;
}

.pricing__server-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.pricing-server {
  background: rgba(11, 15, 25, 0.88);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-server__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border);
}

.pricing-server__eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-server h3 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.pricing-server p {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.pricing-server__lineup {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.65rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: right;
}

.pricing-server__lineup a,
.pricing-server__lineup span {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-server__lineup strong,
.pricing-server__lineup a:hover,
.pricing-server__lineup a:focus-visible {
  color: var(--blue);
}

.pricing-plan-list {
  display: flex;
  flex-direction: column;
}

.pricing-plan-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.25rem 0.7rem;
  padding: 0.58rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-plan-row:last-child {
  border-bottom: 0;
}

.pricing-plan-row__main {
  min-width: 0;
}

.pricing-plan-row__badge,
.pricing-plan-row__term {
  display: inline-flex;
  margin: 0 0.4rem 0.14rem 0;
  color: var(--gold-light);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan-row__term {
  color: var(--text-muted);
}

.pricing-plan-row h4 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.15;
}

.pricing-plan-row p {
  display: none;
  margin: 0.12rem 0 0;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.pricing-plan-row__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem 0.6rem;
  grid-column: 1 / 2;
  color: var(--text-muted);
  font-size: 0.66rem;
  text-align: left;
  white-space: nowrap;
}

.pricing-plan-row__price {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  min-width: 3.8rem;
  text-align: right;
}

.pricing-plan-row__price strong {
  display: block;
  color: var(--blue);
  font-size: 0.92rem;
  line-height: 1;
}

.pricing-plan-row__price span {
  display: block;
  margin-top: 0.12rem;
  color: var(--text-muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.pricing-plan-row__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.28rem;
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  min-width: 10.25rem;
}

.pricing-plan-row__cta {
  width: auto;
  min-width: 4.9rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.pricing-plan-row--trial .pricing-plan-row__price strong {
  color: var(--gold-light);
}

@media (max-width: 760px) {
  .pricing-server__header,
  .pricing-plan-row {
    grid-template-columns: 1fr;
  }

  .pricing-server__header {
    display: block;
  }

  .pricing-server__lineup {
    justify-content: flex-start;
    margin-top: 0.65rem;
    text-align: left;
  }

  .pricing-plan-row {
    align-items: stretch;
    gap: 0.5rem;
  }

  .pricing-plan-row__meta,
  .pricing-plan-row__price,
  .pricing-plan-row__actions {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .pricing-plan-row__actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .pricing-plan-row__cta {
    width: auto;
  }
}

.pricing__billing[hidden],
.pricing__billing.is-hidden {
  display: none !important;
}

.plan-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: min(520px, 100%);
  max-width: 100%;
  margin: 0 auto 0.75rem;
  padding: 0.55rem;
  background: rgba(11, 15, 25, 0.92);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.plan-group__heading {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 0 0.2rem 0.15rem;
}

.plan-group__btn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.65rem;
  align-items: center;
  text-align: left;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  font-family: var(--font);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.plan-group__btn:hover,
.plan-group__btn:focus-visible {
  border-color: rgba(0, 200, 255, 0.55);
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.1);
  outline: none;
}

.plan-group__btn.is-active {
  background: rgba(0, 200, 255, 0.12);
  border-color: var(--blue);
  box-shadow: inset 3px 0 0 var(--blue);
}

.plan-group__main,
.plan-group__stats,
.plan-group__price {
  display: flex;
  flex-direction: column;
}

.plan-group__name {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.plan-group__tagline {
  margin-top: 0.08rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.plan-group__stats {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
  color: var(--text-muted);
  font-size: 0.68rem;
}

.plan-group__stats span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
}

.plan-group__stats span:not(:last-child)::after {
  content: " /";
  color: rgba(255, 255, 255, 0.22);
}

.plan-group__stats strong {
  color: var(--blue);
}

.plan-group__price {
  align-items: flex-end;
  color: var(--text-muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-group__price strong {
  color: var(--gold);
  font-size: 0.82rem;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .plan-group__btn {
    grid-template-columns: 1fr auto;
  }

  .plan-group__stats {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

.plan-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  max-width: 100%;
}

.plan-type__btn {
  padding: 0.65rem 1.1rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.plan-type__btn.is-active {
  background: rgba(0, 200, 255, 0.15);
  color: var(--blue);
}

.plan-type__btn[data-plan="bundle"].is-active {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.12) 0%, rgba(212, 175, 55, 0.15) 100%);
  color: var(--text);
}

.plan-type__btn[data-plan="8k"].is-active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

.billing-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0;
}

.billing-toggle__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 8.25rem;
  padding: 0.75rem 0.65rem;
  font-family: var(--font);
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.billing-toggle__term {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.billing-toggle__tier {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.billing-toggle__perk {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
  text-align: center;
}

.billing-toggle__connections {
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.billing-toggle__btn.is-active .billing-toggle__perk {
  color: #7ee8ff;
}

/* FREE Trial — distinct gold (always), separate from cyan paid tiers */
.billing-toggle__btn--trial {
  background: linear-gradient(
    160deg,
    rgba(255, 193, 7, 0.14) 0%,
    rgba(255, 152, 0, 0.08) 100%
  );
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.12);
}

.billing-toggle__btn--trial .billing-toggle__term {
  color: rgba(255, 214, 130, 0.9);
}

.billing-toggle__btn--trial .billing-toggle__tier {
  color: #ffc107;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.billing-toggle__perk--trial {
  color: #ffe082;
}

.billing-toggle__btn--trial:hover:not(.is-active) {
  border-color: rgba(255, 193, 7, 0.7);
  box-shadow: 0 0 22px rgba(255, 193, 7, 0.2);
}

.billing-toggle__btn--trial.is-active {
  background: linear-gradient(
    160deg,
    rgba(255, 193, 7, 0.28) 0%,
    rgba(255, 152, 0, 0.16) 100%
  );
  border-color: #ffc107;
  box-shadow: 0 0 28px rgba(255, 193, 7, 0.35);
}

.billing-toggle__btn--trial.is-active .billing-toggle__term {
  color: #fff3c4;
}

.billing-toggle__btn--trial.is-active .billing-toggle__tier {
  color: #ffe566;
}

.billing-toggle__btn--trial.is-active .billing-toggle__perk--trial {
  color: #fff8e1;
}

/* TV Premier — best value (rich gold, distinct from FREE Trial amber) */
.billing-toggle__btn--best-value {
  position: relative;
  padding-top: 1.1rem;
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(
    160deg,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(180, 140, 40, 0.06) 100%
  );
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.1);
}

.billing-toggle__badge {
  position: absolute;
  top: -0.45rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
  color: #1a1408;
  background: linear-gradient(135deg, #e8c547 0%, #c9a227 50%, #b8922a 100%);
  border: 1px solid rgba(255, 235, 160, 0.5);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.billing-toggle__btn--best-value .billing-toggle__term {
  color: rgba(232, 210, 150, 0.95);
}

.billing-toggle__btn--best-value .billing-toggle__tier {
  color: var(--gold-light);
  font-weight: 700;
}

.billing-toggle__btn--best-value .billing-toggle__perk {
  color: rgba(232, 197, 71, 0.95);
}

.billing-toggle__btn--best-value:hover:not(.is-active) {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
}

.billing-toggle__btn--best-value.is-active {
  background: linear-gradient(
    160deg,
    rgba(212, 175, 55, 0.26) 0%,
    rgba(180, 140, 40, 0.14) 100%
  );
  border-color: var(--gold-light);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.35);
}

.billing-toggle__btn--best-value.is-active .billing-toggle__term {
  color: #fff8e7;
}

.billing-toggle__btn--best-value.is-active .billing-toggle__tier {
  color: #ffe9a8;
}

.billing-toggle__btn--best-value.is-active .billing-toggle__perk {
  color: #f5e6b8;
}

.plan-rates__8k-badge {
  display: inline-block;
  margin-top: 1.25rem;
}

.billing-toggle__btn.is-active {
  background: rgba(0, 200, 255, 0.12);
  border-color: rgba(0, 200, 255, 0.4);
  box-shadow: 0 0 20px var(--blue-glow);
}

.billing-toggle__btn.is-active .billing-toggle__tier {
  color: var(--blue);
}

.billing-toggle__btn:hover:not(.is-active) {
  color: var(--text);
}

.plan-type__btn.is-disabled,
.plan-type__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.addon-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.65rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.addon-toggle:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.addon-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.addon-toggle__track {
  width: 44px;
  height: 24px;
  background: var(--bg-elevated);
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}

.addon-toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--text-muted);
  border-radius: 0;
  transition: transform 0.2s, background 0.2s;
}

.addon-toggle input:checked + .addon-toggle__track {
  background: rgba(212, 175, 55, 0.25);
}

.addon-toggle input:checked + .addon-toggle__track::after {
  transform: translateX(20px);
  background: var(--gold-light);
}

.addon-toggle__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.addon-toggle__label img {
  height: 22px;
  width: auto;
}

.pricing__lineup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.pricing__lineup a {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.pricing__lineup a:hover strong,
.pricing__lineup a:focus-visible strong,
.pricing__lineup-link:hover,
.pricing__lineup-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing__lineup strong {
  color: var(--text);
  font-weight: 600;
}

.pricing__lineup-sep {
  opacity: 0.45;
  user-select: none;
}

.pricing__lineup-link {
  color: var(--blue);
  font-weight: 500;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 400px;
  margin-inline: auto;
  align-items: start;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: start;
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.price-card.is-featured {
  border-color: rgba(0, 200, 255, 0.3);
  box-shadow: 0 0 48px rgba(0, 200, 255, 0.1);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.price-card.is-featured.is-best-value {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.18);
}

.price-card.is-featured .price-card__features {
  margin: 0.85rem 0;
}

.price-card.is-featured > .btn {
  margin-top: 0.75rem;
}

.price-card--addon {
  border-color: rgba(212, 175, 55, 0.2);
}

.price-card--compact {
  padding: 1.1rem 1rem;
}

.price-card--compact .badge--blue {
  margin-bottom: 0.5rem;
}

/* Plan Overview — roomy 3-column reference card */
.price-card--overview {
  padding: 1.5rem 1.4rem 1.45rem;
  container-type: inline-size;
}

.price-card--overview > .badge--blue {
  display: inline-block;
  margin-bottom: 1rem;
}

.plan-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem 1.5rem;
}

.plan-rates-block {
  min-width: 0;
}

.plan-rates-block + .plan-rates-block {
  padding-left: 1.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.plan-rates-block__title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.price-card--overview .price-card__features {
  margin: 0;
}

.price-card--overview .price-card__features li {
  padding: 0.38rem 0 0.38rem 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.48;
}

.price-card--overview .price-card__features li strong {
  color: var(--text);
  font-weight: 600;
}

.price-card--overview .plan-rate--best-value {
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  margin-top: 0.35rem;
  gap: 0.4rem 0.55rem;
}

.price-card--overview .plan-rate--best-value .badge {
  font-size: 0.62rem;
  padding: 0.2rem 0.45rem;
  letter-spacing: 0.04em;
}

@container (max-width: 640px) {
  .plan-rates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }

  .plan-rates-block:last-child {
    grid-column: 1 / -1;
  }

  .plan-rates-block:nth-child(2) {
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
  }

  .plan-rates-block:last-child {
    padding-left: 0;
    padding-top: 1.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@container (max-width: 400px) {
  .plan-rates-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .plan-rates-block + .plan-rates-block {
    padding-left: 0;
    padding-top: 1.1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

.price-card--compact .price-card__features {
  margin: 0;
}

.price-card--compact .price-card__features li {
  padding: 0.18rem 0 0.18rem 0.95rem;
  font-size: 0.76rem;
  line-height: 1.32;
}

.price-card--compact .plan-rate--best-value {
  padding: 0.35rem 0.4rem;
  margin: 0.1rem 0;
}

.price-card--compact .plan-rate--best-value .badge {
  font-size: 0.58rem;
  padding: 0.15rem 0.35rem;
}

.price-card.is-featured h3 {
  font-size: 1.65rem;
}

.price-card.is-featured .price-card__amount {
  font-size: 2.35rem;
}

.price-card.is-featured .price-card__desc {
  margin-bottom: 0.35rem;
}

.price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(0, 200, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 0;
}

.price-card__badge--gold {
  color: #1a1408;
  background: linear-gradient(135deg, #e8c547 0%, #c9a227 50%, #b8922a 100%);
  border: 1px solid rgba(255, 235, 160, 0.45);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.price-card__badge[hidden] {
  display: none !important;
}

.plan-rate--best-value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0.65rem;
  margin: 0.15rem 0;
  background: rgba(212, 175, 55, 0.06);
  border-left: 3px solid rgba(212, 175, 55, 0.65);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.price-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.price-card__now-line {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.price-card__was-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.price-card__was-line s,
.price-card__was-amount {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(248, 113, 113, 0.85);
  font-weight: 600;
  font-style: normal;
}

.price-card__promo-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(135deg, #fde047, #fbbf24);
  border: 1px solid rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.25);
}

.price-card.is-promo-active .price-card__amount {
  color: #fde047;
  text-shadow: 0 0 18px rgba(253, 224, 71, 0.35);
}

.price-card.is-featured.is-promo-active {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.price-card__currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card__amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}

.price-card__period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing__connections {
  margin: 0.85rem 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

.pricing__connections[hidden] {
  display: none !important;
}

.pricing__connections-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.pricing__connections-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing__connections-included {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.pricing__connections-control {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pricing__connections-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.pricing__connections-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing__connections-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pricing__connections-value {
  min-width: 2.5rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.pricing__connections .price-card__addon-line {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.price-card__addon-line {
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.price-card__total {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.price-card__total strong {
  color: var(--text);
  font-size: 1.15rem;
}

.price-card__features {
  margin: 1.5rem 0;
}

.price-card__features li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.price-card--addon .price-card__features li::before {
  color: var(--gold);
}

.price-card__logo-wrap {
  margin: 1rem 0;
}

.price-card__logo-wrap img {
  height: 48px;
  width: auto;
}

.price-card__fine {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.pricing__disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing__disclaimer code {
  background: var(--bg-card);
  padding: 0.15rem 0.4rem;
  border-radius: 0;
  font-size: 0.75rem;
}

/* Steps */
.how {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

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

.steps li {
  text-align: center;
  padding: 1.5rem;
}

.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 0;
  margin-bottom: 1rem;
}

.steps h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.steps h3 em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 500;
}

.steps p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: var(--bg-card);
}

.faq__item[open] {
  border-color: rgba(0, 200, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.08);
}

.faq__item summary {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.65rem;
}

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

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--blue);
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* CTA banner */
.cta-banner {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.cta-banner p {
  color: var(--text-muted);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: #030306;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 24px;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.footer__logo img {
  display: block;
  height: 22px;
  width: auto;
}

.footer__divider {
  flex-shrink: 0;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  flex: 1;
  min-width: 0;
}

.footer__link,
.footer__link--btn {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer__link:hover,
.footer__link--btn:hover {
  color: #00d68f;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #00d68f;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.footer__wa:hover {
  opacity: 0.75;
}

.footer__wa-icon {
  flex-shrink: 0;
}

/* Legal modals */
.legal-modal {
  margin: auto;
  padding: 0;
  border: 1px solid var(--border);
  max-width: 640px;
  width: calc(100% - 2rem);
  max-height: min(88vh, 720px);
  background: transparent;
  color: var(--text);
  overflow: visible;
}

.legal-modal::backdrop {
  background: rgba(3, 3, 6, 0.82);
  backdrop-filter: blur(4px);
}

.legal-modal__panel {
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 720px);
  background: var(--bg-card);
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.legal-modal__header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.legal-modal__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.legal-modal__close:hover {
  color: var(--text);
  border-color: var(--blue);
}

.legal-modal__body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-modal__body h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.legal-modal__body p {
  margin-bottom: 0.75rem;
}

.legal-modal__body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-modal__body li {
  margin-bottom: 0.35rem;
}

.legal-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.legal-modal__footer--split {
  justify-content: space-between;
}

.cookie-prefs__item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-prefs__item:last-of-type {
  border-bottom: none;
}

.cookie-prefs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
  cursor: default;
}

label.cookie-prefs__head {
  cursor: pointer;
}

.cookie-prefs__head strong {
  color: var(--text);
  font-size: 0.95rem;
}

.cookie-prefs__badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  border: 1px solid rgba(0, 200, 255, 0.35);
  padding: 0.2rem 0.5rem;
}

.cookie-prefs__toggle {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--blue);
  cursor: pointer;
}

.cookie-prefs__item p {
  margin: 0;
  font-size: 0.85rem;
}

.cookie-prefs__status {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--blue);
  min-height: 1.25em;
}

/* Contact */
.contact {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto 1rem;
}

.contact__actions .btn {
  flex: 1 1 200px;
  min-height: 3rem;
}

.contact__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 3.25rem;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s;
}

.contact-fab__btn:hover {
  transform: translateY(-2px);
}

.contact-fab__btn--wa {
  background: #25d366;
  color: #fff;
  border-color: #20bd5a;
}

.contact-fab__btn--review {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dim) 100%);
  color: #000;
  border-color: var(--blue);
  cursor: pointer;
  font: inherit;
}

.contact-fab__btn--call,
.contact-fab__btn--email {
  background: var(--bg-card);
  color: var(--text);
}

/* Mobile & tablet (≤900px): same UI as desktop — hamburger nav, no stripped sections */
@media (max-width: 900px) {
  .nav__end {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav-backdrop:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background: rgba(3, 3, 6, 0.72);
  }

  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__menu li {
    border-bottom: 1px solid var(--border);
  }

  .nav__menu li:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }

  .nav__menu a:not(.btn) {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .nav__menu .btn {
    width: 100%;
    min-height: 3rem;
  }

  .pricing__billing {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .billing-toggle {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
  }

  .billing-toggle__btn {
    flex: 0 0 auto;
    min-width: 7.25rem;
    min-height: 3.75rem;
  }

  .plan-type {
    width: 100%;
    max-width: 100%;
  }

  .plan-type__btn {
    flex: 1 1 auto;
    min-height: 2.75rem;
    padding: 0.75rem 0.65rem;
    font-size: 0.8rem;
  }

  .hero__logo {
    max-width: min(100%, 320px);
    margin-inline: auto;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
  }

  .price-card__amount {
    font-size: 2.5rem;
  }

  .legal-modal {
    width: calc(100% - 1rem);
    max-height: 92dvh;
  }

  .legal-modal__panel {
    max-height: 92dvh;
  }

  .legal-modal__footer--split {
    flex-direction: column;
  }

  .legal-modal__footer--split .btn {
    width: 100%;
    min-height: 2.75rem;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
