/* =============================================================================
   V-Broadband — Homepage WOW polish layer (enhances home.css)
   ============================================================================= */

.page-home {
  --surface-tint: #eef4ff;
  --surface-tint-2: #f5f9ff;
  --purple-hint: rgba(124, 58, 237, 0.22);
}

/* --- Hero mesh & cinematic background ------------------------------------ */

.hero-premium {
  isolation: isolate;
}

.hero-premium__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: blob-drift 14s ease-in-out infinite;
}

.hero-blob--1 {
  width: 55%;
  height: 45%;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(11, 96, 176, 0.85), transparent 70%);
}

.hero-blob--2 {
  width: 40%;
  height: 40%;
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.45), transparent 70%);
  animation-delay: -4s;
}

.hero-blob--3 {
  width: 35%;
  height: 35%;
  top: 35%;
  left: 30%;
  background: radial-gradient(circle, var(--purple-hint), transparent 70%);
  animation-delay: -7s;
}

.hero-blob--4 {
  width: 28%;
  height: 28%;
  bottom: 20%;
  right: 25%;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.5), transparent 70%);
  animation-delay: -2s;
}

@keyframes blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.06);
  }
  66% {
    transform: translate(-10px, 14px) scale(0.96);
  }
}

.hero-premium__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-premium__gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.hero-premium__grid {
  position: relative;
  z-index: 1;
}

/* Hero visual — cinema layer */
.hero-visual__cinema {
  position: absolute;
  inset: 4% 0 8% 10%;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(1.15) contrast(1.05);
  mask-image: radial-gradient(ellipse 85% 75% at 55% 45%, #000 30%, transparent 78%);
  transform: scale(1.02);
}

.hero-visual__cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(11, 96, 176, 0.35), rgba(2, 21, 38, 0.75));
}

.hero-visual__ring {
  position: absolute;
  inset: 8% 5% 12% 8%;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.2);
  box-shadow: 0 0 60px rgba(11, 96, 176, 0.25), inset 0 0 40px rgba(11, 96, 176, 0.08);
  animation: ring-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

.hero-router--glow {
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(11, 96, 176, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-router__shine {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
}

.hero-router__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7dd3fc;
}

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

/* Glass widgets */
.glass-widget {
  position: absolute;
  z-index: 4;
  padding: 0.85rem 1.1rem;
  background: rgba(2, 21, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.glass-widget__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.glass-widget__value span {
  color: #7dd3fc;
}

.glass-widget__sub,
.glass-widget__label {
  font-size: 0.72rem;
  color: rgba(240, 246, 252, 0.72);
  margin-top: 0.25rem;
  font-weight: 600;
}

.glass-widget__label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.glass-widget--speed {
  top: 4%;
  right: -2%;
  min-width: 168px;
}

.glass-widget--ping {
  bottom: 32%;
  left: -6%;
}

.glass-widget--uptime {
  top: 38%;
  left: -2%;
  min-width: 140px;
}

.glass-widget--ott {
  bottom: 4%;
  right: 0;
}

.glass-widget--stream {
  bottom: 22%;
  right: -4%;
  max-width: 200px;
}

.float-drift-a {
  animation: float-drift-a 5.5s ease-in-out infinite;
}
.float-drift-b {
  animation: float-drift-b 6s ease-in-out infinite;
}
.float-drift-c {
  animation: float-drift-c 5.2s ease-in-out infinite;
}
.float-drift-d {
  animation: float-drift-d 6.5s ease-in-out infinite;
}
.float-drift-e {
  animation: float-drift-e 5.8s ease-in-out infinite;
}

@keyframes float-drift-a {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-6px, -10px);
  }
}
@keyframes float-drift-b {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, 6px);
  }
}
@keyframes float-drift-c {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5px, 8px);
  }
}
@keyframes float-drift-d {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6px, -6px);
  }
}
@keyframes float-drift-e {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-8px, -5px);
  }
}

.hero-ott-pill--voot {
  background: linear-gradient(135deg, #00b9f1, #5c2d91);
}

.stream-mini {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.stream-mini__play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-cta), #e65100);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

.stream-mini strong {
  display: block;
  font-size: 0.82rem;
  color: #fff;
}

.stream-mini span {
  font-size: 0.72rem;
  color: rgba(240, 246, 252, 0.65);
}

/* Hero status bar */
.hero-status-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 1280px;
  margin: -1rem auto 0;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

.hero-status-bar__item strong {
  color: #fff;
}

.hero-status-bar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  margin-right: 0.35rem;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .hero-status-bar__item--hide-mobile {
    display: none;
  }
  .glass-widget--uptime,
  .glass-widget--stream {
    display: none;
  }
  .hero-visual {
    min-height: 420px;
  }
}

/* --- Trust + telecom widgets --------------------------------------------- */

.trust-premium__inner {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 32px 80px rgba(2, 21, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.telecom-widgets {
  padding: 0 clamp(1rem, 3vw, 2rem) 3rem;
  margin-top: -1rem;
  position: relative;
  z-index: 4;
}

.telecom-widgets__inner {
  display: grid;
  gap: 1rem;
  max-width: 1280px;
  margin-inline: auto;
}

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

.telecom-widget {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 244, 255, 0.9));
  border: 1px solid rgba(11, 96, 176, 0.12);
  box-shadow: 0 16px 40px rgba(2, 21, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.telecom-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(11, 96, 176, 0.12);
}

.telecom-widget__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-electric);
  margin: 0 0 0.85rem;
}

