/* =============================================================================
   V-Broadband — Premium homepage (telecom-grade)
   Scoped to body.page-home
   ============================================================================= */

.page-home {
  --navy-deep: #021526;
  --navy-mid: #03346e;
  --blue-electric: #0b60b0;
  --blue-glow: #1e88e5;
  --orange-cta: #ff7a00;
  --orange-glow: #ff9a3d;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --text-on-dark: #f0f6fc;
  --text-muted-dark: rgba(240, 246, 252, 0.72);
  --radius-xl: 20px;
  --font-display: "Sora", "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 80px;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  background: var(--navy-deep);
  color: var(--text-on-dark);
}

@media (min-width: 900px) {
  .page-home {
    padding-bottom: 0;
  }
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home .premium-plan-speed {
  font-family: var(--font-display);
}

/* -------------------------------------------------------------------------- */
/* Premium header + mega menu                                                 */
/* -------------------------------------------------------------------------- */

.premium-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.premium-header.is-scrolled {
  background: rgba(2, 21, 38, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--glass-border);
}

.premium-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.premium-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.premium-brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.premium-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-electric), var(--orange-cta));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(11, 96, 176, 0.45);
}

/* Logo image variant — see home-visuals.css for polish */

.premium-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.premium-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 1100px) {
  .premium-nav {
    display: flex;
  }
}

.premium-nav__item {
  position: relative;
}

.premium-nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-on-dark);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.premium-nav__link:hover,
.premium-nav__item.is-open > .premium-nav__link {
  background: var(--glass);
  text-decoration: none;
}

.premium-nav__link.is-active {
  color: var(--orange-cta);
}

.premium-nav__chev {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: transform 0.25s;
}

.premium-nav__item.is-open .premium-nav__chev {
  transform: rotate(180deg);
}

.premium-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 420px;
  padding: 1.25rem;
  background: rgba(3, 52, 110, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.premium-nav__item.is-open .premium-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.premium-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.premium-mega__card {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.premium-mega__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 122, 0, 0.35);
  transform: translateY(-2px);
  text-decoration: none;
}

.premium-mega__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-electric), #0d47a1);
}

.premium-mega__card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.premium-mega__card span {
  font-size: 0.78rem;
  color: var(--text-muted-dark);
  line-height: 1.35;
}

.premium-header__actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .premium-header__actions {
    display: flex;
  }
}

.btn-premium-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-premium-wa:hover {
  background: rgba(37, 211, 102, 0.28);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-premium-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-cta), #e65100);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 122, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-premium-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: btn-shimmer 3.5s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0%,
  70%,
  100% {
    transform: translateX(-120%);
  }
  85% {
    transform: translateX(120%);
  }
}

.btn-premium-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 122, 0, 0.5);
  text-decoration: none;
}

.premium-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
}

@media (min-width: 1100px) {
  .premium-menu-toggle {
    display: none;
  }
}

.premium-menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.premium-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.premium-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.premium-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.premium-drawer {
  position: fixed;
  inset: 0;
  z-index: 199;
  pointer-events: none;
  visibility: hidden;
}

.premium-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.premium-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 21, 38, 0.75);
  opacity: 0;
  transition: opacity 0.35s;
}

.premium-drawer.is-open .premium-drawer__backdrop {
  opacity: 1;
}

.premium-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100%;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  border-left: 1px solid var(--glass-border);
  padding: calc(var(--header-h) + 1rem) 1.25rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-drawer.is-open .premium-drawer__panel {
  transform: translateX(0);
}

.premium-drawer__link {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  color: var(--text-on-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--glass-border);
}

.premium-drawer__group-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-cta);
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
}

.premium-drawer__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.premium-drawer__cta-stack .btn-premium-cta,
.premium-drawer__cta-stack .btn-premium-wa {
  justify-content: center;
  width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero-premium {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(11, 96, 176, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 122, 0, 0.12), transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy-mid) 45%, #021a30 100%);
}

.hero-premium__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 960px) {
  .hero-premium__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
  }
}

