/* Televízia — DALNet (aligned with internet.php style) */
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@700;800&display=swap");

html {
  scroll-behavior: smooth;
}

.main_right_bg {
  display: none !important;
}

body {
  background: #e6eef7;
}

.tvp {
  color: #14233d;
  overflow-x: clip; /* clip (nie hidden) — inak sticky scroll nefunguje */
  background: #e6eef7;
}

.tvp *,
.tvp *::before,
.tvp *::after {
  box-sizing: border-box;
}

.tvp-wrap {
  width: min(90vw, 1180px);
  margin: 0 auto;
}

.tvp-eyebrow {
  margin: 0 0 12px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3e9fff;
}

.tvp-icon,
.tvp-back__icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ——— Hero (same rhythm as internet) ——— */
.tvp-hero {
  position: relative;
  min-height: clamp(480px, 68vh, 640px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: calc(8.385vw + 72px) 0 0;
  color: #fff;
  isolation: isolate;
}

.tvp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.tvp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.tvp-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(12, 28, 52, 0.82) 0%, rgba(12, 28, 52, 0.62) 36%, rgba(12, 28, 52, 0.28) 62%, rgba(12, 28, 52, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 28, 52, 0.35) 0%, transparent 45%);
}

.tvp-hero__frame {
  position: relative;
  z-index: 2;
  width: min(90vw, 1180px);
  margin: 0 auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vw, 40px);
  padding: clamp(28px, 3.5vw, 40px) 0;
  min-height: 0;
  animation: tvp-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tvp-hero h1 {
  margin: 0 0 16px;
  max-width: none;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.tvp-hero__sub {
  display: block;
  margin-top: 10px;
  max-width: 22em;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.tvp-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
}

.tvp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  margin-top: 28px;
}

.tvp-link-soft {
  color: rgba(255, 255, 255, 0.88);
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tvp-link-soft:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.tvp-hero__facts {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.tvp-hero__facts li {
  position: relative;
  padding: 0 22px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.tvp-hero__facts li:first-child {
  padding-left: 0;
}

.tvp-hero__facts li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.28);
}

.tvp-hero__perks {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.tvp-hero__perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.tvp-hero__perk-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #2560e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.tvp-hero__perk-icon .dalnet-icon,
.tvp-hero__perk-svg {
  width: 26px;
  height: 26px;
  color: #2560e6;
  stroke: currentColor;
  fill: none;
  stroke-width: 0.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tvp-hero__perk strong {
  display: block;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.25;
  color: #fff;
}

.tvp-hero__perk > span:not(.tvp-hero__perk-icon) {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.tvp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tvp-back:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.tvp-back__icon {
  transform: rotate(180deg);
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

/* ——— Buttons ——— */
.tvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  border: 0;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tvp-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.tvp-btn--light {
  background: #fff;
  color: #14345f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.tvp-btn--light:hover {
  background: #eef5ff;
  color: #14345f;
}

.tvp-btn--on-blue {
  background: #fff;
  color: #1a4f9c;
  box-shadow: 0 12px 28px rgba(10, 40, 90, 0.22);
}

.tvp-btn--on-blue:hover {
  background: #f3f8ff;
  color: #1a4f9c;
}

.tvp-btn--ghost {
  background: #fff;
  color: #2560e6;
  border: 1.5px solid rgba(37, 96, 230, 0.45);
}

.tvp-btn--ghost:hover {
  background: #eef5ff;
  color: #1a4f9c;
  border-color: #2560e6;
}

.tvp-btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.tvp-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: #fff;
}

.tvp-btn--solid {
  background: #3e9fff;
  color: #fff;
}

.tvp-btn--solid:hover {
  background: #2f8ff0;
  color: #fff;
}

/* ——— How it works + platform cards ——— */
.tvp-flow {
  width: min(92vw, 1180px);
  margin: clamp(56px, 7vw, 88px) auto;
  scroll-margin-top: calc(8.385vw + 96px);
}

.tvp-flow__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.tvp-how h2,
.tvp-platforms h2,
.tvp-local h2,
.tvp-close h2,
.tvp-packages__head h2,
.tvp-device-note h2,
.tvp-stb h2,
.tvp-faq > h2,
.tvp-detail-cta h2 {
  margin: 0 0 14px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #14345f;
}

.tvp-flow__inner > .tvp-how > h2,
.tvp-flow__inner > .tvp-platforms > h2 {
  min-height: calc(2 * 1.08em);
}

.tvp-how__intro,
.tvp-platforms__lead,
.tvp-local__lead {
  margin: 0;
  max-width: 34rem;
  color: #5a6b84;
  font-size: 16px;
  line-height: 1.6;
}

.tvp-how__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(37, 96, 230, 0.14);
}

.tvp-how__list li {
  display: grid;
  grid-template-columns: 36px 18px 46px minmax(0, 1fr);
  gap: 12px 12px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(37, 96, 230, 0.14);
  position: relative;
}

.tvp-how__num {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #3e9fff;
  padding-top: 6px;
  line-height: 1;
}

.tvp-how__rail {
  position: relative;
  width: 18px;
  height: 100%;
  min-height: 42px;
  align-self: stretch;
  justify-self: center;
}

.tvp-how__rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(62, 159, 255, 0.35);
  transform: translateX(-50%);
}

.tvp-how__list li:first-child .tvp-how__rail::before {
  top: 10px;
}

.tvp-how__list li:last-child .tvp-how__rail::before {
  bottom: auto;
  height: 10px;
}

.tvp-how__rail::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3e9fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px #e6eef7;
}

.tvp-how__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f4f9c;
  background: none;
}

.tvp-how__icon .dalnet-icon {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 0.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tvp-how__copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 17px;
  color: #14345f;
}

.tvp-how__copy em {
  display: block;
  font-style: normal;
  color: #5a6b84;
  font-size: 14px;
  line-height: 1.5;
}

.tvp-platforms {
  scroll-margin-top: calc(8.385vw + 110px);
}

.tvp-platforms__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.tvp-pcard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.95fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 36px rgba(20, 52, 95, 0.1);
  border: 1px solid rgba(37, 96, 230, 0.08);
  border-top-width: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tvp-pcard:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(20, 52, 95, 0.14);
}

.tvp-pcard--sweet {
  border-top-color: #e85a2a;
}

.tvp-pcard--sled {
  border-top-color: #1aa8b8;
}

.tvp-pcard__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.tvp-pcard__brand {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.tvp-pcard--sweet .tvp-pcard__brand {
  color: #d9481f;
}

.tvp-pcard--sled .tvp-pcard__brand {
  color: #1494a3;
}

.tvp-pcard__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.tvp-pcard__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #5a6b84;
  font-family: SourceSansBold, Arial, sans-serif;
}

