/* =========================
   IPTV page (abon/iptv.html)
   ========================= */

.iptv{
  padding: 44px;
}

/* Free block (like other blocks) */
.iptv-free{
  max-width: 900px;
  margin: 0 auto 22px;

  background: linear-gradient(120deg, #ffffff, #f2f7ff);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  padding: 16px 18px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: var(--ink);
  font-weight: 800;

  transition: transform .18s ease, box-shadow .18s ease;
}

.iptv-free:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(2, 44, 95, 0.14);
}

/* content blocks inside one section-card */
.iptv-block{
  max-width: 900px;
  margin: 0 auto 22px;

  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  padding: 26px 28px;
}

.iptv-block:last-of-type{
  margin-bottom: 0;
}

.iptv-title{
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 900;
  color: var(--ink);
}

.iptv-subtitle{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}

.iptv-text{
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 500;
}

.iptv-text:last-child{
  margin-bottom: 0;
}

/* benefits list */
.iptv-list{
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 10px;
}

.iptv-list li{
  position: relative;
  padding-left: 28px;

  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
}

.iptv-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--blue);
  font-weight: 900;
}

/* instruction cards */
.iptv-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.iptv-card{
  background: rgba(0,108,255,.03);
  border: 1px solid rgba(0,44,95,.08);
  border-radius: var(--radius);
  padding: 20px 20px 18px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.iptv-card:hover{
  transform: translateY(-2px);
  background: rgba(0,108,255,.05);
  box-shadow: 0 18px 36px rgba(2,44,95,.10);
}

.iptv-card__head{
  display: flex;
  align-items: center;
  gap: 10px;
}

.iptv-card__ico{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(0,108,255,.10);
  border: 1px solid rgba(0,108,255,.18);
}

.iptv-card__title{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
}

.iptv-card__text{
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-weight: 500;
}

.iptv-card__btn{
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* promo banner */
.iptv-promo{
  max-width: 900px;
  margin: 22px auto 0;

  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  overflow: hidden;
}

.iptv-promo img{
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 900px){
  .iptv{
    padding: 26px 18px;
  }

  .iptv__badge{
    margin-bottom: 18px;
  }

  .iptv-block{
    padding: 20px 18px;
  }

  .iptv-title{
    font-size: 22px;
  }

  .iptv-subtitle{
    font-size: 18px;
  }

  .iptv-cards{
    grid-template-columns: 1fr;
  }
}

/* Icons in titles */
.iptv-title{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.iptv-title__ico{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(0,108,255,.10);
  border: 1px solid rgba(0,108,255,.18);
}

.iptv-subtitle{
  display: flex;
  align-items: center;
  gap: 10px;
}

.iptv-subtitle__ico{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: rgba(0,108,255,.10);
  border: 1px solid rgba(0,108,255,.18);
}


/* ==== IPTV title icons (SVG) ==== */
.iptv-title,
.iptv-subtitle,
.iptv-card__title{
  display: flex;
  align-items: center;
  gap: 12px;
}

.iptv-ico{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(0,108,255,.08);
  border: 1px solid rgba(0,108,255,.16);
}

/* smaller icon for cards */
.iptv-ico--sm{
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

/* IMPORTANT: recolor SVG via CSS */
.iptv-ico svg{
  width: 18px;
  height: 18px;
  display: block;
  fill: var(--blue); /* будет всегда синяя */
}

/* optional subtle hover if you want on the whole block */
.iptv-block:hover .iptv-ico{
  background: rgba(0,108,255,.12);
}