.hero-premium__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-premium__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.hero-premium h1 {
  font-size: clamp(2.15rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.hero-premium__gradient-text {
  background: linear-gradient(90deg, #7dd3fc, #38bdf8 40%, var(--orange-cta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-premium__lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted-dark);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  padding: 0.9rem 1.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-cta), #e65100);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 122, 0, 0.45);
  text-decoration: none;
}

.btn-hero-ghost {
  padding: 0.9rem 1.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}

.hero-premium__mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.hero-premium__mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}

.hero-premium__mini-stat span {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

/* Hero visual stage */
.hero-visual {
  position: relative;
  min-height: 380px;
}

@media (min-width: 960px) {
  .hero-visual {
    min-height: 520px;
  }
}

.hero-visual__glow {
  position: absolute;
  inset: 10% 5% 15% 10%;
  background: radial-gradient(circle, rgba(11, 96, 176, 0.55) 0%, transparent 65%);
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-router {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 280px;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-router__img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #0b60b0, #03346e);
}

.hero-router__leds {
  display: flex;
  gap: 6px;
  margin-top: 1rem;
  justify-content: center;
}

.hero-router__led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.hero-router__led:nth-child(2) {
  background: var(--blue-glow);
  box-shadow: 0 0 8px var(--blue-glow);
  animation: blink 1.5s ease infinite;
}

.hero-router__led:nth-child(3) {
  background: var(--orange-cta);
  box-shadow: 0 0 8px var(--orange-cta);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  padding: 0.75rem 1rem;
  background: rgba(2, 21, 38, 0.88);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: float-y 4s ease-in-out infinite;
}

.hero-float-card--speed {
  top: 8%;
  right: 0;
  animation-delay: -1s;
}

.hero-float-card--ping {
  bottom: 28%;
  left: -4%;
  animation-delay: -2s;
}

.hero-float-card--ott {
  bottom: 6%;
  right: 8%;
  animation-delay: -0.5s;
}

.hero-speed-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #7dd3fc;
  line-height: 1;
}

.hero-speed-label {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-ping-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-ping-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.5s ease infinite;
}

.hero-ott-row {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.hero-ott-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-ott-pill--hotstar {
  background: linear-gradient(135deg, #1f0a3d, #e50914);
}
.hero-ott-pill--sony {
  background: #000;
  border: 1px solid #f5c518;
  color: #f5c518;
}
.hero-ott-pill--zee {
  background: #5c2d91;
}
.hero-ott-pill--sun {
  background: linear-gradient(135deg, #ff6b00, #ff9500);
}

/* -------------------------------------------------------------------------- */
/* Trust strip                                                                */
/* -------------------------------------------------------------------------- */

.trust-premium {
  position: relative;
  z-index: 5;
  margin-top: -2.5rem;
  padding: 0 clamp(1rem, 3vw, 2rem) 3rem;
}

.trust-premium__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin-inline: auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

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

.trust-premium__item {
  text-align: center;
  padding: 0.5rem;
}

.trust-premium__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.1;
}

.trust-premium__item span {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Section utilities                                                          */
/* -------------------------------------------------------------------------- */

.section-premium {
  padding: 5rem 0;
  position: relative;
}

.section-premium--dark {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--text-on-dark);
}

.section-premium--light {
  background: linear-gradient(180deg, #f0f6fc 0%, #e8f0fa 100%);
  color: var(--navy-deep);
}

.section-premium--cinema {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(11, 96, 176, 0.25), transparent),
    var(--navy-deep);
  color: var(--text-on-dark);
}

.section-premium__wrap {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.section-premium__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-cta);
  margin-bottom: 0.75rem;
}

.section-premium--dark .section-premium__eyebrow,
.section-premium--cinema .section-premium__eyebrow {
  color: var(--orange-glow);
}

.section-premium h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-premium__lead {
  font-size: 1.05rem;
  max-width: 42rem;
  margin: 0 0 2.5rem;
  opacity: 0.85;
}

.section-premium--light .section-premium__lead {
  color: #475569;
  opacity: 1;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  color: #f0f6fc;
}

.wave-divider svg {
  width: 100%;
  height: 48px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------- */
/* Premium plan cards                                                         */
/* -------------------------------------------------------------------------- */

.plans-premium__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.plans-premium__tab {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-muted-dark);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.section-premium--light .plans-premium__tab {
  border-color: #cbd5e1;
  color: #64748b;
}

.plans-premium__tab.is-active {
  background: linear-gradient(135deg, var(--orange-cta), #e65100);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
}

.plans-premium__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.plans-premium__track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .plans-premium__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }
}

.premium-plan-card {
  flex: 0 0 min(300px, 88vw);
  scroll-snap-align: center;
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}

.section-premium--light .premium-plan-card {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 12px 40px rgba(2, 21, 38, 0.08);
}

.premium-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 24px 56px rgba(11, 96, 176, 0.2);
}

.premium-plan-card.is-featured {
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.2), 0 24px 56px rgba(255, 122, 0, 0.15);
}

.premium-plan-card.is-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--orange-cta), var(--blue-electric), var(--orange-cta));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
  animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(20deg);
  }
}

.premium-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-cta), #e65100);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

.premium-plan-speed {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin: 0.5rem 0 0.25rem;
  line-height: 0.9;
}

.premium-plan-speed__num {
  font-size: clamp(3.5rem, 10vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 30%, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-premium--light .premium-plan-speed__num {
  background: linear-gradient(180deg, var(--navy-deep), var(--blue-electric));
  -webkit-background-clip: text;
  background-clip: text;
}

.premium-plan-speed__unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted-dark);
  padding-bottom: 0.65rem;
}