.tvp-pcard__meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  background: none;
}

.tvp-pcard--sweet .tvp-pcard__meta-icon {
  color: #d9481f;
  border: 0;
}

.tvp-pcard--sled .tvp-pcard__meta-icon {
  color: #1494a3;
  border: 0;
}

.tvp-pcard__meta-icon .dalnet-icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 0.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tvp-pcard__meta-icon .dalnet-icon circle[r="1"] {
  fill: currentColor;
  stroke: none;
}

.tvp-pcard__cta {
  margin-top: auto;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
}

.tvp-pcard--sweet .tvp-pcard__cta {
  color: #d9481f;
}

.tvp-pcard--sled .tvp-pcard__cta {
  color: #1494a3;
}

.tvp-pcard__media {
  min-height: 160px;
  background: #eef3f8;
  overflow: hidden;
}

.tvp-pcard__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ——— Local / devices ——— */
.tvp-local {
  width: min(90vw, 1180px);
  margin: 0 auto clamp(56px, 7vw, 88px);
}

.tvp-local__inner {
  max-width: 52rem;
}

.tvp-local h2 {
  max-width: 24ch;
}

.tvp-local__points {
  list-style: none;
  margin: 36px 0 0;
  padding: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid rgba(37, 96, 230, 0.16);
}

.tvp-local__points li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tvp-local__points strong {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 17px;
  color: #14345f;
}

.tvp-local__points span {
  color: #5a6b84;
  font-size: 15px;
  line-height: 1.45;
}

/* ——— Close CTA ——— */
.tvp-close {
  width: min(90vw, 1180px);
  margin: 0 auto clamp(64px, 8vw, 100px);
}

.tvp-close__inner {
  padding: clamp(40px, 5vw, 56px);
  border-radius: 24px;
  background: linear-gradient(135deg, #3e9fff 0%, #287ee7 48%, #1f63d0 100%);
  box-shadow: 0 24px 50px rgba(37, 96, 230, 0.28);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.tvp-close--split .tvp-close__inner {
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 44px);
  background:
    radial-gradient(ellipse 55% 80% at 88% 45%, rgba(255, 255, 255, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 40% 60% at 70% 80%, rgba(120, 200, 255, 0.25) 0%, transparent 55%),
    linear-gradient(120deg, #2560e6 0%, #2f7ff0 42%, #3e9fff 100%);
}

.tvp-close__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.tvp-close__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.tvp-close h2 {
  color: #fff;
  margin: 0 0 12px;
}

.tvp-close--split h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
}

.tvp-close p {
  margin: 0 0 28px;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.5;
}

.tvp-close--split .tvp-close__copy p {
  margin-bottom: 22px;
  max-width: 32rem;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.tvp-close--split .tvp-btn--on-blue {
  min-height: 50px;
  padding: 0 28px;
  background: #fff;
  color: #2560e6;
  box-shadow: 0 10px 24px rgba(10, 40, 90, 0.2);
}

.tvp-close--split .tvp-btn--on-blue:hover {
  background: #f3f8ff;
  color: #1a4f9c;
}

.tvp-close__note {
  margin: 14px 0 0 !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.tvp-close__media {
  position: relative;
  min-height: 220px;
}

.tvp-close__media img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(8, 30, 80, 0.22));
}

.tvp-legal {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.45;
  max-width: 40rem;
}

.tvp-footnote {
  margin: clamp(28px, 4vw, 40px) auto clamp(28px, 4vw, 40px);
  max-width: 920px;
  padding: 0 12px;
  text-align: center;
  color: #8a97ab;
  font-size: 13px;
  line-height: 1.5;
}

/* ——— Detail body ——— */
.tvp-detail-body {
  padding: clamp(40px, 5vw, 56px) 0 0;
}

.tvp-packages {
  margin-bottom: clamp(36px, 4vw, 48px);
  scroll-margin-top: calc(8.385vw + 110px);
}

.tvp-packages__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: Kanit, SourceSansBold, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #14345f;
  line-height: 1.1;
}

.tvp-packages__lead {
  margin: 0 auto 28px;
  max-width: 36rem;
  text-align: center;
  color: #5a6b84;
  font-size: 16px;
  line-height: 1.45;
}

/* Sweet packages */
.tvp-sweet-pack {
  margin: 0 auto;
  max-width: 1100px;
}

.tvp-sweet-pack__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.tvp-sweet-pack__tab-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 16px;
  border: 2px solid rgba(20, 52, 95, 0.12);
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 52, 95, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tvp-sweet-pack__tab-card--m.is-active,
.tvp-sweet-pack__tab-card--m:hover {
  border-color: #e53935;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.12);
}

.tvp-sweet-pack__tab-card--l.is-active,
.tvp-sweet-pack__tab-card--l:hover {
  border-color: #2ec4b6;
  box-shadow: 0 10px 24px rgba(46, 196, 182, 0.14);
}

.tvp-sweet-pack__tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 96px;
  padding: 28px 16px 12px;
  border: 0;
  border-radius: 14px 14px 0 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #14345f;
}

.tvp-sweet-pack__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 1;
}

.tvp-sweet-pack__plan-label {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(28px, 3.6vw, 36px);
  line-height: 1.1;
  color: #14345f;
  letter-spacing: -0.02em;
}

.tvp-sweet-pack__plan-letter {
  font-family: Kanit, SourceSansBold, Arial, sans-serif;
  font-weight: 800;
}

