/* IPTV — sobre, moins “landing IA” sur PC ; mobile reste compact */

.lkz-iptv-page {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.iptv-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 4rem;
}

@media (min-width: 900px) {
  .iptv-wrap {
    padding: 1.25rem 2.5rem 5rem;
  }
}

/* ── Top : intro + offres ── */
.iptv-top {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .iptv-top {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem 3rem;
    align-items: center;
    min-height: calc(100vh - 7.5rem);
    padding-top: 0.5rem;
  }
}

.iptv-intro {
  text-align: center;
}

@media (min-width: 960px) {
  .iptv-intro {
    text-align: left;
    max-width: 28rem;
  }

  .iptv-intro .hero-wordmark {
    font-size: clamp(3.4rem, 6vw, 5rem);
    line-height: 0.95;
  }

  .iptv-intro .hero-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 24rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
  }

  .iptv-intro .iptv-hero-actions {
    justify-content: flex-start;
  }

  /* Sur PC, le bloc offres est déjà visible → CTA secondaire inutile */
  .iptv-intro .iptv-btn--primary[href="#offres"] {
    display: none;
  }
}

.iptv-intro .hero-sub {
  margin: 1rem auto 0;
  max-width: 26rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.iptv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.35rem;
}

.iptv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0 1.15rem;
  border-radius: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, filter 0.18s;
}

.iptv-btn--primary {
  background: hsl(var(--primary));
  color: #fff;
  border: 1px solid transparent;
}

.iptv-btn--primary:hover {
  filter: brightness(1.08);
}

.iptv-btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
}

.iptv-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.iptv-btn--block {
  width: 100%;
  margin-top: 0.85rem;
  min-height: 2.9rem;
}

/* Bloc achat */
.iptv-buy {
  padding: 1.15rem 1.1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.42);
}

@media (min-width: 960px) {
  .iptv-buy {
    padding: 1.35rem 1.35rem 1.45rem;
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.14);
  }
}

.iptv-buy__head {
  margin-bottom: 1rem;
}

.iptv-buy__head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.iptv-buy__head p {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.iptv-includes {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

@media (min-width: 520px) and (max-width: 959px) {
  .iptv-includes {
    grid-template-columns: 1fr 1fr;
  }
}

.iptv-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.iptv-includes li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  border-radius: 1px;
  background: hsl(var(--primary));
}

.iptv-plans {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.iptv-plan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.iptv-plan:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
}

.iptv-plan.is-selected {
  border-color: hsl(var(--primary));
  background: hsla(var(--primary) / 0.12);
}

.iptv-plan.is-popular {
  padding-top: 1.05rem;
}

.iptv-plan__tag {
  position: absolute;
  top: -0.4rem;
  left: 0.85rem;
  padding: 0.12rem 0.45rem;
  border-radius: 0.25rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: hsl(var(--primary));
  white-space: nowrap;
}

.iptv-plan__dur {
  font-size: 0.9rem;
  font-weight: 650;
}

.iptv-plan__dur em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.75rem;
  color: #c4b5fd;
  margin-left: 0.25rem;
}

.iptv-plan__price {
  font-size: 1.08rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.iptv-plans-note {
  margin: 0.7rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Sections bas de page ── */
.iptv-section {
  margin-top: clamp(2.5rem, 6vw, 3.75rem);
}

.iptv-section__bar {
  margin-bottom: 1.15rem;
}

.iptv-section__bar-inner {
  margin: 0;
}

.iptv-section__bar h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.iptv-section__bar p {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

.iptv-why {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 560px) {
  .iptv-why {
    grid-template-columns: 1fr;
  }
}

.iptv-why article {
  padding: 1rem 0.15rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 561px) {
  .iptv-why article:nth-child(odd) {
    padding-right: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .iptv-why article:nth-child(even) {
    padding-left: 1.25rem;
  }
}

.iptv-why h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.iptv-why p {
  margin: 0.4rem 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.iptv-channels {
  margin-top: 1.75rem;
  text-align: center;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.iptv-channels__label {
  margin: 0 0 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.iptv-channels__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.35rem;
  justify-content: center;
  align-items: center;
}

.iptv-channels__row img {
  height: 30px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.9;
}

.iptv-channels__more {
  font-size: 0.8rem;
  font-weight: 700;
  color: #c4b5fd;
}

.iptv-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 800px) {
  .iptv-quotes {
    grid-template-columns: 1fr;
  }
}

.iptv-quotes blockquote {
  margin: 0;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 801px) {
  .iptv-quotes blockquote {
    padding: 1.05rem 1.15rem 1.05rem 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .iptv-quotes blockquote:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 1.15rem;
  }

  .iptv-quotes blockquote:nth-child(2) {
    padding-left: 1.15rem;
  }
}

.iptv-quotes p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.iptv-quotes footer {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
}

.iptv-faq {
  max-width: 40rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.iptv-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.iptv-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.iptv-faq summary::after {
  content: "+";
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.iptv-faq details[open] summary::after {
  content: "–";
  color: rgba(255, 255, 255, 0.7);
}

.iptv-faq details p {
  margin: 0;
  padding: 0 0 1rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.iptv-end {
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.iptv-end h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.iptv-end p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.iptv-end .iptv-hero-actions {
  margin-top: 1.2rem;
}