.section-premium--light .premium-plan-speed__unit {
  color: #64748b;
}

.premium-plan-tagline {
  font-size: 0.88rem;
  color: var(--orange-glow);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.section-premium--light .premium-plan-tagline {
  color: var(--orange-cta);
}

.premium-plan-ott {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.ott-chip {
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 6px;
  color: #fff;
}

.ott-chip--tv {
  background: linear-gradient(135deg, #e50914, #b20710);
}
.ott-chip--sports {
  background: linear-gradient(135deg, #0b60b0, #03346e);
}
.ott-chip--hd {
  background: linear-gradient(135deg, #5c2d91, #3d1f5c);
}

.premium-plan-perks {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.premium-plan-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  color: var(--text-muted-dark);
}

.section-premium--light .premium-plan-perks li {
  color: #475569;
}

.premium-plan-perks li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 800;
  flex-shrink: 0;
}

.premium-plan-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.section-premium--light .premium-plan-price {
  color: var(--navy-deep);
}

.premium-plan-price small {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
}

.premium-plan-cta {
  display: block;
  width: 100%;
  padding: 0.85rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-electric), var(--navy-mid));
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.premium-plan-card.is-featured .premium-plan-cta {
  background: linear-gradient(135deg, var(--orange-cta), #e65100);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
}

.premium-plan-cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(11, 96, 176, 0.35);
}

.plans-premium__footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  opacity: 0.75;
}

.plans-premium__footnote a {
  color: var(--orange-glow);
  font-weight: 700;
}

.section-premium--light .plans-premium__footnote a {
  color: var(--blue-electric);
}

/* -------------------------------------------------------------------------- */
/* Entertainment sections                                                     */
/* -------------------------------------------------------------------------- */

.entertainment-grid {
  display: grid;
  gap: 1.25rem;
}

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

.ent-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--glass-border);
  transition: transform 0.35s ease;
}

.ent-card:hover {
  transform: scale(1.02);
}

.ent-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.ent-card:hover .ent-card__bg {
  transform: scale(1.06);
}

.ent-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 21, 38, 0.95) 0%, rgba(2, 21, 38, 0.35) 55%, transparent 100%);
}

.ent-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.ent-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: auto;
}

.ent-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

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

.stream-showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .stream-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

.stream-ui-mock {
  position: relative;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
}

.stream-ui-mock__row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.stream-ui-mock__thumb {
  flex: 0 0 100px;
  height: 140px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.stream-ui-mock__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 50%);
}

.stream-ui-mock__label {
  position: absolute;
  bottom: 6px;
  left: 8px;
  right: 8px;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.channel-marquee {
  display: flex;
  gap: 0.75rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-top: 2rem;
}

.channel-marquee__track {
  display: flex;
  gap: 0.75rem;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.channel-pill {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  white-space: nowrap;
}

/* Lifestyle grid */
.lifestyle-grid {
  display: grid;
  gap: 1rem;
}

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

.lifestyle-tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--glass-border);
}

.lifestyle-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-tile__cap {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(2, 21, 38, 0.9), transparent);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Process + coverage (light) */
.process-premium {
  display: grid;
  gap: 1.25rem;
}

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

.process-step {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(2, 21, 38, 0.06);
  transition: transform 0.25s;
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-electric), var(--navy-mid));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--navy-deep);
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: #64748b;
}

/* CTA finale */
.cta-premium {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(255, 122, 0, 0.2), transparent),
    linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid var(--glass-border);
}

.cta-premium h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
}

.cta-premium p {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: var(--text-muted-dark);
}

.cta-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Homepage footer override */
.page-home .site-footer {
  background: var(--navy-deep);
  color: var(--text-muted-dark);
  border-top: 1px solid var(--glass-border);
}

.page-home .site-footer h3,
.page-home .site-footer a {
  color: var(--text-on-dark);
}

.page-home .site-footer a:hover {
  color: var(--orange-glow);
}

.page-home .mobile-sticky-cta {
  background: rgba(2, 21, 38, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
}

.page-home .fab-wa {
  bottom: calc(72px + 1rem);
}

/* Area chips on dark sections */
.section-premium--dark .area-chip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-on-dark);
}

/* Sticky CTA buttons on dark homepage */
.page-home .mobile-sticky-cta .btn-primary {
  background: linear-gradient(135deg, var(--orange-cta), #e65100);
  border: none;
}

.page-home .mobile-sticky-cta .btn-ocean {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--glass-border);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 900px) {
  .page-home .fab-wa {
    bottom: 1.5rem;
  }
}

/* Hide default header on homepage */
.page-home .site-header {
  display: none;
}

.page-home .mobile-nav {
  display: none;
}