.tvp-sweet-pack__tab-card--m .tvp-sweet-pack__plan-letter { color: #e53935; }
.tvp-sweet-pack__tab-card--l .tvp-sweet-pack__plan-letter { color: #1aa89c; }

.tvp-sweet-pack__price {
  margin-top: 8px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 18px;
}

.tvp-sweet-pack__price small {
  font-family: SourceSans, Arial, sans-serif;
  font-size: 14px;
  color: #5a6b84;
}

.tvp-sweet-pack__compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf2ff 100%);
  color: #1a4f9c;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(37, 96, 230, 0.18);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.tvp-sweet-pack__compare:hover {
  background: linear-gradient(180deg, #eaf2ff 0%, #dfeaff 100%);
  color: #14345f;
  box-shadow: inset 0 0 0 1px rgba(37, 96, 230, 0.32);
  transform: translateY(-1px);
}

.tvp-sweet-pack__compare-icon {
  display: inline-flex;
  color: #2560e6;
}

.tvp-sweet-pack__compare-icon .dalnet-icon {
  width: 18px;
  height: 18px;
}

.tvp-sweet-pack__tab-card--m.is-active .tvp-sweet-pack__compare {
  background: linear-gradient(180deg, #fff5f5 0%, #ffeaea 100%);
  color: #b71c1c;
  box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.22);
}

.tvp-sweet-pack__tab-card--m.is-active .tvp-sweet-pack__compare:hover {
  background: linear-gradient(180deg, #ffeaea 0%, #ffdede 100%);
  box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.35);
}

.tvp-sweet-pack__tab-card--m.is-active .tvp-sweet-pack__compare-icon {
  color: #e53935;
}

.tvp-sweet-pack__tab-card--l.is-active .tvp-sweet-pack__compare {
  background: linear-gradient(180deg, #f0fffc 0%, #e4faf6 100%);
  color: #0f766e;
  box-shadow: inset 0 0 0 1px rgba(26, 168, 156, 0.28);
}

.tvp-sweet-pack__tab-card--l.is-active .tvp-sweet-pack__compare:hover {
  background: linear-gradient(180deg, #e4faf6 0%, #d5f5ef 100%);
  box-shadow: inset 0 0 0 1px rgba(26, 168, 156, 0.4);
}

.tvp-sweet-pack__tab-card--l.is-active .tvp-sweet-pack__compare-icon {
  color: #1aa89c;
}

.tvp-sweet-pack__panel {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 52, 95, 0.1);
  border: 1px solid rgba(20, 52, 95, 0.08);
}

.tvp-sweet-pack__columns {
  display: grid;
  grid-template-columns: minmax(250px, 0.88fr) minmax(0, 1.45fr);
  align-items: stretch;
}

.tvp-sweet-pack__side {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: #f7fafc;
  border-right: 1px solid rgba(20, 52, 95, 0.08);
}

.tvp-sweet-pack__feats {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.tvp-sweet-pack__feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #14345f;
  font-size: 15px;
  line-height: 1.35;
}

.tvp-sweet-pack__feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #2560e6;
}

.tvp-sweet-pack__feat-icon .dalnet-icon {
  width: 22px;
  height: 22px;
}

.tvp-sweet-pack__feat-icon--hd {
  border-radius: 8px;
  background: #e8f0ff;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #2560e6;
}

.tvp-sweet-pack__order {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: auto;
  min-height: 48px;
  border-radius: 12px;
  background: #fff;
  color: #14345f;
  border: 0;
  box-shadow: 0 8px 20px rgba(20, 52, 95, 0.12);
  font-family: SourceSansBold, Arial, sans-serif;
}

.tvp-sweet-pack__order:hover {
  background: #fff;
  color: #14345f;
  box-shadow: 0 10px 24px rgba(20, 52, 95, 0.16);
}

.tvp-sweet-pack__channels-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 18px 18px;
  background: #fff;
}

.tvp-sweet-pack__channels-title {
  margin: 0 0 14px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 18px;
  color: #14345f;
}

.tvp-sweet-pack__channels {
  flex: 1;
  overflow: auto;
  max-height: 460px;
  padding-right: 4px;
}

.tvp-sweet-pack__channels:not(.is-active) {
  display: none;
}

.tvp-sweet-pack__channels-empty {
  margin: 0;
  padding: 24px 8px;
  color: #62718c;
  font-size: 14px;
}

.tvp-sweet-pack__cat + .tvp-sweet-pack__cat {
  margin-top: 16px;
}

.tvp-sweet-pack__cat-title {
  margin: 0 0 10px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #5a6b84;
}

.tvp-sweet-pack__channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  align-content: start;
}

.tvp-sweet-pack__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 104px;
  height: 100%;
  padding: 10px 6px 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f7f9fc;
  text-align: center;
  box-sizing: border-box;
}

.tvp-sweet-pack__channel img,
.tvp-sweet-pack__channel-fallback {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.tvp-sweet-pack__channel-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e8eef8;
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
}

.tvp-sweet-pack__channel-fallback[hidden] {
  display: none !important;
}

.tvp-sweet-pack__channel-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 2.6em;
  font-size: 11px;
  line-height: 1.3;
  color: #253047;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Sweet M/L compare table */
.tvp-sweet-table {
  margin: 8px auto 0;
  max-width: 920px;
  padding: clamp(22px, 3vw, 36px) clamp(16px, 2.5vw, 28px) clamp(28px, 3.5vw, 40px);
  border-radius: 20px;
  background: #fff;
  color: #14345f;
  box-shadow: 0 14px 36px rgba(20, 52, 95, 0.1);
  border: 1px solid rgba(20, 52, 95, 0.08);
}

.tvp-sweet-table__plans,
.tvp-sweet-table__actions,
.tvp-sweet-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: 12px 16px;
  align-items: center;
}

.tvp-sweet-table__plan-spacer {
  min-height: 1px;
}

.tvp-sweet-table__plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 28px 14px 18px;
  border-radius: 12px;
  border: 2px solid rgba(20, 52, 95, 0.14);
  background: #f7fafc;
  text-align: center;
}

.tvp-sweet-table__plan--m {
  border-color: #e53935;
  background: #fff8f8;
}

.tvp-sweet-table__plan--l {
  border-color: #2ec4b6;
  background: #f3fcfb;
}

.tvp-sweet-table__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tvp-sweet-table__code {
  font-family: Kanit, SourceSansBold, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #14345f;
}

.tvp-sweet-table__price {
  margin-top: 6px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  color: #14345f;
}

.tvp-sweet-table__promo {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.2;
}

.tvp-sweet-table__plan--m .tvp-sweet-table__promo {
  color: #d32f2f;
}

.tvp-sweet-table__plan--l .tvp-sweet-table__promo {
  color: #1aa89c;
}

.tvp-sweet-table__rows {
  margin-top: 8px;
}

.tvp-sweet-table__row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(20, 52, 95, 0.1);
}

.tvp-sweet-table__row:last-child {
  border-bottom: 0;
}

.tvp-sweet-table__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  color: #3a4d68;
  font-size: 15px;
  line-height: 1.4;
}

.tvp-sweet-table__compare {
  appearance: none;
  border: 1px solid rgba(37, 96, 230, 0.35);
  border-radius: 999px;
  background: #fff;
  color: #2560e6;
  cursor: pointer;
  padding: 4px 12px;
  font: inherit;
  font-size: 12px;
  line-height: 1.2;
}

.tvp-sweet-table__compare:hover {
  background: #eef4ff;
}

.tvp-sweet-table__cell {
  text-align: center;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #14345f;
}

.tvp-sweet-table__check {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: #2560e6;
}

