/* NEXA 8K — lean marketing site */
:root {
  --bg: #0a0a0a;
  --bg-surface: #0f0f0f;
  --bg-card: #141414;
  --bg-elevated: #1c1c1c;
  --radius-md: 8px;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --hint: #737373;
  --success: #4ade80;
  --gold: #d4af37;
  --gold-dim: #b8962e;
  --border: #2a2a2a;
  --radius: 12px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Bebas Neue", sans-serif;
  --container: 1120px;
  --gutter: clamp(1rem, 4vw, 1.5rem);
  --section-y: clamp(2.5rem, 6vw, 3.5rem);
  --touch: 44px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.nav-locked {
  overflow: hidden;
}

body.has-mobile-bar {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
}

@media (min-width: 768px) {
  body.has-mobile-bar {
    padding-bottom: 0;
  }
}

main {
  flex: 1;
  width: 100%;
}

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

.logo-fallback {
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Layout: centered sections, panels, full-width grids */
.section-head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-inline: auto;
}

.section-head .section-title {
  margin-bottom: 0.5rem;
}

.section-head .section-desc {
  margin-bottom: 0;
  margin-inline: auto;
}

.content-wide {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.panel {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.panel--center {
  text-align: center;
}

.panel--center .btn {
  margin-inline: auto;
}

.panel--row {
  max-width: var(--container);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.text-center {
  text-align: center;
  margin-inline: auto;
}

.gold { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-primary:hover { background: #e8c547; }

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

.btn-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}
.btn-text:hover { color: var(--gold); }

/* Promo */
.promo {
  background: var(--gold);
  color: #0a0a0a;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.nav a:hover,
.nav a.is-active { color: var(--text); }
.nav a.is-active { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown.is-active .nav-dropdown-toggle {
  color: var(--text);
}
.nav-dropdown-chevron {
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
}
.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(-135deg) translateY(1px);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-current {
  background: var(--bg-card);
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta .btn-text { display: none; }

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: var(--touch);
  min-height: var(--touch);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 8px;
}
.menu-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 var(--gutter) calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--bg);
  max-height: min(70vh, 480px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: var(--touch);
  padding: 0.65rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-dropdown {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--touch);
  padding: 0.65rem 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-dropdown-toggle:hover,
.mobile-nav-dropdown.is-open .mobile-nav-dropdown-toggle,
.mobile-nav-dropdown.is-active .mobile-nav-dropdown-toggle {
  color: var(--gold);
}
.mobile-nav-dropdown-menu {
  display: none;
  margin: 0 0 0.75rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.mobile-nav-dropdown.is-open .mobile-nav-dropdown-menu {
  display: block;
}
.mobile-nav-dropdown-item {
  display: flex;
  align-items: center;
  min-height: var(--touch);
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  border-bottom: none;
}
.mobile-nav-dropdown-item:hover,
.mobile-nav-dropdown-item[aria-current="page"] {
  background: var(--bg-card);
  color: var(--gold);
}
.mobile-nav-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  margin: 0.5rem 0 0.75rem;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #0a0a0a;
  background: var(--gold);
  border-radius: var(--radius);
  border-bottom: none;
}
.mobile-nav-call:hover {
  background: #e8c547;
}
.header.nav-open .mobile-nav { display: flex; }

/* Sticky mobile action bar */
.mobile-bar {
  display: none;
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 0.5rem;
  padding: 0.5rem var(--gutter) calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 767px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
  }
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, border-color 0.15s;
}

.mobile-bar-btn:active {
  transform: scale(0.98);
}

.mobile-bar-btn--call {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.mobile-bar-label {
  font-size: 0.95rem;
  line-height: 1.2;
}

.mobile-bar-sub {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
}

.mobile-bar-btn--plans {
  font-size: 0.85rem;
}

.mobile-bar.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .header-cta .btn-text { display: inline; }
  .menu-btn { display: none; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: clamp(420px, 72vh, 640px);
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-touch-callout: none;
}

/* No play/pause or native controls on any device */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-timeline {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.88) 100%),
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(212, 175, 55, 0.15), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero-overlay {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.12), transparent),
      var(--bg);
  }
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

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

.hero-inner h1 {
  margin-bottom: 1.5rem;
}

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

/* Boxed corner cards (reusable) */
.box-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.box-card:hover {
  border-color: #3a3a3a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Pay Less for More */
.value {
  background: var(--bg);
}

.value-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

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

.value-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
}

.value-stat {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

.value-cta {
  text-align: center;
  margin-top: 0.5rem;
}

/* Clients / testimonials */
.clients {
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

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

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

.client-card {
  padding: 1.5rem 1.25rem;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.client-quote {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.client-card footer {
  font-size: 0.85rem;
}

.client-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.client-location {
  color: var(--hint);
  display: block;
  margin-top: 0.15rem;
}

/* Sections */
section { padding: var(--section-y) 0; }

.section-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-link {
  margin-top: 1.25rem;
  text-align: center;
}
.section-link a {
  color: var(--gold);
  font-weight: 600;
}

/* Plans / pricing */
.pricing-widget { margin-top: 0.5rem; }

.tv-picker {
  margin-bottom: 2rem;
  text-align: center;
}

.tv-picker-label {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tv-picker-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tv-option {
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.tv-option:hover { border-color: var(--gold-dim); }

.tv-option.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding-top: 1rem;
}

@media (max-width: 1023px) {
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
}

.pricing-card--featured {
  border-width: 2px;
  border-color: var(--gold);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__tier {
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-card__name {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
}

.pricing-card__tagline {
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--muted);
}

.pricing-card__divider {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.05rem;
  margin: 0;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  align-self: baseline;
}

.pricing-card__amount,
.plan-price-amount {
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card__period {
  margin-left: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.pricing-card__billing,
.plan-billing-note {
  margin-top: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--hint);
}

.pricing-card__equivalent {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.pricing-card__feature.is-included {
  color: var(--text);
}

.pricing-card__feature.is-excluded {
  color: var(--hint);
}

.pricing-card__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-card__icon--check {
  color: var(--success);
}

.pricing-card__icon--minus {
  color: var(--hint);
}

.pricing-card__cta {
  margin-top: auto;
}

/* Contact */
.contact-box {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(180deg, var(--bg-card), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-box.panel {
  max-width: 720px;
}

.contact-box h2 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.contact-box > p { color: var(--muted); margin-bottom: 1.5rem; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-wrap {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.faq-wrap.panel {
  padding: 0 0.25rem;
}

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

.faq summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }

.faq-answer {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-lead {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.faq-steps {
  margin: 1rem 0 1.25rem 1.25rem;
}
.faq-steps li {
  margin-bottom: 0.5rem;
}

.faq-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.faq-pricing-table th,
.faq-pricing-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.faq-pricing-table th {
  color: var(--text);
  font-weight: 600;
  background: var(--bg-card);
}
.faq-pricing-table td strong {
  color: var(--gold);
}

.faq-muted {
  color: var(--muted);
  font-size: 0.85em;
}

.faq-formula {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
}

.faq-examples {
  margin-top: 1.25rem;
}

.faq-examples-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.faq-example {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.faq-example-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.faq-example-math {
  font-size: 0.85rem;
}

.faq-example-total {
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.faq-close {
  margin-top: 1rem;
  color: var(--text);
}

.faq-close a,
.faq-cta {
  color: var(--gold);
  font-weight: 600;
}
.faq-close a:hover,
.faq-cta:hover {
  text-decoration: underline;
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent);
}
.page-hero-inner {
  max-width: 640px;
  margin-inline: auto;
}
.page-hero-centered {
  text-align: center;
}
.page-hero-centered .page-lead,
.page-hero-centered .eyebrow,
.page-hero-centered .btn,
.page-hero-centered .prepay-highlight {
  margin-inline: auto;
}
.page-hero-centered .hero-actions,
.page-hero-centered .page-lead {
  margin-inline: auto;
}
.page-hero-prepay .page-hero-inner { max-width: 720px; }
.page-lead {
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
}
.page-section { padding: 3rem 0; }
.page-section-alt { background: var(--bg-card); }
.page-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.page-note a { font-weight: 600; }
.page-cta { padding: 0 0 3rem; }
.prepay-cards { margin-top: 1.5rem; }

/* Deals (promos) */
.deal-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .deal-grid { grid-template-columns: repeat(3, 1fr); }
}
.deal-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  min-height: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.deal-card:hover { border-color: var(--gold-dim); }
.deal-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  border-radius: 999px;
}
.deal-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.deal-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.deal-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}
.deal-link:hover { text-decoration: underline; }
.deals-banner-copy {
  flex: 1;
  min-width: min(100%, 280px);
  max-width: 520px;
}
.deals-banner-copy .section-title {
  text-align: left;
}
.deals-banner-copy p { color: var(--muted); margin-top: 0.5rem; }

/* Prepay */
.prepay-highlight {
  margin: 1.5rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
}
.prepay-highlight-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prepay-highlight-price {
  justify-content: center;
  margin: 0.35rem 0 0.5rem;
}

.prepay-highlight-price .pricing-card__amount {
  font-size: clamp(2.25rem, 5vw, 3rem);
}
.prepay-highlight-note {
  font-size: 0.9rem;
  color: var(--muted);
}
.prepay-benefits {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .prepay-benefits { grid-template-columns: repeat(3, 1fr); }
}
.prepay-benefits li {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.prepay-benefits li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  margin-bottom: 2px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
}
/* Compare Prices */
.page-hero-compare .page-hero-inner { max-width: 720px; }
.compare-nexa-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), var(--bg-card));
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
}
.compare-nexa-card.panel--center .compare-nexa-list {
  text-align: left;
  display: inline-block;
  margin-inline: auto;
}
.compare-nexa-title { font-size: 1.5rem; margin-bottom: 0.25rem; }
.compare-nexa-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.compare-nexa-tag { color: var(--muted); margin-bottom: 1rem; }
.compare-nexa-list { margin-bottom: 1.25rem; }
.compare-nexa-list li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.compare-nexa-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
}
.compare-region-note {
  margin-top: 1.5rem;
  max-width: 72ch;
  color: var(--muted);
  font-size: 0.95rem;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.compare-table-wrap::after {
  content: "Swipe sideways to see all columns";
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .compare-table-wrap::after { display: none; }
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--bg);
}
.compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--text);
  min-width: 140px;
}
.compare-table .col-type {
  white-space: nowrap;
  min-width: 9.5rem;
}
.compare-row-nexa {
  background: rgba(212, 175, 55, 0.08);
}
.compare-row-nexa th,
.compare-row-nexa td {
  color: var(--text);
  border-bottom-color: var(--gold-dim);
}
.compare-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 72ch;
}
.compare-as-of {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.plans-compare-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--gold);
}
.plans-compare-link:hover { text-decoration: underline; }

/* Supported Devices */
.devices-section { padding-top: 2rem; }
.device-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.device-tab {
  min-height: var(--touch);
  padding: 0.65rem 1.25rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.device-tab:hover { color: var(--text); border-color: var(--muted); }
.device-tab.is-active {
  color: #0a0a0a;
  background: var(--gold);
  border-color: var(--gold);
}
.device-panel { display: none; }
.device-panel.is-active { display: block; }
.device-list {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.device-list li {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 2.5rem 0 1.5rem;
  border-top: 0.5px solid var(--border);
  background: var(--bg-surface);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 2rem 1.75rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-logo-link {
  display: inline-block;
  color: var(--text);
}

.footer-logo-img {
  display: block;
  width: auto;
  max-height: 42px;
}

.footer-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-store-btn:hover {
  color: var(--text);
  border-color: var(--gold-dim);
}

.footer-store-icon {
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--muted);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.footer-social-btn:hover {
  color: var(--text);
  background: var(--bg-elevated);
  border-color: var(--gold-dim);
}

.footer-col-label {
  margin-bottom: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--border);
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--hint);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.75rem;
}

.footer-legal a {
  color: var(--hint);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text);
}

.footer-legal-sep {
  color: var(--border);
  user-select: none;
}

@media (max-width: 1023px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    margin-inline: auto;
  }

  .footer-stores,
  .footer-social {
    justify-content: center;
    width: 100%;
  }
}

/* ——— Mobile polish ——— */
@media (max-width: 767px) {
  :root {
    --section-y: 2.75rem;
    --touch: 48px;
  }

  .promo {
    font-size: 0.8rem;
    line-height: 1.35;
    padding: 0.55rem 0.75rem;
  }

  .header-inner {
    padding: 0.6rem 0;
  }

  .header-cta .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    min-height: var(--touch);
  }

  .logo img {
    max-height: 34px;
    width: auto;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }

  .section-desc,
  .page-lead,
  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero {
    padding: 2.5rem 0 2rem;
    min-height: auto;
  }

  .hero-inner {
    max-width: none;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .hero-text {
    margin-inline: auto;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: var(--touch);
  }

  .value-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .value-card {
    text-align: left;
  }

  .value-stat {
    font-size: 1.5rem;
  }

  .tv-picker-options {
    gap: 0.4rem;
  }

  .tv-option {
    min-width: 2.85rem;
    height: 2.85rem;
    font-size: 1rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: min(100%, 360px);
    margin-inline: auto;
  }

  .pricing-card {
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .pricing-card__price {
    justify-content: center;
  }

  .pricing-card__features {
    text-align: left;
    max-width: 18rem;
    margin-inline: auto;
  }

  .pricing-card__cta {
    min-height: var(--touch);
  }

  .contact-box {
    padding: 2rem 1.25rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .contact-actions .btn {
    width: 100%;
    min-height: var(--touch);
  }

  .panel--row {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .deals-banner-copy .section-title {
    text-align: center;
  }

  .panel--row .btn {
    width: 100%;
    max-width: none;
    min-height: var(--touch);
  }

  .deal-grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 400px);
    margin-inline: auto;
  }

  .prepay-benefits {
    grid-template-columns: 1fr;
    max-width: min(100%, 400px);
    margin-inline: auto;
  }

  .page-hero {
    padding: 2.25rem 0 1.75rem;
  }

  .page-note {
    text-align: center;
    padding-inline: 0.25rem;
  }

  .compare-nexa-card {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .compare-disclaimer {
    text-align: center;
    margin-inline: auto;
    font-size: 0.8rem;
  }

  .device-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scroll-snap-type: x proximity;
  }

  .device-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .device-list {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .faq-wrap {
    padding-inline: 0;
  }

  .faq summary {
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 1.4;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .faq-pricing-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .btn,
  .deal-link {
    -webkit-tap-highlight-color: transparent;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .prepay-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* Touch-friendly controls */
.btn,
.tv-option,
.nav-dropdown-toggle,
.mobile-nav-dropdown-toggle {
  min-height: var(--touch);
}

.tv-option {
  min-width: var(--touch);
}

.btn {
  padding-block: 0.7rem;
}