.telecom-widget__row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid rgba(11, 96, 176, 0.08);
}

.telecom-widget__row:last-child {
  border-bottom: none;
}

.telecom-widget__row strong {
  color: var(--navy-deep);
  font-family: var(--font-display);
}

.telecom-widget__row .is-live {
  color: #16a34a;
}

.device-icons {
  display: flex;
  gap: 0.5rem;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.telecom-widget__note {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.quality-meter {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.quality-meter__bar {
  display: block;
  height: 100%;
  width: var(--q, 90%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-electric), #22c55e, var(--orange-cta));
  animation: meter-glow 2.5s ease-in-out infinite;
}

@keyframes meter-glow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}

/* --- Plans: spotlight + bigger typography ---------------------------------- */

.plans-premium__stage {
  position: relative;
  padding: 0.5rem 0 1rem;
}

.plans-spotlight {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
  z-index: 0;
}

.plans-premium__stage:hover .plans-spotlight {
  opacity: 1;
}

.plans-premium__track {
  position: relative;
  z-index: 1;
}

.premium-plan-speed {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0.25rem 0 0.5rem;
}

.premium-plan-speed__num {
  font-size: clamp(4rem, 12vw, 5.25rem) !important;
  line-height: 0.88 !important;
  display: block;
}

.premium-plan-speed__unit {
  padding-bottom: 0 !important;
  font-size: 1rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.premium-plan-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.premium-plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 255, 255, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.premium-plan-card:hover::after {
  opacity: 1;
}

.premium-plan-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(11, 96, 176, 0.2);
}

.premium-plan-card.is-featured {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(11, 96, 176, 0.08));
}

.premium-plan-card.is-featured:hover {
  box-shadow:
    0 32px 64px rgba(255, 122, 0, 0.2),
    0 0 48px rgba(255, 122, 0, 0.15);
}

.premium-plan-perks-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin: 0 0 0.5rem;
}

.plan-device-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.plan-device-more {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted-dark);
}

.section-premium--light .plan-device-more {
  background: #e2e8f0;
  color: #475569;
}

/* Light sections — soft tint not flat white */
.section-premium--light {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(11, 96, 176, 0.06), transparent),
    linear-gradient(180deg, var(--surface-tint) 0%, var(--surface-tint-2) 100%) !important;
  color: var(--navy-deep);
}

.wave-divider {
  color: var(--surface-tint) !important;
}

/* Entertainment — cinematic cards */
.ent-card {
  box-shadow: 0 24px 56px rgba(2, 21, 38, 0.2);
}

.ent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 96, 176, 0.25) 0%, transparent 50%, rgba(255, 122, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.ent-card:hover::before {
  opacity: 1;
}

.ent-card__overlay {
  background: linear-gradient(0deg, rgba(2, 21, 38, 0.96) 0%, rgba(2, 21, 38, 0.4) 50%, rgba(11, 96, 176, 0.15) 100%) !important;
}

.ent-card__icon {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.ent-card h3 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* IPL / stream section */
.section-premium--cinema {
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 122, 0, 0.12), transparent),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(11, 96, 176, 0.3), transparent),
    var(--navy-deep) !important;
}

.stream-ui-mock {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stream-ui-mock__thumb {
  transition: transform 0.35s ease;
}

.stream-ui-mock__thumb:hover {
  transform: scale(1.05) translateY(-4px);
}

/* Lifestyle tiles — cinematic */
.lifestyle-tile {
  box-shadow: 0 16px 40px rgba(2, 21, 38, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lifestyle-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 21, 38, 0.85), transparent 55%);
  pointer-events: none;
}

.lifestyle-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 56px rgba(11, 96, 176, 0.18);
}

.lifestyle-tile__cap {
  z-index: 2;
  background: transparent !important;
}

/* Process steps on tinted bg */
.process-step {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

/* CTA finale */
.cta-premium {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 2rem !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-premium__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: blob-drift 10s ease-in-out infinite;
}

.cta-premium__orb--1 {
  width: 200px;
  height: 200px;
  top: -40px;
  left: 10%;
  background: rgba(255, 122, 0, 0.35);
}

.cta-premium__orb--2 {
  width: 180px;
  height: 180px;
  bottom: -30px;
  right: 15%;
  background: rgba(11, 96, 176, 0.45);
  animation-delay: -3s;
}

.cta-premium h2 {
  position: relative;
  font-size: clamp(1.85rem, 4vw, 2.5rem) !important;
}

.cta-premium p,
.cta-premium__actions {
  position: relative;
}

/* Staggered reveals */
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.entertainment-grid .ent-card:nth-child(1) {
  transition-delay: 0s;
}
.entertainment-grid .ent-card:nth-child(2) {
  transition-delay: 0.1s;
}
.entertainment-grid .ent-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* Section overlap depth */
#plans {
  margin-top: -2rem;
  padding-top: 6rem !important;
}

.trust-premium + .telecom-widgets + #plans .section-premium__wrap {
  padding-top: 0.5rem;
}