.tvp-sweet-table__actions {
  margin-top: 22px;
}

.tvp-sweet-table__order {
  justify-self: center;
  min-width: 140px;
  text-align: center;
}

.tvp-sweet-table .tvp-btn--light {
  background: #2560e6;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 96, 230, 0.22);
}

.tvp-sweet-table .tvp-btn--light:hover {
  background: #1a4f9c;
  color: #fff;
}

.tvp-sweet-table .tvp-btn--ghost-light {
  border: 1px solid rgba(37, 96, 230, 0.35);
  background: #fff;
  color: #2560e6;
}

.tvp-sweet-table .tvp-btn--ghost-light:hover {
  background: #eef4ff;
  color: #1a4f9c;
}

/* ——— Hlavné balíčky: taby + kanály ——— */
.tvp-main-pkg {
  margin-top: 4px;
}

.tvp-main-pkg__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0 auto 16px;
  max-width: 920px;
  border-bottom: 1px solid rgba(20, 52, 95, 0.12);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.tvp-main-pkg__tabs::-webkit-scrollbar {
  display: none;
}

.tvp-main-pkg__tab {
  flex: 1 1 0;
  min-width: max-content;
  margin: 0 0 -1px;
  padding: 12px 16px 14px;
  border: 0;
  border-right: 1px solid rgba(20, 52, 95, 0.1);
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #7a8aa3;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  white-space: nowrap;
  cursor: pointer;
}

.tvp-main-pkg__tab:last-child {
  border-right: 0;
}

.tvp-main-pkg__tab.is-active {
  color: #2560e6;
  border-bottom-color: #2560e6;
}

.tvp-main-pkg__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.7fr);
  gap: 0;
  min-height: 420px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(37, 96, 230, 0.1);
  box-shadow: 0 14px 32px rgba(20, 52, 95, 0.06);
  /* visible — tip o kanáli nesmie byť orezaný overflow:hidden */
  overflow: visible;
}

.tvp-main-pkg__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid rgba(37, 96, 230, 0.1);
}

.tvp-main-pkg__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 10px;
}

.tvp-main-pkg__summary {
  margin: 0;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  color: #2560e6;
}

.tvp-main-pkg__media {
  display: inline-flex;
  gap: 6px;
}

.tvp-main-pkg__media button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #eef3fa;
  color: #62718c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tvp-main-pkg__media button.is-active {
  background: #2560e6;
  color: #fff;
}

.tvp-main-pkg__media button svg {
  width: 18px;
  height: 18px;
}

.tvp-main-pkg__channels {
  flex: 1;
  overflow: auto;
  max-height: 460px;
  padding: 8px 14px 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  align-content: start;
  align-items: stretch;
}

.tvp-main-pkg__channels.is-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #62718c;
  font-size: 14px;
}

.tvp-main-pkg__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 104px;
  height: 100%;
  padding: 10px 6px 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f7f9fc;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.tvp-main-pkg__item:hover,
.tvp-main-pkg__item.is-tip-open {
  border-color: #93c5fd;
  background: #eff6ff;
  transform: translateY(-1px);
}

.tvp-main-pkg__item img,
.tvp-main-pkg__fallback {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.tvp-main-pkg__fallback {
  border-radius: 8px;
  background: #eef6ff;
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tvp-main-pkg__item-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 2.6em;
  font-size: 11px;
  line-height: 1.3;
  color: #253047;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.tvp-main-pkg__tip {
  position: absolute;
  z-index: 30;
  width: min(260px, calc(100% - 24px));
  padding: 12px 14px;
  border-radius: 12px;
  background: #14345f;
  color: #fff;
  box-shadow: 0 12px 28px rgba(10, 30, 70, 0.28);
  pointer-events: none;
  --tvp-tip-arrow-x: 50%;
}

.tvp-main-pkg__tip::after {
  content: "";
  position: absolute;
  left: var(--tvp-tip-arrow-x);
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: #14345f;
  transform: translateX(-50%) rotate(45deg);
}

.tvp-main-pkg__tip.is-below::after {
  top: -6px;
  bottom: auto;
}

.tvp-main-pkg__tip-title {
  display: block;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
}

.tvp-main-pkg__tip-audio,
.tvp-main-pkg__tip-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.tvp-main-pkg__tip-audio {
  margin-bottom: 4px;
}

.tvp-main-pkg__tip-foot {
  margin-top: 8px;
}

.tvp-main-pkg__tip-hd {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(62, 159, 255, 0.25);
  color: #9fd0ff;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 11px;
}

.tvp-main-pkg__empty {
  grid-column: 1 / -1;
  margin: 24px 0;
  text-align: center;
  color: #62718c;
  font-size: 14px;
}

.tvp-main-pkg__side {
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fc 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tvp-main-pkg__feat {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(37, 96, 230, 0.1);
}

.tvp-main-pkg__feat-line {
  color: #14345f;
  font-size: 15px;
  line-height: 1.35;
}

.tvp-main-pkg__feat-line strong {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 22px;
  color: #2560e6;
  margin-right: 6px;
}

.tvp-main-pkg__feat-period {
  margin: 4px 0 0;
  color: #8a97ab;
  font-size: 12px;
}

.tvp-main-pkg__feat-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tvp-main-pkg__feat-logos img,
.tvp-main-pkg__promo-fallback {
  width: 72px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid rgba(37, 96, 230, 0.08);
}

.tvp-main-pkg__promo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 13px;
  color: #2560e6;
}

.tvp-main-pkg__price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(37, 96, 230, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
}

.tvp-main-pkg__price-amount {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #2560e6;
}

.tvp-main-pkg__price-period {
  font-size: 14px;
  color: #62718c;
}

.tvp-main-pkg__side-empty {
  margin: 0;
  color: #8a97ab;
  font-size: 14px;
}

.tvp-packages__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 8px;
}

.tvp-packages__head--sweet {
  align-items: center;
  margin: 0 0 28px;
}

.tvp-packages__head--sweet .tvp-packages__title {
  margin: 0;
  text-align: left;
}

.tvp-packages__head p {
  margin: 0;
  max-width: 40rem;
  color: #5a6b84;
  font-size: 15px;
  line-height: 1.5;
}

/* ——— Sweet sticky scroll (like sweet.tv tariff-includes) ——— */
.tvp-sweet-scroll {
  margin: clamp(20px, 3vw, 36px) 0 clamp(40px, 5vw, 64px);
  padding: 0;
  background: transparent;
  color: #14345f;
}

.tvp-sweet-scroll__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 80px);
  position: relative;
}

