/* v1.3.28 — Hero Visual Authority Fix
   Corrects the visible result from v1.3.27: right TV block still felt too small,
   proof cards too weak, and hero lacked high-end depth at full-page scale.
   This is scoped to the hero only. */

.hero {
  min-height: clamp(620px, 78vh, 790px);
  display: flex;
  align-items: center;
  padding-top: clamp(76px, 6vw, 116px);
  padding-bottom: clamp(82px, 6vw, 118px);
  background:
    radial-gradient(circle at 63% 32%, rgba(255, 34, 45, .58), transparent 30%),
    radial-gradient(circle at 22% 72%, rgba(255, 34, 45, .18), transparent 30%),
    linear-gradient(102deg, #050506 0%, #110102 26%, #370306 57%, #07070a 100%);
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.032), transparent 17%),
    radial-gradient(circle at 62% 48%, rgba(255,255,255,.075), transparent 34%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 1px, transparent 1px 34px);
}

.hero::after {
  left: 67%;
  top: 48%;
  width: min(980px, 70vw);
  height: min(620px, 50vw);
  background: radial-gradient(circle, rgba(255, 27, 38, .28), transparent 66%);
  filter: blur(18px);
}

.hero-grid {
  width: 100%;
  grid-template-columns: minmax(420px, .86fr) minmax(640px, 1.14fr);
  gap: clamp(48px, 5vw, 86px);
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(66px, 6.1vw, 108px);
  line-height: .92;
  letter-spacing: -.058em;
  margin-bottom: 22px;
}

.hero-copy {
  max-width: 610px;
  font-size: 17px;
  line-height: 1.58;
  margin-bottom: 26px;
}

.proofs {
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.proof {
  min-height: 78px;
  border-radius: 18px;
  padding: 13px 12px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 31, 43, .20), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.13);
}

.proof-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.proof strong {
  font-size: 15px;
}

.proof small {
  font-size: 12px;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  min-height: 58px;
  padding-inline: 28px;
}

.hero-actions .btn-primary {
  min-width: 252px;
}

/* Main visible correction: make the right IPTV screen dominate more. */
.tv-stage {
  min-height: 560px;
  justify-content: flex-end;
}

.tv-stage::before {
  inset: 2px -16px 54px -8px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 58% 18%, rgba(255, 27, 38, .28), transparent 27%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.015));
}

.screen {
  max-width: 860px;
  width: 108%;
  margin-right: -4%;
  transform: perspective(1800px) rotateY(-2.4deg) rotateX(1deg) translateY(-12px);
  border-radius: 28px;
  padding: 8px;
}

.screen-inner {
  min-height: 390px;
}

.tv-card {
  min-height: 172px;
}

.channels .channel {
  min-height: 70px;
}

.screen-foot {
  bottom: 16px;
}

.tv-box {
  left: 4px;
  bottom: 54px;
}

.deal-float {
  right: -18px;
  bottom: -10px;
  grid-template-columns: 232px 1fr;
}

.deal-price {
  transform: rotate(-4deg) translateY(-6px);
}

.deal-price strong {
  font-size: 72px;
}

.deal-list {
  min-width: 270px;
}

/* Avoid hero looking separated by a hard block. */
.hero + .pricing-section,
.hero + section {
  box-shadow: 0 -1px 0 rgba(255,255,255,.04), inset 0 1px 0 rgba(0,0,0,.03);
}

@media (max-width: 1380px) {
  .hero-grid {
    grid-template-columns: minmax(380px, .88fr) minmax(560px, 1.12fr);
    gap: 46px;
  }

  .screen {
    max-width: 760px;
    width: 106%;
  }

  .screen-inner {
    min-height: 340px;
  }

  .tv-card {
    min-height: 146px;
  }

  .channel {
    min-height: 62px;
  }

  .deal-float {
    right: -10px;
    grid-template-columns: 200px 1fr;
  }

  .deal-price strong {
    font-size: 60px;
  }

  .deal-list {
    min-width: 238px;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

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

  .screen {
    width: 100%;
    max-width: 820px;
    margin-right: 0;
    transform: none;
  }

  .tv-stage {
    min-height: 560px;
    justify-content: center;
  }

  .deal-float {
    right: 18px;
    bottom: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 68px);
  }

  .proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tv-stage {
    min-height: 500px;
  }

  .screen {
    width: 100%;
  }

  .screen-inner {
    min-height: 0;
  }

  .deal-float {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .deal-list {
    min-width: 0;
  }
}

@media (max-width: 540px) {
  .proofs {
    grid-template-columns: 1fr;
  }

  .tv-stage {
    min-height: 430px;
  }
}