.tvp-sweet-scroll__left {
  flex: 0 1 40%;
  max-width: 440px;
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 80px);
  z-index: 2;
}

.tvp-sweet-scroll__step {
  min-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0;
  opacity: 0.28;
  transition: opacity 0.35s ease;
}

.tvp-sweet-scroll__step.is-active {
  opacity: 1;
}

.tvp-sweet-scroll__step h3 {
  margin: 0 0 16px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #14345f;
}

.tvp-sweet-scroll__step p {
  margin: 0;
  max-width: 90%;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;
  color: #4a5d78;
}

.tvp-sweet-scroll__right {
  position: -webkit-sticky;
  position: sticky;
  top: max(100px, calc(8.385vw + 72px));
  flex: 1 1 58%;
  min-width: 0;
  max-width: 720px;
  margin-left: auto;
  align-self: flex-start;
  height: fit-content;
  z-index: 2;
}

.tvp-sweet-scroll__photos {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: #d7e2ee;
}

.tvp-sweet-scroll__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

.tvp-sweet-scroll__photo:first-child {
  transform: translate3d(0, 0, 0);
}

.tvp-sweet-scroll__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* ——— Sweet story (marketing bands) ——— */
.tvp-sweet-story {
  margin: clamp(40px, 6vw, 64px) 0 0;
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.tvp-sweet-story__band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(20, 52, 95, 0.08);
  box-shadow: 0 14px 36px rgba(20, 52, 95, 0.08);
}

.tvp-sweet-story__band--premier {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.tvp-sweet-story__band--devices {
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, #f4f8fc 0%, #fff 42%);
}

.tvp-sweet-story__band--offline {
  background: linear-gradient(135deg, #0b1c33 0%, #14345f 55%, #1a4f9c 100%);
  color: #fff;
  border: 0;
}

.tvp-sweet-story__band--offline .tvp-sweet-story__title,
.tvp-sweet-story__band--offline .tvp-sweet-story__lead {
  color: #fff;
}

.tvp-sweet-story__title {
  margin: 0 0 12px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #14345f;
}

.tvp-sweet-story__title--center {
  text-align: center;
}

.tvp-sweet-story__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #4a5d78;
}

.tvp-sweet-story__copy--center {
  max-width: 720px;
  margin: 0 auto;
}

.tvp-sweet-story__media img {
  display: block;
  width: 100%;
  height: auto;
}

.tvp-sweet-story__media--photo {
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
  background: #d9e3ef;
}

.tvp-sweet-story__media--photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.tvp-sweet-story__media--wide {
  max-width: 860px;
  margin: 8px auto 0;
}

.tvp-sweet-story__media--phone {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}

.tvp-sweet-story__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.tvp-sweet-story__points li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.tvp-sweet-story__point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf2ff;
  color: #2560e6;
}

.tvp-sweet-story__point-icon .dalnet-icon {
  width: 24px;
  height: 24px;
}

.tvp-sweet-story__points strong {
  display: block;
  margin-bottom: 4px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 17px;
  color: #14345f;
}

.tvp-sweet-story__points span {
  color: #4a5d78;
  font-size: 15px;
  line-height: 1.45;
}

.tvp-sweet-story__benefits {
  padding: clamp(28px, 4vw, 42px) clamp(18px, 3vw, 28px);
  border-radius: 24px;
  background: #eaf3fb;
}

.tvp-sweet-story__benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.tvp-sweet-story__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 158px;
  padding: 26px 16px 20px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(20, 52, 95, 0.07);
}

.tvp-sweet-story__benefit p {
  margin: 0;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #14345f;
}

.tvp-sweet-story__benefit-icon {
  display: inline-flex;
  color: #2560e6;
}

.tvp-sweet-story__benefit-icon .dalnet-icon {
  width: 34px;
  height: 34px;
}

.tvp-sweet-story__benefit-hd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 10px;
  background: #e8f0ff;
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.tvp-sweet-story__platforms {
  margin-top: 18px;
}

.tvp-sweet-story__platforms-label {
  margin: 0 0 16px;
  text-align: center;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6b84;
}

.tvp-sweet-story__platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tvp-sweet-story__platform {
  padding: 22px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(20, 52, 95, 0.08);
  text-align: center;
}

.tvp-sweet-story__platform-icon {
  display: inline-flex;
  margin-bottom: 10px;
  color: #2560e6;
}

.tvp-sweet-story__platform-icon .dalnet-icon {
  width: 28px;
  height: 28px;
}

.tvp-sweet-story__platform h3 {
  margin: 0 0 8px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  color: #14345f;
}

.tvp-sweet-story__platform p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #4a5d78;
}

.tvp-sweet-story__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.tvp-sweet-story__mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tvp-sweet-story__mini .dalnet-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #8ec5ff;
}

.tvp-sweet-story__mini p {
  margin: 0;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
}

.tvp-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 168px;
  padding: 28px 18px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 52, 95, 0.08);
}

.tvp-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  border-radius: 0;
  background: transparent;
  color: #14345f;
}

.tvp-highlight__svg {
  width: 42px;
  height: 42px;
}

.tvp-highlight h3 {
  margin: 0;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  color: #14345f;
}

.tvp-highlight p {
  margin: 0;
  color: #5a6b84;
  font-size: 14px;
  line-height: 1.45;
}

.tvp-devices__apps--links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tvp-devices__app--link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88px;
  padding: 16px 18px;
  text-decoration: none;
}

.tvp-devices__app--link strong {
  display: block;
  margin-bottom: 4px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  color: #14345f;
}

.tvp-devices__app--link span {
  color: #5a6b84;
  font-size: 13px;
}

/* ——— Package tabs (STV-style) ——— */
.tvp-pkg-tabs {
  margin-top: 8px;
}

.tvp-pkg-tabs__title {
  margin: 0 0 18px;
  text-align: center;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14345f;
}

.tvp-pkg-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: stretch;
  gap: 0;
  margin: 0 auto 18px;
  max-width: 920px;
  border-bottom: 1px solid rgba(20, 52, 95, 0.12);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tvp-pkg-tabs__nav::-webkit-scrollbar {
  display: none;
}

.tvp-pkg-tabs__tab {
  flex: 1 1 0;
  min-width: max-content;
  margin: 0;
  padding: 12px 16px 14px;
  border: 0;
  border-right: 1px solid rgba(20, 52, 95, 0.1);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: #7a8aa3;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tvp-pkg-tabs__tab:last-child {
  border-right: 0;
}

.tvp-pkg-tabs__tab:hover {
  color: #14345f;
}

.tvp-pkg-tabs__tab.is-active {
  color: #2560e6;
  border-bottom-color: #2560e6;
}

.tvp-pkg-tabs__panels {
  position: relative;
}

.tvp-pkg-tabs__panel {
  padding: 28px 28px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(37, 96, 230, 0.1);
  box-shadow: 0 14px 32px rgba(20, 52, 95, 0.06);
}

.tvp-pkg-tabs__panel[hidden] {
  display: none;
}

.tvp-pkg-tabs__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
}

.tvp-pkg-tabs__feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 20px;
  flex: 1 1 520px;
}

.tvp-pkg-tabs__feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #14345f;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.tvp-pkg-tabs__feat-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: #14345f;
}

.tvp-pkg-tabs__feat-icon .dalnet-icon {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tvp-pkg-tabs__price {
  flex: 0 0 auto;
  text-align: right;
  min-width: 7.5rem;
}

.tvp-pkg-tabs__price strong {
  display: block;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1.1;
  color: #14345f;
}

.tvp-pkg-tabs__price span {
  display: block;
  margin-top: 4px;
  color: #5a6b84;
  font-size: 15px;
}

.tvp-pkg-tabs__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 22px;
  padding-top: 4px;
}

.tvp-pkg-tabs__cta .tvp-pkg__order {
  margin-left: 0;
  min-width: 180px;
  min-height: 46px;
  padding: 12px 22px;
  font-size: 15px;
}

.tvp-packages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.tvp-pkg {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(37, 96, 230, 0.1);
  box-shadow: 0 14px 32px rgba(20, 52, 95, 0.06);
}

.tvp-pkg__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
  flex: 1 1 auto;
}

.tvp-pkg__code {
  margin: 0 0 8px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3e9fff;
}

.tvp-pkg h3 {
  margin: 0 0 14px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 20px;
  color: #14345f;
}

.tvp-pkg__feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  flex: 1 1 220px;
  min-width: 0;
}

.tvp-pkg__feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #14345f;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.tvp-pkg__feat-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: #14345f;
}

.tvp-pkg__feat-icon .dalnet-icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tvp-pkg__desc,
.tvp-pkg__meta {
  margin: 0 0 14px;
  color: #5a6b84;
  font-size: 14px;
  line-height: 1.45;
}

.tvp-pkg__meta {
  font-family: SourceSansBold, Arial, sans-serif;
  color: #2b6ab4;
}

.tvp-pkg__price {
  margin: 0;
  flex: 0 0 auto;
  text-align: right;
  min-width: 7rem;
  align-self: center;
}

.tvp-pkg__price strong {
  display: block;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  color: #14345f;
}

.tvp-pkg__price span {
  display: block;
  margin-top: 4px;
  color: #5a6b84;
  font-size: 14px;
}

.tvp-pkg__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(37, 96, 230, 0.12);
}

.tvp-pkg__link {
  padding: 0;
  border: 0;
  background: none;
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tvp-pkg__order {
  margin-left: auto;
  color: #fff;
  background: #3e9fff;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tvp-pkg__order:hover {
  background: #2f8ff0;
  color: #fff;
  text-decoration: none;
}

.tvp-packages__empty {
  margin: 22px 0 0;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  color: #5a6b84;
  font-size: 15px;
}

.tvp-packages__empty a {
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
}

.tvp-bullets {
  list-style: none;
  margin: 0 0 clamp(36px, 4vw, 48px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.tvp-bullets li {
  position: relative;
  padding: 14px 16px 14px 36px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(62, 159, 255, 0.18);
  color: #14345f;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.tvp-bullets li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3e9fff;
}

.tvp-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(36px, 4vw, 48px);
}

.tvp-device-note p {
  margin: 0 0 12px;
  color: #5a6b84;
  font-size: 15px;
  line-height: 1.55;
}

.tvp-device-note strong {
  color: #14345f;
}

.tvp-detail-aside h3 {
  margin: 0 0 14px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  color: #14345f;
}

.tvp-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tvp-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(37, 96, 230, 0.1);
}

.tvp-logos__item img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.tvp-aside-compare {
  display: inline-flex;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tvp-stb {
  margin-bottom: clamp(36px, 4vw, 48px);
  padding: 24px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(37, 96, 230, 0.12);
}

.tvp-stb p {
  margin: 0 0 12px;
  color: #5a6b84;
  font-size: 15px;
  line-height: 1.5;
}

.tvp-stb__prices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #14345f;
  font-size: 15px;
}

.tvp-addons {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(37, 96, 230, 0.14);
}

.tvp-addons h3 {
  margin: 0 0 6px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 20px;
  color: #14345f;
}

.tvp-addons__lead {
  margin: 0 0 16px;
  color: #5a6b84;
  font-size: 14px;
}

.tvp-addons__group {
  margin-bottom: 16px;
}

.tvp-addons__group h4 {
  margin: 0 0 8px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 14px;
  color: #3e9fff;
}

.tvp-addons__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tvp-addons__group li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(37, 96, 230, 0.1);
  color: #5a6b84;
  font-size: 14px;
}

.tvp-addons__group em {
  font-style: normal;
  font-family: SourceSansBold, Arial, sans-serif;
  color: #14345f;
}

/* ——— Doplnkové balíky / rozšírenia ——— */
.tvp-addon-section {
  margin-top: clamp(40px, 5vw, 56px);
}

.tvp-addon-section__title {
  margin: 0 0 22px;
  text-align: center;
  font-family: Kanit, SourceSansBold, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #14345f;
  line-height: 1.1;
}

.tvp-addon-section__title-accent {
  color: #0183cc;
}

/* ——— Podporované zariadenia ——— */
.tvp-devices {
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(28px, 4vw, 48px) 8px clamp(12px, 2vw, 24px);
  text-align: center;
}

.tvp-devices__title {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-family: Kanit, SourceSansBold, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #14345f;
  line-height: 1.1;
}

.tvp-devices__title span {
  color: #0183cc;
}

.tvp-devices__list {
  list-style: none;
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
  max-width: 960px;
}

.tvp-devices__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tvp-devices__item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.tvp-devices__item img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.tvp-devices__item--lg img {
  height: 34px;
}

.tvp-devices__lg-text {
  font-family: Kanit, SourceSansBold, Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  line-height: 1;
}

.tvp-devices__block {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: left;
}

.tvp-devices__block--reverse {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.tvp-devices__block--apps {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: start;
}

.tvp-devices__heading {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  font-family: Kanit, SourceSansBold, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #14345f;
}

.tvp-devices__heading-accent {
  color: #0183cc;
}

.tvp-devices__text {
  color: #4b5563;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.tvp-devices__text p {
  margin: 0 0 1em;
}

.tvp-devices__text p:last-child {
  margin-bottom: 0;
}

.tvp-devices__text a {
  color: #0183cc;
  font-family: SourceSansBold, Arial, sans-serif;
  text-decoration: underline;
}

.tvp-devices__text a:hover {
  text-decoration: none;
}

.tvp-devices__media img {
  display: block;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  height: auto;
}

.tvp-devices__block--reverse .tvp-devices__media img {
  margin-left: 0;
  margin-right: auto;
}

.tvp-devices__media--mobile {
  display: none;
  margin: 12px 0 8px;
}

.tvp-devices__browsers {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding: 16px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(20, 52, 95, 0.1);
}

.tvp-devices__browsers img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tvp-devices__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.tvp-devices__app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 1 150px;
  min-width: 150px;
  max-width: 190px;
  padding: 16px 14px 18px;
  background: #fff;
  border: 1px solid rgba(20, 52, 95, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(20, 52, 95, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tvp-devices__app:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 52, 95, 0.1);
}

.tvp-devices__app-label {
  text-align: center;
  min-height: 3.4em;
}

.tvp-devices__app-label strong {
  display: block;
  color: #0183cc;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.tvp-devices__app-label span {
  display: block;
  margin-top: 4px;
  color: #9ca3af;
  font-size: 13px;
}

.tvp-devices__app img {
  display: block;
  width: 140px;
  height: 140px;
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.tvp-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tvp-addon-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(37, 96, 230, 0.1);
  box-shadow: 0 12px 28px rgba(20, 52, 95, 0.06);
  overflow: hidden;
}

.tvp-addon-card__media {
  aspect-ratio: 16 / 9;
  background: #d7e4f5;
  overflow: hidden;
}

.tvp-addon-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tvp-addon-card__media-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c9daf2 0%, #e8f0fb 100%);
}

.tvp-addon-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px 16px 14px;
}

.tvp-addon-card__body h3 {
  margin: 0 0 4px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 18px;
  color: #2560e6;
}

.tvp-addon-card__sub {
  margin: 0 0 8px;
  color: #8a97ab;
  font-size: 13px;
}

.tvp-addon-card__desc {
  margin: 0 0 12px;
  color: #5a6b84;
  font-size: 13px;
  line-height: 1.45;
}

.tvp-addon-card__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.tvp-addon-card__logo {
  width: 42px;
  height: 28px;
  border-radius: 4px;
  background: #f3f6fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tvp-addon-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tvp-addon-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.tvp-addon-card__price {
  margin: 0;
  color: #14345f;
  font-size: 13px;
}

.tvp-addon-card__price strong {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  color: #2560e6;
}

.tvp-addon-card__btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: #3e9fff;
  color: #fff;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.tvp-addon-card__btn:hover {
  background: #2f8ff0;
}

.tvp-addon-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 28, 52, 0.55);
}

.tvp-addon-modal-overlay.is-open {
  display: flex;
}

.tvp-addon-modal {
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(10, 30, 70, 0.28);
  padding: 22px 24px 24px;
}

.tvp-addon-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tvp-addon-modal__head h3 {
  margin: 0;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  color: #2560e6;
}

.tvp-addon-modal__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #eef3fa;
  color: #14345f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tvp-addon-modal__close .dalnet-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.tvp-addon-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px 28px;
  align-items: start;
}

.tvp-addon-modal__left h4,
.tvp-addon-modal__right h4 {
  margin: 0 0 10px;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 15px;
  color: #2560e6;
}

.tvp-addon-modal__left p {
  margin: 0;
  color: #5a6b84;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
}

.tvp-addon-modal__price {
  margin-top: 22px !important;
  font-size: 18px !important;
  color: #2560e6 !important;
}

.tvp-addon-modal__price strong {
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 24px;
}

.tvp-addon-modal__block + .tvp-addon-modal__block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(37, 96, 230, 0.12);
}

.tvp-addon-modal__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tvp-addon-modal__logos--grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

.tvp-addon-modal__logo {
  width: 88px;
  min-height: 78px;
  padding: 8px 6px 6px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(37, 96, 230, 0.1);
  box-shadow: 0 4px 12px rgba(20, 52, 95, 0.05);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  overflow: hidden;
  text-align: center;
}

.tvp-addon-modal__logos--grid .tvp-addon-modal__logo {
  width: 100%;
  min-height: 86px;
}

.tvp-addon-modal__logo img,
.tvp-addon-modal__logo-fallback {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.tvp-addon-modal__logo-fallback {
  border-radius: 8px;
  background: #eef5ff;
  color: #2560e6;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tvp-addon-modal__logo em {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-style: normal;
  font-size: 11px;
  line-height: 1.2;
  color: #5a6b84;
  max-width: 100%;
}

.tvp-faq {
  margin: 0 0 clamp(36px, 4vw, 48px);
}

.tvp-faq__item {
  border-top: 1px solid rgba(37, 96, 230, 0.14);
}

.tvp-faq__item:last-child {
  border-bottom: 1px solid rgba(37, 96, 230, 0.14);
}

.tvp-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 36px 16px 0;
  position: relative;
  font-family: SourceSansBold, Arial, sans-serif;
  font-size: 16px;
  color: #14345f;
}

.tvp-faq__item summary::-webkit-details-marker {
  display: none;
}

.tvp-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(37, 96, 230, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2560e6;
  font-size: 18px;
  line-height: 1;
}

.tvp-faq__item[open] summary::after {
  content: "–";
}

.tvp-faq__item p {
  margin: 0 0 16px;
  max-width: 44rem;
  color: #5a6b84;
  font-size: 15px;
  line-height: 1.55;
}

@keyframes tvp-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tvp-hero__frame {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .tvp-flow__inner,
  .tvp-detail-grid,
  .tvp-packages__grid,
  .tvp-bullets,
  .tvp-local__points {
    grid-template-columns: 1fr;
  }

  .tvp-sweet-scroll__inner {
    flex-direction: column;
    gap: 18px;
  }

  .tvp-sweet-scroll__left {
    flex: none;
    max-width: none;
    width: 100%;
    padding-top: 8px;
    order: 2;
  }

  .tvp-sweet-scroll__right {
    position: -webkit-sticky;
    position: sticky;
    top: max(88px, calc(8.385vw + 64px));
    flex: none;
    width: 100%;
    max-width: none;
    order: 1;
    align-self: stretch;
    height: fit-content;
  }

  .tvp-sweet-scroll__step {
    min-height: 48vh;
    padding: 20px 0 36px;
  }

  .tvp-sweet-scroll__photos {
    max-height: 240px;
  }

  .tvp-sweet-story__band,
  .tvp-sweet-story__band--premier {
    grid-template-columns: 1fr;
  }

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

  .tvp-sweet-story__platform-grid {
    grid-template-columns: 1fr;
  }

  .tvp-sweet-story__band--premier .tvp-sweet-story__media--photo {
    order: -1;
  }

  .tvp-devices__apps--links {
    grid-template-columns: 1fr 1fr;
  }

  .tvp-sweet-pack__columns {
    grid-template-columns: 1fr;
  }

  .tvp-sweet-pack__side {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 52, 95, 0.08);
  }

  .tvp-sweet-pack__channels {
    max-height: 420px;
  }

  .tvp-sweet-table__plans,
  .tvp-sweet-table__actions,
  .tvp-sweet-table__row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
    gap: 10px 12px;
  }

  .tvp-sweet-table__label {
    font-size: 14px;
  }

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

  .tvp-pkg-tabs__price {
    text-align: left;
    width: 100%;
  }

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

  .tvp-main-pkg__card {
    grid-template-columns: 1fr;
  }

  .tvp-main-pkg__left {
    border-right: 0;
    border-bottom: 1px solid rgba(37, 96, 230, 0.1);
  }

  .tvp-main-pkg__channels {
    max-height: 360px;
  }

  .tvp-addon-modal__grid {
    grid-template-columns: 1fr;
  }

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

  .tvp-pcard {
    grid-template-columns: 1fr;
  }

  .tvp-pcard__media {
    min-height: 200px;
    order: -1;
  }

  .tvp-local h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .tvp-hero {
    min-height: clamp(420px, 78vh, 560px);
    padding-top: calc(8.385vw + 88px);
  }

  .tvp-flow {
    scroll-margin-top: calc(8.385vw + 110px);
  }

  .tvp-hero__frame {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .tvp-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .tvp-hero__sub {
    font-size: clamp(17px, 4.6vw, 22px);
    margin-top: 8px;
  }

  .tvp-hero__facts {
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
  }

  .tvp-hero__facts li {
    padding: 0;
  }

  .tvp-hero__facts li:not(:last-child)::after {
    display: none;
  }

  .tvp-hero__perks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tvp-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .tvp-btn {
    width: 100%;
  }

  .tvp-btn--ghost-light {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.85);
  }

  .tvp-how__list li {
    grid-template-columns: 28px 14px 42px minmax(0, 1fr);
    gap: 10px 8px;
  }

  .tvp-pcard__body {
    padding: 18px 16px 16px;
  }

  .tvp-pcard__meta {
    gap: 8px 12px;
  }

  .tvp-close__inner {
    padding: 32px 22px;
  }

  .tvp-close__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tvp-close__media {
    order: -1;
    min-height: 0;
  }

  .tvp-close__media img {
    max-width: 420px;
    margin: 0 auto;
  }

  .tvp-packages__head--sweet {
    flex-direction: column;
    align-items: stretch;
  }

  .tvp-packages__head--sweet .tvp-packages__title {
    text-align: center;
  }

  .tvp-sweet-story__benefit-grid,
  .tvp-sweet-story__mini-grid {
    grid-template-columns: 1fr;
  }

  .tvp-devices__apps--links {
    grid-template-columns: 1fr;
  }

  .tvp-sweet-pack__tabs {
    grid-template-columns: 1fr;
  }

  .tvp-sweet-pack__channels {
    max-height: 360px;
  }

  .tvp-sweet-pack__channel-grid {
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  }

  .tvp-sweet-table {
    padding: 20px 14px 24px;
  }

  .tvp-sweet-table__plans {
    grid-template-columns: 1fr 1fr;
  }

  .tvp-sweet-table__plan-spacer {
    display: none;
  }

  .tvp-sweet-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .tvp-sweet-table__cell {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    padding: 0 2px;
    font-size: 15px;
  }

  .tvp-sweet-table__cell::before {
    content: attr(data-plan);
    color: #8a97ab;
    font-family: SourceSansBold, Arial, sans-serif;
    font-size: 12px;
  }

  .tvp-sweet-table__actions {
    grid-template-columns: 1fr 1fr;
  }

  .tvp-sweet-table__order {
    min-width: 0;
    width: 100%;
  }

  .tvp-pkg__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tvp-pkg__order {
    margin-left: 0;
    text-align: center;
  }

  .tvp-pkg__main {
    flex-direction: column;
    gap: 14px;
  }

  .tvp-pkg__price {
    text-align: left;
    align-self: flex-start;
  }

  .tvp-pkg-tabs__panel {
    padding: 20px 16px 18px;
  }

  .tvp-pkg-tabs__nav {
    justify-content: flex-start;
  }

  .tvp-pkg-tabs__tab {
    flex: 0 0 auto;
    padding: 10px 14px 12px;
    font-size: 14px;
  }

  .tvp-pkg-tabs__feats {
    grid-template-columns: 1fr;
    flex-basis: 100%;
  }

  .tvp-pkg-tabs__cta .tvp-pkg__order {
    width: 100%;
  }

  .tvp-addon-grid {
    grid-template-columns: 1fr;
  }

  .tvp-devices__list {
    gap: 22px 28px;
  }

  .tvp-devices__item img {
    height: 24px;
    max-width: 120px;
  }

  .tvp-devices__item--lg img {
    height: 28px;
  }

  .tvp-devices__lg-text {
    font-size: 22px;
  }

  .tvp-devices__block,
  .tvp-devices__block--reverse,
  .tvp-devices__block--apps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tvp-devices__media--desktop {
    display: none;
  }

  .tvp-devices__media--mobile {
    display: block;
  }

  .tvp-devices__media img {
    max-width: 420px;
    margin: 0 auto;
  }

  .tvp-devices__apps {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .tvp-devices__app {
    flex: none;
    max-width: none;
    min-width: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
  }

  .tvp-devices__app-label {
    text-align: left;
    min-height: 0;
  }

  .tvp-devices__app img {
    width: 112px;
    height: 112px;
  }

  .tvp-main-pkg__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: none;
    overflow: visible;
  }

  .tvp-main-pkg__tab {
    flex: unset;
    min-width: 0;
    width: 100%;
    padding: 11px 10px 12px;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    border-right: 0;
    border-left: 0;
  }

  .tvp-main-pkg__tab:nth-child(odd) {
    border-right: 1px solid rgba(20, 52, 95, 0.1);
  }

  .tvp-addon-card__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .tvp-addon-card__btn {
    width: 100%;
  }

  .tvp-addon-modal__logos--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tvp-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
