@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat ExtraBold";
  src: url("./fonts/Montserrat-ExtraBold/montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --font-body: "Inter", sans-serif;
  --font-accent: "Montserrat ExtraBold", "Inter", sans-serif;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-alt: #eef2f7;
  --line: #d7dee8;
  --line-strong: #aeb8c8;
  --text: #111111;
  --text-soft: #4b5565;
  --text-muted: #6b7280;
  --primary: #3143c4;
  --primary-deep: #3143c4;
  --secondary: #ff6a2b;
  --secondary-deep: #e95a1d;
  --hero-start: #2f3ebd;
  --hero-end: #4258d6;
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, 0.08);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shell: min(1180px, calc(100% - 32px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 80;
  background: var(--primary);
  border-bottom: 0;
  box-shadow: 0 10px 30px rgba(22, 35, 108, 0.22);
}

.page-subpage {
  padding-top: 0;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-height);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  display: block;
  width: auto;
  height: 62px;
  max-height: calc(var(--header-height) - 12px);
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav {
  margin-left: auto;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav li + li::before {
  display: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 44px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #ffffff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: calc(100% - 28px);
  height: 4px;
  background: #ffffff;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-icon {
  display: none;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-link,
.footer-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button-link:hover,
.footer-contact-button:hover {
  transform: translateY(-1px);
}

.button-link.primary {
  color: #ffffff;
  background: var(--secondary);
  border: 1px solid var(--secondary);
}

.button-link.primary:hover {
  background: var(--secondary-deep);
  border-color: var(--secondary-deep);
}

.button-link.secondary,
.footer-contact-button,
.mobile-toggle-button {
  color: var(--primary-deep);
  background: #ffffff;
  border: 1px solid var(--line-strong);
}

.button-link.secondary:hover,
.footer-contact-button:hover,
.mobile-toggle-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f8faff;
}

.home-main {
  padding-bottom: 40px;
}

.promo-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 0 0 160px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 75%, rgba(92, 116, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(82, 106, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #1e2a78 0%, #1e2a78 100%);
  overflow: visible;
}

.promo-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  cursor: grab;
  pointer-events: auto;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.promo-bg-track,
.promo-bg-slide {
  touch-action: pan-y;
  user-select: none;
}

.promo-bg-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.promo-hero.is-dragging .promo-hero-background {
  cursor: grabbing;
}

.promo-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.promo-hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 236px);
  display: block;
  pointer-events: none;
}

.promo-placeholder {
  position: relative;
  min-height: calc(100vh - 236px);
  background: transparent;
  overflow: hidden;
}

.promo-bg-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  background: var(--promo-bg-image) center top/cover no-repeat;
}

.promo-bg-dots {
  position: absolute;
  left: 50%;
  bottom: 180px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.promo-bg-dot {
  width: 26px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.promo-bg-dot.is-active {
  width: 38px;
  background: rgba(255, 255, 255, 0.92);
}

.promo-bg-dot:hover {
  transform: scaleX(1.05);
}

.promo-mini-plans {
  position: absolute;
  left: 50%;
  bottom: -330px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: var(--shell);
  margin: 0;
  transform: translateX(-50%);
}

.promo-mini-plan {
  display: flex;
  flex-direction: column;
  min-height: 388px;
  padding: 24px 28px 24px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  color: var(--text);
  text-align: center;
}

.promo-mini-plan.featured {
  background: #f8faff;
}

.promo-mini-title {
  font-family: var(--font-accent);
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.promo-mini-badge {
  font-family: var(--font-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 auto 4px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--secondary);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(255, 106, 43, 0.28);
}

.promo-mini-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0 18px;
  background: rgba(16, 43, 103, 0.12);
}

.promo-mini-copy {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--text-soft);
}

.promo-mini-copy strong {
  color: var(--text);
}

.promo-mini-meta {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.promo-mini-meta-soft {
  margin: 0 0 16px;
  font-size: 0.92rem;
}

.promo-mini-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: auto 0 12px;
}

.promo-mini-price strong {
  font-family: var(--font-accent);
  font-size: clamp(3.1rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #111111;
}

.promo-mini-price span {
  font-size: 1.02rem;
  font-weight: 700;
  color: #46556f;
}

.promo-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 172px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 18px;
  background: #3143c4;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.promo-mini-button:hover {
  background: #3143c4;
  transform: translateY(-1px);
}

.promo-mini-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.promo-mini-actions .promo-mini-button,
.promo-mini-actions .button-link {
  min-width: 172px;
  min-height: 48px;
  border-radius: 18px;
}

.home-tv-promo {
  width: 100vw;
  margin: 368px calc(50% - 50vw) 28px;
}

.home-tv-promo-card {
  --tv-bg-x: 0px;
  --tv-bg-y: 0px;
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 36px 42px;
  border-radius: 0;
  background-color: #0a1327;
  border: 0;
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.home-tv-promo-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.home-tv-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 19, 39, 0.42), rgba(10, 19, 39, 0.42)),
    linear-gradient(180deg, rgba(7, 12, 24, 0.86) 0%, rgba(7, 12, 24, 0.48) 18%, rgba(7, 12, 24, 0.26) 42%, rgba(7, 12, 24, 0.26) 60%, rgba(7, 12, 24, 0.56) 84%, rgba(7, 12, 24, 0.88) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.1), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(255, 166, 0, 0.12), transparent 22%);
  z-index: 1;
  pointer-events: none;
}

.home-tv-promo-card::after {
  content: "";
  position: absolute;
  inset: -24px;
  background: url("assets/fondo televisi\00F3n.webp") center center/cover no-repeat;
  transform: translate3d(var(--tv-bg-x), var(--tv-bg-y), 0) scale(1.04);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

.home-tv-promo-card:hover::after {
  transform: translate3d(var(--tv-bg-x), var(--tv-bg-y), 0) scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .home-tv-promo-card::after,
  .home-tv-promo-card:hover::after,
  .home-location-promo-card::after,
  .home-location-promo-card:hover::after {
    transform: none;
    transition: none;
  }
}

.home-tv-promo-title {
  margin: 0;
  max-width: none;
  font-family: var(--font-accent);
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.home-tv-promo-text {
  max-width: 44ch;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(244, 247, 252, 0.94);
}

.home-tv-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 190px;
  padding: 0 26px;
  border-radius: 18px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  color: #ffffff;
  background: linear-gradient(135deg, #3143c4 0%, #4258d6 100%);
  box-shadow: 0 18px 34px rgba(49, 67, 196, 0.22);
}

.home-tv-promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(49, 67, 196, 0.28);
}

.home-promo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-promo-actions .button-link.secondary {
  min-width: 220px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.home-promo-actions .button-link.secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-tv-promo + .info-band {
  margin-top: 34px;
}

.home-reviews + .info-band {
  margin-top: 26px;
}

.home-reviews {
  margin-top: 18px;
  padding: 34px 0 8px;
}

.home-reviews-shell {
  display: grid;
  gap: 26px;
}

.home-reviews-heading {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.home-reviews-heading h2 {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.home-reviews-heading p {
  max-width: 54ch;
  margin: 0;
  color: #556274;
  font-size: 1.04rem;
  line-height: 1.65;
}

.home-reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0 14px;
}

.home-reviews-marquee::before,
.home-reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 78px;
  pointer-events: none;
}

.home-reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(244, 246, 248, 0) 100%);
}

.home-reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(244, 246, 248, 0) 100%);
}

.home-reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.home-review-card {
  flex: 0 0 320px;
  min-height: 260px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 26px 24px 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(27, 39, 94, 0.08);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.home-review-stars {
  color: #ff8a00;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.home-review-text {
  margin: 0;
  color: #3f4b5a;
  font-size: 1.02rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: end;
}

.home-review-avatar {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #d8dde4 0%, #bcc4ce 100%);
  color: #727c89;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-review-card:nth-child(9n + 1) .home-review-avatar,
.home-review-card:nth-child(9n + 5) .home-review-avatar,
.home-review-card:nth-child(9n + 8) .home-review-avatar {
  background: linear-gradient(180deg, #dde3ea 0%, #c6ced8 100%);
  color: #748090;
}

.home-review-card:nth-child(9n + 2) .home-review-avatar,
.home-review-card:nth-child(9n + 7) .home-review-avatar {
  background: linear-gradient(180deg, #f7dccd 0%, #efc2aa 100%);
  color: #b9795c;
}

.home-review-card:nth-child(9n + 3) .home-review-avatar,
.home-review-card:nth-child(9n + 6) .home-review-avatar {
  background: linear-gradient(180deg, #d7e8f7 0%, #bdd5ee 100%);
  color: #6988a7;
}

.home-review-card:nth-child(9n + 4) .home-review-avatar,
.home-review-card:nth-child(9n + 9) .home-review-avatar {
  background: linear-gradient(180deg, #f2d8e8 0%, #e4bfd5 100%);
  color: #a56c8c;
}

.home-review-avatar svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-review-user strong {
  display: block;
  color: #162033;
  font-size: 1rem;
}

.home-location-promo {
  width: 100vw;
  margin: 30px calc(50% - 50vw) 28px;
}

.home-location-promo-card {
  --location-bg-x: 0px;
  --location-bg-y: 0px;
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 38px 42px;
  background-color: #0f1f36;
  border: 0;
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.home-location-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(12, 24, 43, 0.16), rgba(12, 24, 43, 0.16)),
    linear-gradient(180deg, rgba(7, 14, 28, 0.58) 0%, rgba(7, 14, 28, 0.2) 22%, rgba(7, 14, 28, 0.08) 48%, rgba(7, 14, 28, 0.12) 72%, rgba(7, 14, 28, 0.6) 100%);
  pointer-events: none;
}

.home-location-promo-card::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background: url("assets/molinos fondo upscaled.jpg") center 58%/100% auto no-repeat;
  transform: translate3d(var(--location-bg-x), var(--location-bg-y), 0) scale(1.03);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  pointer-events: none;
}

.home-location-promo-card:hover::after {
  transform: translate3d(var(--location-bg-x), var(--location-bg-y), 0) scale(1.045);
}

.home-location-promo-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.home-location-promo-title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.home-location-promo-text {
  max-width: 40ch;
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(244, 247, 252, 0.94);
}

.home-location-promo-text.home-location-promo-areas {
  max-width: 70ch;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-location-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 18px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a3d 0%, #ff6a2b 100%);
  box-shadow: 0 18px 34px rgba(255, 106, 43, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-location-promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(255, 106, 43, 0.28);
}

.home-promo-actions .home-tv-promo-button,
.home-promo-actions .home-location-promo-button {
  min-width: 220px;
}

.home-location-promo + .info-band {
  margin-top: 34px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 36px;
  align-items: center;
  width: 100%;
  margin-top: 18px;
  padding: 56px max(16px, calc((100vw - 1180px) / 2)) 104px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
}

.hero-carousel,
.hero-highlight {
  position: relative;
  z-index: 1;
}

.hero-carousel {
  min-height: 420px;
}

.hero-slides {
  position: relative;
  min-height: 320px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.eyebrow,
.tag,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero h1,
.content-card h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero h1::after {
  content: "";
}

.hero p,
.content-card p {
  line-height: 1.7;
}

.hero p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-wimax .page-intro-card .cta-row,
.page-tv .page-intro-card .cta-row {
  margin-top: 40px;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-dot.is-active,
.hero-dot:hover {
  background: var(--secondary);
}

.hero-highlight {
  display: grid;
  gap: 16px;
  padding-top: 16px;
}

.hero-highlight::before,
.hero-highlight::after {
  content: none;
}

.highlight-box,
.info-card,
.content-card,
.plan-card,
.mobile-list-item,
.footer-block,
.band-item {
  background: var(--surface);
  border: 1px solid var(--line);
}

.highlight-box,
.info-card,
.plan-card,
.mobile-list-item,
.footer-block,
.band-item,
.content-card {
  border-radius: var(--radius-lg);
}

.highlight-box {
  min-height: 180px;
  padding: 26px;
  color: #ffffff;
  background: #3143c4;
  border-color: rgba(255, 255, 255, 0.14);
}

.highlight-box.alt {
  background: #3143c4;
}

.highlight-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.highlight-box span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.info-band {
  margin-top: 328px;
  padding: 40px 0 24px;
}

.page-subpage .info-band {
  margin-top: 56px;
}

.info-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.band-item {
  padding: 30px 24px 34px;
  text-align: center;
  background: #ffffff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
}

.stat-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.stat-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
  color: #3a3c42;
  background: transparent;
}

.stat-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-mobile svg {
  stroke-width: 1.65;
}

.rise-arrow {
  position: absolute;
  width: 10px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 46%, 72% 46%, 72% 100%, 28% 100%, 28% 46%, 0 46%);
  opacity: 0;
}

.rise-arrow.a1 { left: 10px; top: 22px; animation: riseArrow 2s ease-in-out infinite; }
.rise-arrow.a2 { right: 10px; top: 26px; animation: riseArrow 2s ease-in-out infinite 0.3s; }

.band-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3a3c42;
}

.band-item span {
  color: #3a3c42;
}

.stat-text {
  display: block;
  margin-top: 4px;
  line-height: 1.55;
  font-size: 1.06rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 32px auto 0;
}

.info-card {
  padding: 30px 32px 34px;
  color: #ffffff;
  background: linear-gradient(180deg, #3a3c42 0%, #2f3136 100%);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
}

.info-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
}

.info-card-icon-wide {
  width: 102px;
  height: 102px;
}

.info-card-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: grayscale(1) invert(1) contrast(1.2);
  mix-blend-mode: screen;
}

.info-card-icon-wide img {
  width: 102px;
  height: 102px;
}

.info-card-icon img.info-card-icon-plain {
  filter: none;
  mix-blend-mode: normal;
}

.info-card-icon img.info-card-icon-headset {
  width: 122px;
  height: 122px;
  clip-path: inset(0 10px 0 0);
}

.info-card h2,
.mobile-side-title {
  margin: 0 0 14px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-size: 1.06rem;
}

.content-card {
  margin: 28px auto 0;
  padding: 34px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.page-intro-card {
  --intro-accent-height: 220px;
  --intro-accent-background: linear-gradient(180deg, #3143c4 0%, #3143c4 100%);
  --intro-card-surface-start: #ffffff;
  --intro-card-surface-end: #ffffff;
  background:
    linear-gradient(180deg, transparent 0, transparent var(--intro-accent-height), var(--intro-card-surface-start) var(--intro-accent-height), var(--intro-card-surface-end) 100%),
    var(--intro-accent-background);
}

.page-bundle .page-intro-card,
.page-fibra .page-intro-card,
.page-mobile .page-intro-card,
.page-wimax .page-intro-card {
  --intro-card-surface-start: #c6ccd4;
  --intro-card-surface-end: #dde2e8;
}

.page-intro-card > .tag,
.page-intro-card > h1,
.page-intro-card > p,
.page-intro-card > .sub-copy,
.page-intro-card > .cta-row {
  position: relative;
  z-index: 1;
}

.page-intro-card > .tag {
  display: none;
}

.page-intro-card > .tag,
.page-intro-card > h1,
.page-intro-card > p,
.page-intro-card > .sub-copy {
  color: #ffffff;
}

.page-intro-card > h1 {
  font-family: var(--font-accent);
}

.page-intro-card > p,
.page-intro-card > .sub-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
}

.page-intro-card .plans-grid,
.page-intro-card .mobile-layout {
  margin-top: 44px;
}

.page-intro-card .plans-grid {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.page-intro-card .mobile-layout {
  grid-template-columns: minmax(0, 410px) minmax(0, 470px);
  align-items: start;
  justify-content: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.tag,
.plan-badge {
  font-family: var(--font-accent);
  color: #ffffff;
  background: var(--secondary);
}

.plan-badge {
  font-family: var(--font-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(255, 106, 43, 0.2);
}

.sub-copy {
  margin-top: 10px;
}

.plans-grid,
.mobile-layout {
  display: grid;
  gap: 18px;
}

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

.mobile-layout {
  grid-template-columns: 1.04fr 0.96fr;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #ffffff;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-intro-card .plan-card {
  max-width: 360px;
  margin-inline: auto;
  min-height: 0;
  padding: 20px 20px 18px;
}

.page-intro-card .mobile-layout .plan-card {
  align-self: start;
  max-width: none;
  width: 100%;
}

.info-card:hover,
.mobile-list-item:hover,
.band-item:hover,
.footer-block:hover {
  border-color: var(--line-strong);
}

.plan-card.featured {
  background: #ffffff;
}

.plan-card.featured::after {
  content: "Recomendado";
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--primary);
}

.plan-label {
  font-family: var(--font-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 42px;
  margin: 0 auto 14px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--secondary);
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(255, 106, 43, 0.24);
}

.page-intro-card .plan-label {
  font-family: var(--font-accent);
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2.1vw, 1.34rem);
}

.plan-speed {
  font-family: var(--font-accent);
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary-deep);
}

.page-intro-card .plan-speed {
  font-family: var(--font-accent);
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
}

.plan-detail {
  font-family: var(--font-accent);
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.page-intro-card .plan-detail {
  font-family: var(--font-accent);
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.plan-note,
.plan-meta {
  margin: 0 0 8px;
  color: var(--text-soft);
  line-height: 1.65;
}

.page-intro-card .plan-note,
.page-intro-card .plan-meta {
  margin-bottom: 8px;
  font-size: 1.03rem;
  line-height: 1.45;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 12px;
}

.page-intro-card .plan-price {
  margin: 4px 0 10px;
}

.plan-price strong {
  font-family: var(--font-accent);
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}

.page-intro-card .plan-price strong {
  font-family: var(--font-accent);
  font-size: clamp(2.15rem, 4vw, 3rem);
}

.plan-price span {
  color: var(--text-soft);
  font-weight: 700;
}

.plan-card .button-link {
  margin-top: auto;
  align-self: center;
}

.page-intro-card .plan-card .button-link {
  margin-top: 14px;
}

.page-intro-card .plan-price + .plan-note {
  margin-top: -4px;
}

.page-intro-card .plan-note + .plan-note,
.page-intro-card .plan-detail + .plan-note {
  margin-top: -2px;
}

.page-intro-card .plan-meta + .plan-price {
  margin-top: -2px;
}

.page-intro-card .plan-note + .plan-meta,
.page-intro-card .plan-detail + .plan-meta,
.page-intro-card .plan-price + .plan-meta {
  margin-top: 8px;
}

.page-fibra .page-intro-card .plans-grid,
.page-bundle .page-intro-card .plans-grid,
.page-wimax .page-intro-card .plans-grid,
.page-security .page-intro-card .plans-grid {
  max-width: 920px;
  gap: 22px;
}

.page-fibra .page-intro-card .plan-card,
.page-bundle .page-intro-card .plan-card,
.page-wimax .page-intro-card .plan-card,
.page-security .page-intro-card .plan-card {
  max-width: none;
  width: 100%;
  padding: 20px 24px 22px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.page-fibra .page-intro-card .plans-grid,
.page-bundle .page-intro-card .plans-grid {
  align-items: stretch;
}

.page-fibra .page-intro-card .plan-card,
.page-bundle .page-intro-card .plan-card {
  height: 100%;
}

.page-fibra .page-intro-card .offer-actions,
.page-bundle .page-intro-card .offer-actions {
  margin-top: auto;
}

.page-fibra .page-intro-card .offer-conditions-row,
.page-bundle .page-intro-card .offer-conditions-row {
  flex: 0 0 auto;
}

@media (min-width: 821px) {
  .page-bundle .page-intro-card .plan-card:not(.featured) .plan-price + .plan-note {
    margin-bottom: calc(1.45em + 14px);
  }
}

.page-fibra .page-intro-card .plan-label,
.page-bundle .page-intro-card .plan-label,
.page-wimax .page-intro-card .plan-label,
.page-security .page-intro-card .plan-label {
  min-height: 46px;
  margin-bottom: 12px;
  padding: 0 20px;
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
}

.page-fibra .page-intro-card .plan-speed,
.page-bundle .page-intro-card .plan-speed,
.page-wimax .page-intro-card .plan-speed,
.page-security .page-intro-card .plan-speed {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 43, 103, 0.12);
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  color: #17203b;
}

.page-fibra .page-intro-card .plan-detail,
.page-bundle .page-intro-card .plan-detail,
.page-wimax .page-intro-card .plan-detail,
.page-security .page-intro-card .plan-detail {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.page-fibra .page-intro-card .plan-note,
.page-fibra .page-intro-card .plan-meta,
.page-bundle .page-intro-card .plan-note,
.page-bundle .page-intro-card .plan-meta,
.page-wimax .page-intro-card .plan-note,
.page-wimax .page-intro-card .plan-meta,
.page-security .page-intro-card .plan-note,
.page-security .page-intro-card .plan-meta {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.45;
}

.page-fibra .page-intro-card .plan-price,
.page-bundle .page-intro-card .plan-price,
.page-wimax .page-intro-card .plan-price,
.page-security .page-intro-card .plan-price {
  gap: 8px;
  margin: 6px 0 8px;
}

.page-fibra .page-intro-card .plan-price strong,
.page-bundle .page-intro-card .plan-price strong,
.page-wimax .page-intro-card .plan-price strong,
.page-security .page-intro-card .plan-price strong {
  font-size: clamp(2.5rem, 3.6vw, 3.3rem);
  letter-spacing: -0.05em;
  color: #111111;
}

.page-fibra .page-intro-card .plan-price span,
.page-bundle .page-intro-card .plan-price span,
.page-wimax .page-intro-card .plan-price span,
.page-security .page-intro-card .plan-price span {
  font-size: 1.04rem;
  color: #46556f;
}

.page-fibra .page-intro-card .plan-card .button-link,
.page-bundle .page-intro-card .plan-card .button-link,
.page-wimax .page-intro-card .plan-card .button-link,
.page-security .page-intro-card .plan-card .button-link {
  align-self: flex-start;
  min-width: 172px;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 24px;
  border-radius: 18px;
}

.page-fibra .page-intro-card .plan-card .button-link.primary,
.page-bundle .page-intro-card .plan-card .button-link.primary,
.page-wimax .page-intro-card .plan-card .button-link.primary,
.page-security .page-intro-card .plan-card .button-link.primary,
.page-mobile .page-intro-card .button-link.primary {
  background: #3143c4;
  border-color: #3143c4;
}

.page-fibra .page-intro-card .plan-card .button-link.primary:hover,
.page-bundle .page-intro-card .plan-card .button-link.primary:hover,
.page-wimax .page-intro-card .plan-card .button-link.primary:hover,
.page-security .page-intro-card .plan-card .button-link.primary:hover,
.page-mobile .page-intro-card .button-link.primary:hover {
  background: #3143c4;
  border-color: #3143c4;
}

.page-security .page-intro-card > p {
  max-width: 56ch;
}

.page-security .page-intro-card .plans-grid {
  max-width: 1080px;
  grid-template-columns: 1fr;
  margin-top: 38px;
}

.page-security .page-intro-card .security-plan-card {
  padding: 30px;
  border-radius: 32px;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
}

.page-security .page-intro-card .security-plan-card.featured::after {
  content: "Oferta destacada";
}

.security-plan-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.security-plan-copy {
  display: grid;
  align-content: start;
}

.security-plan-title {
  margin: 0 0 12px;
  font-family: var(--font-accent);
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #17203b;
}

.security-plan-subtitle {
  max-width: 46ch;
  margin: 0 0 22px;
  color: #4b5565;
  font-size: 1.06rem;
  line-height: 1.7;
}

.security-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-feature-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: 20px;
  background: #f6f8ff;
  color: #1f2a44;
  font-size: 1.02rem;
  line-height: 1.5;
}

.security-feature-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3143c4 0%, #4258d6 100%);
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(49, 67, 196, 0.22);
}

.security-feature-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 7px;
  height: 3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-60%) rotate(-45deg);
}

.security-price-panel {
  display: grid;
  gap: 10px;
  padding: 28px 24px 24px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(160deg, #18245f 0%, #24358f 52%, #3654cc 100%);
  box-shadow: 0 22px 44px rgba(25, 38, 114, 0.28);
}

.security-price-kicker {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.page-security .page-intro-card .security-price-panel .plan-price {
  justify-content: flex-start;
  margin: 2px 0 4px;
}

.page-security .page-intro-card .security-price-panel .plan-price strong,
.page-security .page-intro-card .security-price-panel .plan-price span,
.page-security .page-intro-card .security-price-panel .plan-meta {
  color: #ffffff;
}

.page-security .page-intro-card .security-price-panel .plan-price strong {
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(8, 17, 61, 0.24);
}

.page-security .page-intro-card .security-price-panel .plan-price span {
  color: #ffe7b2;
  font-size: 1.08rem;
  font-weight: 800;
}

.page-security .page-intro-card .security-price-panel .plan-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-security .page-intro-card .security-price-panel .offer-actions {
  margin-top: 8px;
}

.page-security .page-intro-card .security-price-panel .button-link.primary {
  color: #ffffff;
  background: #3143c4;
  border-color: #3143c4;
  box-shadow: 0 14px 28px rgba(8, 17, 61, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.page-security .page-intro-card .security-price-panel .button-link.primary:hover {
  color: #ffffff;
  background: #3143c4;
  border-color: #3143c4;
}

.page-security .page-intro-card .security-price-panel .button-link.secondary {
  color: var(--primary-deep);
  background: #ffffff;
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(8, 17, 61, 0.12);
}

.page-security .page-intro-card .security-price-panel .button-link.secondary:hover {
  color: var(--primary);
  background: #f8faff;
  border-color: var(--primary);
}

.security-addon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 100%);
  border: 1px solid rgba(49, 67, 196, 0.12);
}

.security-addon strong {
  font-size: 1.18rem;
  color: #17203b;
}

.security-addon span:last-child {
  color: #4b5565;
  font-weight: 700;
}

.page-security .security-offer-stack {
  display: grid;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.security-offer-hero,
.security-summary-card,
.security-price-card,
.security-extra-card,
.security-feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 22px 48px rgba(10, 12, 16, 0.18);
}

.security-offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 28px;
  padding: 38px;
  background:
    radial-gradient(circle at top right, rgba(87, 113, 255, 0.14) 0%, rgba(87, 113, 255, 0) 28%),
    linear-gradient(135deg, #1e2127 0%, #111318 44%, #090a0c 100%);
  box-shadow: 0 28px 60px rgba(3, 4, 6, 0.24);
}

.security-offer-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0) 100%);
}

.security-offer-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.security-side-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.security-offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #eef2ff;
  background: linear-gradient(135deg, #3143c4 0%, #4258d6 100%);
  box-shadow: 0 14px 28px rgba(49, 67, 196, 0.24);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.security-offer-title {
  max-width: 10ch;
  margin: 0;
  color: #7f97ff;
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 30px rgba(63, 89, 229, 0.18);
}

.security-offer-subtitle {
  max-width: 48ch;
  margin: 0;
  color: rgba(229, 231, 235, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}

.security-offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-offer-points li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #dde5ff;
  background: rgba(49, 67, 196, 0.14);
  border: 1px solid rgba(112, 136, 255, 0.24);
  font-weight: 700;
}

.security-offer-points-side {
  display: grid;
  gap: 10px;
}

.security-offer-points-side li {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.security-offer-price-highlight {
  display: grid;
  gap: 12px;
  justify-self: start;
  max-width: min(100%, 440px);
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(126, 149, 255, 0.24);
  background:
    radial-gradient(circle at top right, rgba(109, 132, 255, 0.2) 0%, rgba(109, 132, 255, 0) 34%),
    linear-gradient(180deg, rgba(24, 29, 39, 0.96) 0%, rgba(12, 15, 21, 0.98) 100%);
  box-shadow: 0 20px 40px rgba(6, 8, 12, 0.24);
}

.security-offer-price-highlight .security-card-kicker {
  color: #afbeff;
}

.security-offer-hero .security-offer-price-highlight .security-price {
  margin: 0;
}

.security-offer-hero .security-offer-price-highlight .security-price strong {
  font-size: clamp(3.3rem, 5vw, 4.9rem);
}

.security-offer-hero .security-offer-price-highlight .security-price span {
  color: #dfe7ff;
}

.security-offer-price-note {
  margin: 0;
  color: rgba(229, 231, 235, 0.82);
  line-height: 1.6;
}

.security-summary-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-color: rgba(103, 125, 255, 0.16);
  background: linear-gradient(180deg, #2a2f38 0%, #151920 100%);
  align-self: start;
}

.security-card-kicker {
  margin: 0;
  color: #8ca1ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.security-summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-summary-list li {
  position: relative;
  padding-left: 18px;
  color: #f5f5f5;
  line-height: 1.6;
}

.security-summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6f89ff;
  transform: translateY(-50%);
}

.security-lock-card {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.security-lock-icon {
  display: block;
  width: min(100%, 200px);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(63, 89, 229, 0.16));
}

.security-offer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.security-promo-intro {
  max-width: 36ch;
  margin: 20px auto 6px;
  color: #1b243a;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.security-price-card,
.security-extra-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 34px 34px 32px;
  border: 1px solid rgba(103, 125, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 24px 48px rgba(3, 4, 6, 0.24);
}

.security-price-card::before,
.security-extra-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
}

.security-price-card {
  background:
    radial-gradient(circle at top right, rgba(90, 115, 255, 0.14) 0%, rgba(90, 115, 255, 0) 30%),
    linear-gradient(135deg, #1e2127 0%, #111318 44%, #090a0c 100%);
}

.security-price-card::before {
  background: linear-gradient(90deg, #3143c4 0%, #5068ea 44%, #91a7ff 100%);
}

.security-extra-card::before {
  background: linear-gradient(90deg, #4258d6 0%, #6f8aff 46%, #c7d4ff 100%);
}

.security-discount-title {
  margin: 0;
  color: #7f97ff;
  font-family: var(--font-accent);
  font-size: clamp(2.2rem, 3.3vw, 3.25rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.security-promo-label {
  align-self: flex-start;
  min-height: 36px;
  margin: 0;
  padding: 0 14px;
  font-size: clamp(0.84rem, 1.1vw, 0.96rem);
  background: linear-gradient(135deg, #3143c4 0%, #5d78ff 100%);
  box-shadow: 0 14px 30px rgba(49, 67, 196, 0.22);
}

.security-price-compare {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: -4px 0 0;
  color: rgba(231, 236, 255, 0.76);
}

.security-price-compare span {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.security-price-compare strong {
  color: #cbd7ff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(203, 215, 255, 0.7);
}

.security-promo-highlight {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px 12px;
  align-items: end;
  min-width: min(100%, 320px);
  padding: 20px 22px 18px;
  border-radius: 28px;
  border: 1px solid rgba(126, 149, 255, 0.24);
  background:
    radial-gradient(circle at top right, rgba(109, 132, 255, 0.2) 0%, rgba(109, 132, 255, 0) 34%),
    linear-gradient(180deg, rgba(24, 29, 39, 0.96) 0%, rgba(12, 15, 21, 0.98) 100%);
  box-shadow: 0 20px 40px rgba(6, 8, 12, 0.24);
}

.security-promo-highlight strong {
  grid-column: 1 / -1;
  color: #7f97ff;
  font-family: var(--font-accent);
  font-size: clamp(3.3rem, 5.2vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: none;
}

.security-promo-highlight span,
.security-promo-highlight small {
  color: #dfe7ff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-promo-highlight small {
  justify-self: end;
}

.security-promo-highlight-bonus {
  border-color: rgba(86, 110, 235, 0.16);
}

.security-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.security-price strong {
  color: #6f89ff;
  font-family: var(--font-accent);
  font-size: clamp(3.7rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 14px 34px rgba(63, 89, 229, 0.2);
}

.security-price span {
  color: #cbd7ff;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-discount-period {
  margin: -4px 0 0;
  color: #dfe6ff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-price-note {
  max-width: 48ch;
  margin: 0;
  color: rgba(229, 231, 235, 0.78);
  line-height: 1.65;
}

.security-promo-copy {
  max-width: 30ch;
  margin: 0;
  color: rgba(229, 231, 235, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.security-price-card .security-promo-copy,
.security-extra-card .security-promo-copy {
  color: rgba(229, 231, 235, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.security-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.security-trust-card {
  position: relative;
  padding: 18px 18px 18px 44px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(49, 67, 196, 0.18) 0%, rgba(49, 67, 196, 0.08) 100%);
  border: 1px solid rgba(118, 141, 255, 0.2);
}

.security-trust-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7d94ff;
  box-shadow: 0 0 0 6px rgba(125, 148, 255, 0.16);
}

.security-trust-card p {
  margin: 0;
  color: #e7edff;
  font-weight: 700;
  line-height: 1.55;
}

.security-offer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.security-offer-details span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #edf1ff;
  background: rgba(49, 67, 196, 0.14);
  border: 1px solid rgba(112, 136, 255, 0.24);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-security .security-offer-meta .offer-actions {
  width: 100%;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 10px;
}

.page-security .security-offer-meta .button-link {
  min-width: 214px;
  min-height: 56px;
  padding: 0 28px;
  margin-top: 0;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 16px 32px rgba(49, 67, 196, 0.18);
}

.page-security .security-offer-meta .button-link.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #3143c4 0%, #4258d6 100%);
  border-color: #4258d6;
  box-shadow: 0 18px 36px rgba(49, 67, 196, 0.32);
}

.page-security .security-offer-meta .button-link.primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #384bd1 0%, #4f66e2 100%);
  border-color: #4f66e2;
  box-shadow: 0 22px 40px rgba(49, 67, 196, 0.36);
}

.page-security .security-offer-meta .button-link.secondary {
  color: #edf1ff;
  background: linear-gradient(180deg, #232934 0%, #11141a 100%);
  border-color: rgba(112, 136, 255, 0.28);
  box-shadow: 0 14px 30px rgba(6, 8, 12, 0.2);
}

.page-security .security-offer-meta .button-link.secondary:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #2a313d 0%, #151920 100%);
  border-color: rgba(136, 160, 255, 0.36);
}

.security-extra-card {
  background:
    radial-gradient(circle at top right, rgba(87, 113, 255, 0.16) 0%, rgba(87, 113, 255, 0) 34%),
    linear-gradient(180deg, #2a2f38 0%, #151920 100%);
}

.security-extra-card > strong {
  margin: 0;
  color: #89a0ff;
  font-family: var(--font-accent);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.security-extra-card > p:not(.security-card-kicker):not(.security-promo-copy):not(.plan-label) {
  margin: 0;
  color: rgba(231, 236, 255, 0.8);
  line-height: 1.6;
}

.security-extra-card .security-card-kicker {
  color: #8ca1ff;
}

.security-extra-card .security-discount-title {
  color: #89a0ff;
}

.security-extra-card .security-promo-highlight strong {
  color: #89a0ff;
  font-size: clamp(3.3rem, 5.2vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.security-promo-bonus {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 2px;
}

.security-promo-bonus strong {
  color: #a9baff;
  font-family: var(--font-accent);
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 14px 32px rgba(63, 89, 229, 0.22);
}

.security-promo-bonus span {
  color: #dfe6ff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-trust-grid,
.security-extra-list {
  display: none;
}

.security-extra-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.security-extra-price span {
  color: #6f89ff;
  font-family: var(--font-accent);
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 14px 32px rgba(63, 89, 229, 0.22);
}

.security-extra-price small {
  color: #dfe6ff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-extra-list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-extra-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #edf1ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(136, 160, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
}

.security-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.security-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 28px 24px;
  border-color: rgba(96, 120, 244, 0.14);
  background: linear-gradient(180deg, #232934 0%, #11141a 100%);
}

.security-feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #eef2ff;
  background: linear-gradient(135deg, #3143c4 0%, #4258d6 100%);
  font-family: var(--font-accent);
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  box-shadow: 0 14px 28px rgba(49, 67, 196, 0.24);
}

.security-feature-card h3 {
  margin: 0;
  color: #89a0ff;
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.security-feature-card p {
  margin: 0;
  color: rgba(229, 231, 235, 0.78);
  line-height: 1.65;
}

body.contact-modal-open {
  overflow: hidden;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.offer-actions .button-link {
  margin-top: 0;
}

.offer-conditions-row {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 8px;
}

.offer-conditions-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.offer-conditions-link:hover,
.offer-conditions-link:focus-visible {
  opacity: 0.78;
}

.promo-mini-actions + .offer-conditions-row,
.home-promo-actions + .offer-conditions-row {
  justify-content: center;
}

.home-tv-promo-copy .offer-conditions-link,
.home-location-promo-copy .offer-conditions-link,
.page-security .page-intro-card .security-price-panel .offer-conditions-link {
  color: #ffffff;
}

.page-security .security-offer-meta .offer-conditions-link {
  color: #ffffff;
}

.tv-sports-price-card .offer-conditions-link {
  color: #edf7f0;
}

.tv-offer-section.is-premium .tv-basic-plan-card .offer-conditions-link {
  color: #f0ce84;
}

.contact-trigger {
  cursor: pointer;
  font: inherit;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 10px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.42);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(49, 67, 196, 0.35);
  outline-offset: 4px;
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.contact-modal[hidden] {
  display: none;
}

.contact-dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 24px 24px;
  border: 1px solid rgba(49, 67, 196, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.32);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(49, 67, 196, 0.18);
  border-radius: 999px;
  background: #f8faff;
  color: #3143c4;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-close:hover {
  transform: translateY(-1px);
  border-color: #3143c4;
  background: #eef2ff;
}

.contact-title {
  margin: 14px 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-text {
  margin: 0 0 18px;
  color: #46556f;
}

.contact-number {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-accent);
  font-size: clamp(2rem, 6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #17203b;
}

.contact-call {
  width: 100%;
}

.page-mobile .page-intro-card .plan-label {
  min-height: 46px;
  margin-bottom: 12px;
  padding: 0 20px;
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
}

.page-mobile .page-intro-card .mobile-layout {
  grid-template-columns: minmax(0, 400px) minmax(0, 440px);
  max-width: 880px;
  gap: 22px;
}

.page-mobile .page-intro-card .mobile-main-card,
.page-mobile .page-intro-card .mobile-side-card {
  width: 100%;
  padding: 20px 24px 22px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.page-mobile .page-intro-card .mobile-main-card {
  justify-content: space-between;
  gap: 14px;
}

.page-mobile .page-intro-card .mobile-main-card .plan-speed {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 43, 103, 0.12);
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  color: #17203b;
}

.page-mobile .page-intro-card .mobile-main-card .plan-detail {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.page-mobile .page-intro-card .mobile-main-card .plan-note,
.page-mobile .page-intro-card .mobile-main-card .plan-meta {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.45;
}

.page-mobile .page-intro-card .mobile-main-card .button-link {
  align-self: flex-start;
  min-width: 172px;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 24px;
  border-radius: 18px;
}

.page-mobile .page-intro-card .mobile-main-card .plan-price {
  justify-content: center;
  margin: 6px 0 8px;
}

.page-mobile .page-intro-card .mobile-main-card .plan-price strong {
  font-size: clamp(2.5rem, 3.6vw, 3.3rem);
  letter-spacing: -0.05em;
  color: #111111;
}

.page-mobile .page-intro-card .mobile-side-card {
  align-self: stretch;
}

.page-mobile .page-intro-card .mobile-side-card .plan-label {
  align-self: flex-start;
  margin-bottom: 18px;
}

.mobile-list {
  display: grid;
  gap: 14px;
}

.page-mobile .page-intro-card .mobile-list-item {
  padding: 16px 18px;
  border: 1px solid rgba(16, 43, 103, 0.12);
  border-radius: 20px;
  background: #f7f9ff;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.page-mobile .page-intro-card .mobile-list-item:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.mobile-list-head,
.mobile-list-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-list-head {
  flex-direction: row;
}

.mobile-list-actions {
  justify-content: flex-end;
}

.mobile-list-item strong {
  font-family: var(--font-accent);
  font-size: 1.08rem;
  line-height: 1.35;
  color: #17203b;
}

.mobile-list-actions span {
  font-family: var(--font-accent);
  color: #111111;
  font-size: 1.5rem;
  font-weight: 800;
  white-space: nowrap;
}

.mobile-toggle-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(49, 67, 196, 0.18);
  border-radius: 14px;
  color: #3143c4;
  background: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mobile-toggle-button.is-open {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.mobile-list-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease, margin-top 0.2s ease;
}

.mobile-list-extra.is-open {
  max-height: 220px;
  opacity: 1;
  margin-top: 12px;
}

.mobile-extra-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.mobile-extra-actions .button-link {
  width: auto;
  margin-top: 0;
  white-space: nowrap;
}

.mobile-extra-button {
  min-width: 150px;
  min-height: 44px;
  border-radius: 16px;
}

.page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions {
  gap: 8px;
}

.page-mobile .page-intro-card .mobile-side-card .mobile-extra-button {
  min-width: 0;
  padding: 0 16px;
  font-size: 0.92rem;
}

.page-tv .page-intro-card {
  padding-bottom: 26px;
  background: #3143c4;
}

.page-tv .page-intro-card > h1 {
  margin-bottom: 0;
}

.page-security .page-intro-card {
  padding-bottom: 26px;
  background: #3143c4;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.page-security .page-intro-card > h1 {
  margin-bottom: 0;
}

.security-copy-section {
  margin: 28px auto 0;
  padding: 0 34px;
}

.security-intro-copy {
  max-width: 920px;
  margin: 0 auto;
  color: #111111;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.security-offer-section {
  margin: 44px auto 0;
  padding: 0 34px;
}

.tv-copy-section {
  margin: 28px auto 0;
  padding: 0 34px;
}

.tv-intro-copy {
  max-width: 920px;
  margin: 0 auto;
  color: #111111;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tv-copy-kicker {
  max-width: 920px;
  margin: 42px auto 0;
  color: #111111;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tv-copy-subtext {
  margin: 16px auto 0;
  max-width: 820px;
  color: #5f6b7a;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.6;
}

.tv-channel-showcase {
  position: relative;
  display: grid;
  gap: 54px;
  margin: 42px 0 0;
  padding: 24px 0 26px;
  background: var(--bg);
  overflow: hidden;
}

.tv-offer-section {
  margin: 38px auto 0;
  padding: 0 34px;
}

.tv-plan-panel {
  display: grid;
}

.tv-offer-section .tv-intro-copy {
  max-width: 980px;
}

.tv-plan-panel.is-leaving-left {
  animation: tvPlanOutLeft 0.28s ease forwards;
}

.tv-plan-panel.is-leaving-right {
  animation: tvPlanOutRight 0.28s ease forwards;
}

.tv-plan-panel.is-entering-left {
  animation: tvPlanInLeft 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.tv-plan-panel.is-entering-right {
  animation: tvPlanInRight 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.tv-basic-plan-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(320px, 1.04fr);
  gap: 24px;
  margin-top: 28px;
}

.tv-basic-plan-card,
.tv-basic-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(49, 67, 196, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 252, 0.98) 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.tv-basic-plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 30px 30px 32px;
}

.tv-basic-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--secondary) 0%, #ff8f3a 42%, var(--primary) 100%);
}

.tv-basic-plan-card .plan-label {
  margin-left: 0;
  margin-right: 0;
}

.tv-basic-plan-title {
  margin: 6px 0 0;
  color: var(--primary-deep);
  font-family: var(--font-accent);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.tv-basic-plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 12px;
}

.tv-basic-plan-price strong {
  color: var(--text);
  font-family: var(--font-accent);
  font-size: clamp(3.1rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.tv-basic-plan-price span {
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tv-basic-plan-note {
  max-width: 28ch;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.tv-basic-plan-card .offer-actions {
  margin-top: 22px;
}

.tv-basic-plan-card .button-link {
  margin-top: 0;
}

.tv-plan-switcher-shell {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 28px;
}

.tv-plan-switcher-kicker {
  margin: 0;
  color: #5f6b7a;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tv-plan-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, #151923 0%, #202634 100%);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.tv-plan-switch {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 92px;
  padding: 16px 22px;
  border: 0;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tv-plan-switch:hover {
  transform: translateY(-1px);
  color: #ffffff;
}

.tv-plan-switch.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a2b 0%, #ff8c42 34%, #3143c4 100%);
  box-shadow: 0 18px 34px rgba(49, 67, 196, 0.26);
}

.tv-plan-switch-title {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.tv-plan-switch-meta {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tv-basic-plan-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tv-basic-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 150px;
  padding: 26px 24px;
  border: 0;
  background: linear-gradient(180deg, #3a3c42 0%, #2f3136 100%);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
}

.tv-basic-feature-wide {
  grid-column: 1 / -1;
}

.tv-basic-feature-compact {
  flex-direction: column;
  gap: 14px;
  text-align: center;
  padding: 24px 20px 26px;
}

.tv-basic-feature p {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tv-basic-feature-compact p {
  max-width: 11ch;
  font-size: clamp(1.12rem, 1.5vw, 1.5rem);
  line-height: 1.14;
  text-align: center;
}

.tv-basic-feature-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.tv-basic-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tv-basic-feature-icon.is-blue {
  color: #78a0ff;
}

.tv-basic-feature-icon.is-orange {
  color: #ff9b47;
}

.tv-basic-feature-icon.is-purple {
  color: #c27cff;
}

.tv-basic-feature-wide {
  justify-content: center;
  padding-inline: 32px;
}

.tv-basic-feature-wide p {
  text-align: center;
}

.tv-offer-section.is-premium .tv-intro-copy {
  color: #1d160d;
}

.tv-offer-section.is-premium .tv-basic-plan-card {
  border-color: rgba(217, 171, 74, 0.28);
  background: linear-gradient(180deg, #2a2117 0%, #17120d 100%);
  box-shadow: 0 22px 46px rgba(24, 16, 7, 0.24);
}

.tv-offer-section.is-premium .tv-basic-plan-card::before {
  background: linear-gradient(90deg, #fff1bf 0%, #edc979 36%, #b67b1d 100%);
}

.tv-offer-section.is-premium .tv-basic-plan-card .plan-label {
  color: #1c1408;
  background: linear-gradient(135deg, #fff3c8 0%, #e7c273 48%, #bb8328 100%);
  box-shadow: 0 12px 28px rgba(183, 129, 26, 0.28);
}

.tv-offer-section.is-premium .tv-basic-plan-title {
  color: #f4d894;
}

.tv-offer-section.is-premium .tv-basic-plan-price strong {
  color: #fff2c7;
}

.tv-offer-section.is-premium .tv-basic-plan-price span,
.tv-offer-section.is-premium .tv-basic-plan-note {
  color: rgba(255, 238, 205, 0.82);
}

.tv-offer-section.is-premium .tv-basic-plan-card .button-link.primary {
  color: #1a1206;
  border-color: #f0ce84;
  background: linear-gradient(135deg, #fff2c3 0%, #efcd84 44%, #c9912f 100%);
}

.tv-offer-section.is-premium .tv-basic-plan-card .button-link.primary:hover {
  border-color: #e2ba69;
  background: linear-gradient(135deg, #fbe7b2 0%, #e4ba67 44%, #b87e1f 100%);
}

.tv-offer-section.is-premium .tv-basic-plan-card .button-link.secondary {
  color: #f0ce84;
  border-color: rgba(217, 171, 74, 0.76);
  background: linear-gradient(180deg, #16110b 0%, #050403 100%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.tv-offer-section.is-premium .tv-basic-plan-card .button-link.secondary:hover {
  color: #fff1c8;
  border-color: #f0ce84;
  background: linear-gradient(180deg, #21170d 0%, #090603 100%);
}

.tv-offer-section.is-premium .tv-basic-feature {
  border: 1px solid rgba(217, 171, 74, 0.18);
  background: linear-gradient(180deg, #2a2117 0%, #17120d 100%);
  box-shadow: 0 20px 38px rgba(24, 16, 7, 0.24);
}

.tv-offer-section.is-premium .tv-basic-feature-icon.is-blue {
  color: #e2bb6b;
}

.tv-offer-section.is-premium .tv-basic-feature-icon.is-orange {
  color: #f4d48f;
}

.tv-offer-section.is-premium .tv-basic-feature-icon.is-purple {
  color: #c99234;
}

.tv-offer-section.is-premium .tv-plan-switcher-kicker {
  color: #96743a;
}

.tv-offer-section.is-premium .tv-plan-switcher {
  background: linear-gradient(180deg, #20180f 0%, #2b2217 100%);
  box-shadow: 0 22px 46px rgba(24, 16, 7, 0.18);
}

.tv-offer-section.is-premium .tv-plan-switch:not(.is-active) {
  color: rgba(255, 241, 211, 0.82);
}

.tv-offer-section.is-premium .tv-plan-switch.is-active {
  color: #1a1206;
  background: linear-gradient(135deg, #fff2c3 0%, #efcd84 44%, #c9912f 100%);
  box-shadow: 0 18px 34px rgba(183, 129, 26, 0.28);
}

.tv-sports-offer {
  margin: 46px auto 0;
  padding: 0 34px;
}

.tv-sports-lead {
  margin: 18px auto 26px;
  color: #1a261d;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.tv-sports-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 42px 40px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(8, 18, 12, 0.78) 0%, rgba(14, 37, 20, 0.72) 34%, rgba(18, 57, 29, 0.68) 100%),
    url("assets/fondo deportes.jpg") center 42%/cover no-repeat;
  border: 1px solid rgba(96, 185, 112, 0.18);
  box-shadow: 0 26px 56px rgba(7, 19, 11, 0.3);
}

.tv-sports-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% 34%;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 214, 121, 0.26) 0%, rgba(104, 214, 121, 0) 74%);
  pointer-events: none;
}

.tv-sports-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(0deg, rgba(68, 142, 75, 0.18) 0%, rgba(68, 142, 75, 0) 36%);
  pointer-events: none;
}

.tv-sports-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.tv-sports-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: #08220f;
  background: linear-gradient(135deg, #b2f2bd 0%, #79cd86 52%, #46a457 100%);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tv-sports-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.tv-sports-subtitle {
  max-width: 36ch;
  margin: 0;
  color: rgba(230, 243, 233, 0.86);
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.6;
}

.tv-sports-meta {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(280px, 1.28fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
}

.tv-sports-summary-card,
.tv-sports-price-card,
.tv-sports-channel-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.tv-sports-summary-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px 24px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #5a6065 0%, #474d52 100%);
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.18);
}

.tv-sports-summary-kicker {
  margin: 0;
  color: rgba(185, 230, 194, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tv-sports-summary-card strong {
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.tv-sports-summary-card span {
  color: rgba(227, 238, 229, 0.8);
  line-height: 1.6;
}

.tv-sports-price-card {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #666c71 0%, #50565b 100%);
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.2);
}

.tv-sports-price-kicker {
  margin: 0;
  color: #d7f4dd;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tv-sports-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.tv-sports-price strong {
  color: #9dffaf;
  font-family: var(--font-accent);
  font-size: clamp(3.1rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 26px rgba(157, 255, 175, 0.18);
}

.tv-sports-price span {
  color: rgba(236, 246, 238, 0.86);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tv-sports-price-note {
  max-width: 44ch;
  margin: 0;
  color: rgba(243, 247, 244, 0.82);
  line-height: 1.6;
}

.tv-sports-price-card .offer-actions {
  margin-top: 6px;
}

.tv-sports-price-card .button-link {
  margin-top: 0;
}

.tv-sports-price-card .button-link.primary {
  color: #08170d;
  border-color: #79d28a;
  background: linear-gradient(135deg, #b0f0bc 0%, #79cd86 50%, #43a155 100%);
}

.tv-sports-price-card .button-link.primary:hover {
  border-color: #67bc78;
  background: linear-gradient(135deg, #97dfa5 0%, #64ba72 50%, #368847 100%);
}

.tv-sports-price-card .button-link.secondary {
  color: #ddf8e2;
  border-color: rgba(121, 210, 138, 0.74);
  background: linear-gradient(180deg, #27372c 0%, #17211a 100%);
  box-shadow: 0 16px 30px rgba(7, 19, 11, 0.26);
}

.tv-sports-price-card .button-link.secondary:hover {
  color: #f5fff7;
  border-color: #9dffaf;
  background: linear-gradient(180deg, #314538 0%, #1d2a21 100%);
}

.tv-sports-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 280px));
  gap: 18px;
  justify-content: center;
  max-width: 960px;
  margin: 22px auto 0;
  align-items: center;
}

.tv-sports-channel-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 0;
  padding: 18px 10px 22px;
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.tv-sports-channel-logo {
  display: block;
  width: min(100%, 420px);
  max-height: 154px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.42));
}

.tv-sports-channel-logo-large {
  max-height: 170px;
}

.tv-sports-channel-logo-eurosport {
  width: min(100%, 500px);
  max-height: 196px;
}

.tv-sports-channel-name {
  display: none;
}

.tv-sports-channel-more {
  margin: -28px auto 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #526057;
}

.tv-channel-showcase::before,
.tv-channel-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 64px;
  pointer-events: none;
}

.tv-channel-showcase::before {
  left: 0;
  background: linear-gradient(90deg, rgba(244, 246, 248, 1) 0%, rgba(244, 246, 248, 0.98) 18%, rgba(244, 246, 248, 0.88) 42%, rgba(244, 246, 248, 0.58) 68%, rgba(244, 246, 248, 0) 100%);
}

.tv-channel-showcase::after {
  right: 0;
  background: linear-gradient(270deg, rgba(244, 246, 248, 1) 0%, rgba(244, 246, 248, 0.98) 18%, rgba(244, 246, 248, 0.88) 42%, rgba(244, 246, 248, 0.58) 68%, rgba(244, 246, 248, 0) 100%);
}

.tv-channel-row {
  display: flex;
  gap: 44px;
  overflow: hidden;
}

.tv-channel-track {
  display: flex;
  flex-shrink: 0;
  gap: 44px;
  min-width: max-content;
  animation: tvChannelMarquee 56s linear infinite;
}

.tv-channel-row.reverse .tv-channel-track {
  animation-name: tvChannelMarqueeReverse;
  animation-duration: 60s;
}

.tv-channel-row.short .tv-channel-track {
  animation: none;
  position: relative;
  min-width: 100%;
  height: 208px;
}

.tv-channel-row.short .tv-channel-card {
  position: absolute;
  top: 0;
  left: 0;
}

.tv-channel-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 208px;
  height: 208px;
  border-radius: 0;
  padding: 16px;
  background: var(--channel-card-bg, #ffffff);
  box-shadow: none;
}

.tv-channel-card-fallback {
  background: radial-gradient(circle at 50% 50%, #3b82f6 0%, #2563eb 62%, #1d4ed8 100%);
}

.tv-channel-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tv-channel-logo-fill {
  object-fit: contain;
}

.tv-channel-logo-white {
  filter: brightness(0) invert(1);
}

.tv-channel-logo-large {
  transform: scale(2.44);
  transform-origin: center;
}

.tv-channel-logo-medium {
  transform: scale(1.24);
  transform-origin: center;
}

.tv-channel-logo-tdp {
  transform: scale(1.38);
  transform-origin: center;
}

.tv-channel-fallback-text {
  color: #ffffff;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

@keyframes tvChannelMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 44px));
  }
}

@keyframes tvChannelMarqueeReverse {
  from {
    transform: translateX(calc(-100% - 44px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes tvPlanOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateX(-74px);
    filter: blur(6px);
  }
}

@keyframes tvPlanOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateX(74px);
    filter: blur(6px);
  }
}

@keyframes tvPlanInLeft {
  from {
    opacity: 0;
    transform: translateX(-74px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes tvPlanInRight {
  from {
    opacity: 0;
    transform: translateX(74px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.site-footer {
  margin-top: 40px;
  color: #d8dbe8;
  background: linear-gradient(180deg, #0d1017 0%, #07090f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-upper {
  width: var(--shell);
  margin: 0 auto;
  padding: 40px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.footer-block {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-block:hover {
  border-color: transparent;
}

.footer-block:first-child {
  padding-right: 32px;
}

.footer-block + .footer-block {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-block h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-block p,
.footer-copy {
  margin: 0;
  color: rgba(225, 230, 245, 0.88);
  line-height: 1.75;
}

.footer-action {
  margin-top: 18px;
}

.footer-contact-button {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.footer-contact-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.52);
}

.footer-lower {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 34px;
}

.footer-lower-inner {
  width: var(--shell);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  width: min(360px, 82vw);
  height: auto;
  max-height: 132px;
  object-fit: contain;
}

.footer-copy {
  margin-top: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-social a[aria-label^="Facebook"] svg {
  fill: currentColor;
}

.footer-social a[aria-label^="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.icon-mobile svg { animation: phoneBob 2s ease-in-out infinite; }
.wave-1 { animation: wifiPulse 1.8s linear infinite; }
.wave-2 { animation: wifiPulse 1.8s linear infinite 0.9s; }
.bar.b1 { animation: barLift 1.5s ease-in-out infinite; }
.bar.b2 { animation: barLift 1.5s ease-in-out infinite 0.15s; }
.bar.b3 { animation: barLift 1.5s ease-in-out infinite 0.3s; }

@keyframes riseArrow {
  0%, 100% { opacity: 0; transform: translateY(4px); }
  50% { opacity: 1; transform: translateY(-4px); }
}

@keyframes wifiPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

@keyframes phoneBob {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes barLift {
  0%, 100% { transform: scaleY(0.78); transform-origin: bottom; }
  50% { transform: scaleY(1.04); transform-origin: bottom; }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .security-plan-main {
    grid-template-columns: 1fr;
  }

  .security-offer-hero,
  .security-offer-meta {
    grid-template-columns: 1fr;
  }

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

  .tv-basic-plan-layout {
    grid-template-columns: 1fr;
  }

  .tv-plan-switcher {
    width: 100%;
  }

  .tv-sports-meta {
    grid-template-columns: 1fr;
  }

  .tv-sports-channel-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .info-band-grid,
  .section-grid,
  .plans-grid,
  .mobile-layout,
  .footer-upper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .main-nav li + li::before {
    display: none;
  }

  .main-nav a {
    justify-content: flex-start;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.06rem;
  }

  .main-nav a::after {
    bottom: 0;
    width: calc(100% - 24px);
  }
  .info-band-grid,
  .section-grid,
  .plans-grid,
  .mobile-layout,
  .footer-upper {
    grid-template-columns: 1fr;
  }

  .promo-hero {
    min-height: auto;
    padding: 0 0 40px;
  }

  .promo-hero-inner {
    min-height: auto;
  }

  .promo-bg-dots {
    bottom: 14px;
  }

  .promo-mini-plans {
    position: static;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }

  .home-tv-promo {
    width: auto;
    margin: 32px auto 20px;
  }

  .home-reviews {
    margin-top: 14px;
    padding-top: 24px;
  }

  .home-location-promo {
    width: auto;
    margin: 28px auto 20px;
  }

  .home-location-promo-card {
    min-height: 430px;
    padding: 34px 24px;
  }

  .page-security .page-intro-card .security-plan-card {
    padding: 24px;
  }

  .security-price-panel {
    padding: 24px 20px 22px;
  }

  .page-security .page-intro-card {
    border-radius: 22px;
  }

  .security-offer-hero {
    padding: 26px 24px;
  }

  .security-price-card,
  .security-extra-card {
    padding: 26px 24px;
  }

  .home-tv-promo-card {
    min-height: 430px;
    padding: 34px 24px;
  }

  .info-band {
    margin-top: 24px;
  }

  .tv-offer-section {
    padding: 0 20px;
  }

  .security-copy-section {
    padding: 0 20px;
  }

  .security-offer-section {
    padding: 0 20px;
  }

  .tv-sports-offer {
    padding: 0 20px;
  }

  .tv-basic-plan-features {
    grid-template-columns: 1fr;
  }

  .tv-basic-feature-wide {
    grid-column: auto;
  }

  .tv-sports-channel-grid {
    grid-template-columns: 1fr;
  }

  .tv-plan-switch {
    min-height: 84px;
  }

  .footer-block:first-child {
    padding-right: 0;
  }

  .footer-block + .footer-block {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1180px, calc(100% - 20px));
    --header-height: 68px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .header-logo {
    height: 48px;
    max-height: calc(var(--header-height) - 12px);
  }

  .promo-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .promo-mini-plan {
    padding: 22px;
    border-radius: 22px;
    min-height: auto;
  }

  .home-tv-promo-card {
    min-height: 380px;
  }

  .home-location-promo-card {
    min-height: 380px;
  }

  .home-review-card {
    flex-basis: 280px;
    min-height: 246px;
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  .home-reviews-marquee::before,
  .home-reviews-marquee::after {
    width: 34px;
  }

  .home-tv-promo-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .home-location-promo-title {
    font-size: clamp(2rem, 10vw, 3.1rem);
    max-width: 12ch;
  }

  .home-location-promo-text {
    font-size: 1rem;
    max-width: 30ch;
  }

  .home-tv-promo-text {
    font-size: 1rem;
    max-width: 32ch;
  }

  .security-plan-title {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .security-plan-subtitle {
    font-size: 1rem;
  }

  .security-offer-stack {
    gap: 18px;
  }

  .page-security .page-intro-card {
    border-radius: 20px;
  }

  .security-intro-copy {
    max-width: 920px;
    font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  }

  .security-offer-title {
    max-width: 12ch;
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .security-offer-subtitle {
    font-size: 1rem;
  }

  .security-offer-points li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .security-price {
    gap: 10px;
    flex-wrap: wrap;
  }

  .security-offer-price-highlight {
    width: 100%;
    padding: 22px 20px;
  }

  .security-trust-grid {
    grid-template-columns: 1fr;
  }

  .page-security .security-offer-meta .button-link {
    width: 100%;
  }

  .security-feature-grid {
    grid-template-columns: 1fr;
  }

  .security-feature-card {
    min-height: 0;
  }

  .security-feature-list li {
    padding: 13px 14px 13px 44px;
    border-radius: 18px;
    font-size: 0.98rem;
  }

  .security-addon {
    padding: 16px 16px 18px;
    border-radius: 20px;
  }

  .promo-mini-price strong {
  font-family: var(--font-accent);
    font-size: 2.7rem;
  }

  .hero {
    margin-top: 10px;
    padding-top: 34px;
    padding-bottom: 88px;
  }

  .hero-carousel {
    min-height: 380px;
  }

  .hero-slides {
    min-height: 300px;
  }

  .hero h1,
  .content-card h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .hero-highlight::before,
  .hero-highlight::after {
    display: none;
  }

  .content-card,
  .info-card,
  .plan-card,
  .mobile-list-item,
  .footer-block,
  .band-item,
  .highlight-box {
    border-radius: var(--radius-md);
  }

  .button-link,
  .footer-contact-button,
  .promo-mini-button,
  .home-tv-promo-button,
  .home-location-promo-button {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .mobile-list-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tv-copy-section,
  .tv-offer-section,
  .tv-sports-offer {
    padding: 0 12px;
  }

  .tv-basic-plan-card,
  .tv-basic-feature {
    border-radius: 24px;
  }

  .tv-basic-plan-card {
    padding: 24px 22px 26px;
  }

  .tv-basic-feature {
    min-height: 0;
    padding: 22px 20px;
  }

  .tv-basic-feature-icon {
    width: 58px;
    height: 58px;
  }

  .tv-sports-hero,
  .tv-sports-summary-card,
  .tv-sports-price-card,
  .tv-sports-channel-card {
    border-radius: 24px;
  }

  .tv-sports-hero {
    padding: 28px 22px 30px;
  }

  .tv-sports-price-card,
  .tv-sports-summary-card {
    padding: 24px 22px;
  }

  .tv-sports-channel-card {
    min-height: 0;
    padding: 14px 6px 18px;
  }

  .tv-sports-channel-logo {
    width: min(100%, 320px);
    max-height: 120px;
  }

  .tv-sports-channel-logo-large {
    max-height: 132px;
  }

  .tv-sports-channel-logo-eurosport {
    width: min(100%, 360px);
    max-height: 146px;
  }

  .tv-plan-switcher {
    padding: 8px;
    gap: 8px;
    border-radius: 24px;
  }

  .tv-plan-switch {
    min-height: 76px;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .tv-plan-switch-meta {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
}

.offer-actions,
.promo-mini-actions,
.home-promo-actions,
.mobile-extra-actions {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
}

.offer-actions .button-link,
.promo-mini-actions .promo-mini-button,
.promo-mini-actions .button-link,
.home-promo-actions .home-tv-promo-button,
.home-promo-actions .home-location-promo-button,
.home-promo-actions .button-link.secondary,
.mobile-extra-actions .button-link,
.page-fibra .page-intro-card .plan-card .offer-actions .button-link,
.page-bundle .page-intro-card .plan-card .offer-actions .button-link,
.page-wimax .page-intro-card .plan-card .offer-actions .button-link,
.page-security .page-intro-card .plan-card .offer-actions .button-link,
.page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link,
.page-security .security-offer-meta .offer-actions .button-link,
.tv-basic-plan-card .offer-actions .button-link,
.tv-sports-price-card .offer-actions .button-link {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  max-width: 238px;
  margin-top: 0;
  padding: 0 14px;
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  white-space: nowrap;
  text-align: center;
  align-self: auto;
}

.offer-conditions-row {
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.offer-conditions-link {
  margin: 0 auto;
}

.page-mobile .page-intro-card {
  padding-left: 28px;
  padding-right: 28px;
}

.page-mobile .page-intro-card .mobile-layout {
  grid-template-columns: minmax(0, 440px) minmax(0, 440px);
  max-width: 936px;
  gap: 24px;
}

.page-mobile .page-intro-card .mobile-main-card,
.page-mobile .page-intro-card .mobile-side-card {
  padding-left: 26px;
  padding-right: 26px;
}

.page-mobile .page-intro-card .mobile-main-card .offer-actions,
.page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions {
  width: 100%;
  max-width: 100%;
  gap: 12px;
}

.page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link,
.page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link {
  max-width: none;
  min-height: 52px;
  padding: 10px 18px;
  font-size: clamp(0.82rem, 1.45vw, 0.98rem);
  line-height: 1.2;
  white-space: normal;
}

.page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link.primary,
.page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link.primary {
  flex: 0.9 1 0;
}

.page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link.secondary,
.page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link.secondary {
  flex: 1.3 1 0;
}

@media (max-width: 820px) {
  .page-mobile .page-intro-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-mobile .page-intro-card .mobile-main-card,
  .page-mobile .page-intro-card .mobile-side-card {
    width: calc(100% + 12px);
    margin-inline: -6px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link {
    max-width: none;
    padding: 10px 16px;
  }
}

@media (max-width: 640px) {
  .page-mobile .page-intro-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-mobile .page-intro-card .mobile-main-card,
  .page-mobile .page-intro-card .mobile-side-card {
    width: calc(100% + 10px);
    margin-inline: -5px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link {
    padding: 10px 14px;
    font-size: 0.92rem;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(1180px, calc(100% - 16px));
  }

  .page-shell,
  .footer-upper,
  .footer-lower-inner {
    width: var(--shell);
  }

  .main-nav {
    left: 8px;
    right: 8px;
  }

  .main-nav ul {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .main-nav a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .promo-hero {
    min-height: 0;
    padding: 0 0 18px;
    background: #1e2a78;
    overflow: hidden;
  }

  .promo-hero::before {
    content: none;
  }

  .promo-hero-background {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(210px, 54vw, 360px);
  }

  .promo-bg-slide {
    background-color: #1e2a78;
    background-position: center center;
    background-size: contain;
  }

  .promo-hero-inner,
  .promo-placeholder {
    min-height: 0;
    height: 0;
    overflow: hidden;
  }

  .promo-bg-dots {
    top: clamp(180px, 50vw, 330px);
    bottom: auto;
    gap: 7px;
  }

  .promo-bg-dot {
    width: 20px;
    height: 7px;
  }

  .promo-bg-dot.is-active {
    width: 30px;
  }

  .promo-mini-plans {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: var(--shell);
    margin: 14px auto 0;
    transform: none;
  }

  .promo-mini-plan {
    min-height: 0;
    padding: 14px 10px;
    border-radius: 16px;
  }

  .promo-mini-badge {
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.58rem;
    letter-spacing: 0;
  }

  .promo-mini-title {
    margin-top: 6px;
    font-size: 0.95rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .promo-mini-divider {
    margin: 12px 0 10px;
  }

  .promo-mini-copy,
  .promo-mini-meta {
    font-size: 0.66rem;
    line-height: 1.32;
  }

  .promo-mini-meta-soft {
    margin-bottom: 10px;
    font-size: 0.58rem;
  }

  .promo-mini-price {
    flex-wrap: wrap;
    gap: 4px;
    margin: auto 0 8px;
  }

  .promo-mini-price strong {
    font-size: 1.75rem;
    letter-spacing: 0;
  }

  .promo-mini-price span {
    font-size: 0.58rem;
  }

  .home-tv-promo,
  .home-location-promo {
    width: var(--shell);
    margin: 24px auto 18px;
  }

  .home-tv-promo-card,
  .home-location-promo-card {
    min-height: 250px;
    padding: 20px 14px;
    border-radius: 16px;
  }

  .home-tv-promo-title,
  .home-location-promo-title {
    max-width: none;
    font-size: 1.7rem;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .home-tv-promo-text,
  .home-location-promo-text {
    max-width: 44ch;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .home-tv-promo-copy,
  .home-location-promo-copy {
    gap: 12px;
  }

  .home-reviews {
    margin-top: 12px;
    padding-top: 20px;
  }

  .home-reviews-heading h2 {
    font-size: 1.45rem;
    letter-spacing: 0;
  }

  .home-reviews-heading p {
    font-size: 0.78rem;
  }

  .home-review-card {
    flex-basis: 228px;
    min-height: 200px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .content-card {
    margin-top: 18px;
    padding: 20px 12px 16px;
  }

  .page-intro-card {
    --intro-accent-height: 150px;
  }

  .page-tv .page-intro-card,
  .page-security .page-intro-card {
    background: #3143c4;
  }

  .page-intro-card > h1 {
    margin-bottom: 0;
    text-align: center;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .page-intro-card > p,
  .page-intro-card > .sub-copy {
    text-align: center;
    font-size: 0.78rem;
  }

  .page-intro-card .plans-grid,
  .page-intro-card .mobile-layout {
    margin-top: 22px;
  }

  .info-band-grid,
  .plans-grid,
  .page-intro-card .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .mobile-layout,
  .page-intro-card .mobile-layout,
  .page-mobile .page-intro-card .mobile-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
    max-width: 100%;
  }

  .footer-upper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 26px 0 24px;
  }

  .footer-block:first-child {
    padding-right: 14px;
  }

  .footer-block + .footer-block {
    padding-top: 0;
    padding-left: 14px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-block h3 {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .footer-block p,
  .footer-copy {
    font-size: 0.66rem;
    line-height: 1.55;
  }

  .footer-logo {
    width: min(250px, 70vw);
  }

  .footer-lower {
    padding: 20px 0 24px;
  }

  .plan-card,
  .mobile-list-item,
  .info-card,
  .band-item,
  .footer-block,
  .tv-basic-plan-card,
  .tv-basic-feature,
  .tv-sports-summary-card,
  .tv-sports-price-card,
  .tv-sports-channel-card,
  .security-offer-hero,
  .security-summary-card,
  .security-price-card,
  .security-extra-card,
  .security-feature-card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .page-fibra .page-intro-card .plan-card,
  .page-bundle .page-intro-card .plan-card,
  .page-wimax .page-intro-card .plan-card,
  .page-security .page-intro-card .plan-card,
  .page-mobile .page-intro-card .mobile-main-card,
  .page-mobile .page-intro-card .mobile-side-card,
  .plan-card {
    padding: 13px 8px;
    border-radius: 16px;
  }

  .page-mobile .page-intro-card .mobile-main-card,
  .page-mobile .page-intro-card .mobile-side-card {
    width: 100%;
    margin-inline: 0;
  }

  .plan-card.featured::after {
    top: 7px;
    right: 7px;
    min-height: 20px;
    padding: 0 6px;
    font-size: 0.5rem;
    letter-spacing: 0;
  }

  .plan-label,
  .page-intro-card .plan-label,
  .page-fibra .page-intro-card .plan-label,
  .page-bundle .page-intro-card .plan-label,
  .page-wimax .page-intro-card .plan-label,
  .page-security .page-intro-card .plan-label,
  .page-mobile .page-intro-card .plan-label {
    min-height: 28px;
    margin-bottom: 8px;
    padding: 0 8px;
    font-size: 0.62rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .plan-speed,
  .page-intro-card .plan-speed,
  .page-fibra .page-intro-card .plan-speed,
  .page-bundle .page-intro-card .plan-speed,
  .page-wimax .page-intro-card .plan-speed,
  .page-security .page-intro-card .plan-speed,
  .page-mobile .page-intro-card .mobile-main-card .plan-speed {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 1.28rem;
    line-height: 1.04;
    letter-spacing: 0;
  }

  .plan-detail,
  .page-intro-card .plan-detail,
  .page-fibra .page-intro-card .plan-detail,
  .page-bundle .page-intro-card .plan-detail,
  .page-wimax .page-intro-card .plan-detail,
  .page-security .page-intro-card .plan-detail,
  .page-mobile .page-intro-card .mobile-main-card .plan-detail {
    margin-bottom: 5px;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .plan-note,
  .plan-meta,
  .page-intro-card .plan-note,
  .page-intro-card .plan-meta,
  .page-fibra .page-intro-card .plan-note,
  .page-fibra .page-intro-card .plan-meta,
  .page-bundle .page-intro-card .plan-note,
  .page-bundle .page-intro-card .plan-meta,
  .page-wimax .page-intro-card .plan-note,
  .page-wimax .page-intro-card .plan-meta,
  .page-security .page-intro-card .plan-note,
  .page-security .page-intro-card .plan-meta,
  .page-mobile .page-intro-card .mobile-main-card .plan-note,
  .page-mobile .page-intro-card .mobile-main-card .plan-meta {
    margin-bottom: 6px;
    font-size: 0.6rem;
    line-height: 1.32;
  }

  .plan-price {
    flex-wrap: wrap;
    gap: 4px;
    margin: 4px 0 8px;
  }

  .plan-price strong,
  .page-intro-card .plan-price strong,
  .page-fibra .page-intro-card .plan-price strong,
  .page-bundle .page-intro-card .plan-price strong,
  .page-wimax .page-intro-card .plan-price strong,
  .page-security .page-intro-card .plan-price strong,
  .page-mobile .page-intro-card .mobile-main-card .plan-price strong {
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .plan-price span,
  .page-fibra .page-intro-card .plan-price span,
  .page-bundle .page-intro-card .plan-price span,
  .page-wimax .page-intro-card .plan-price span,
  .page-security .page-intro-card .plan-price span {
    font-size: 0.58rem;
  }

  .button-link,
  .footer-contact-button,
  .promo-mini-button,
  .home-tv-promo-button,
  .home-location-promo-button {
    width: auto;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .cta-row,
  .offer-actions,
  .promo-mini-actions,
  .home-promo-actions,
  .mobile-extra-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 6px;
  }

  .offer-actions .button-link,
  .promo-mini-actions .promo-mini-button,
  .promo-mini-actions .button-link,
  .home-promo-actions .home-tv-promo-button,
  .home-promo-actions .home-location-promo-button,
  .home-promo-actions .button-link.secondary,
  .mobile-extra-actions .button-link,
  .page-fibra .page-intro-card .plan-card .offer-actions .button-link,
  .page-bundle .page-intro-card .plan-card .offer-actions .button-link,
  .page-wimax .page-intro-card .plan-card .offer-actions .button-link,
  .page-security .page-intro-card .plan-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link,
  .page-security .security-offer-meta .offer-actions .button-link,
  .tv-basic-plan-card .offer-actions .button-link,
  .tv-sports-price-card .offer-actions .button-link {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 34px;
    margin-top: 0;
    padding: 6px 5px;
    border-radius: 10px;
    font-size: 0.56rem;
    line-height: 1.1;
    white-space: normal;
  }

  .offer-conditions-row {
    margin-top: 6px;
  }

  .offer-conditions-link {
    font-size: 0.62rem;
  }

  .page-mobile .page-intro-card {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-mobile .page-intro-card .mobile-main-card {
    gap: 8px;
  }

  .page-mobile .page-intro-card .mobile-side-card .plan-label {
    margin-bottom: 10px;
  }

  .mobile-list {
    gap: 8px;
  }

  .page-mobile .page-intro-card .mobile-list-item {
    padding: 9px 7px;
    border-radius: 12px;
  }

  .mobile-list-head {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .mobile-list-actions {
    gap: 5px;
  }

  .mobile-list-item strong {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .mobile-list-actions span {
    font-size: 0.8rem;
  }

  .mobile-toggle-button {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 1rem;
  }

  .mobile-list-extra.is-open {
    max-height: 180px;
    margin-top: 8px;
  }

  .info-band {
    margin-top: 22px;
    padding: 20px 0 12px;
  }

  .page-subpage .info-band {
    margin-top: 22px;
  }

  .band-item {
    padding: 14px 8px 16px;
    border-radius: 14px;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 6px;
  }

  .stat-icon svg {
    width: 28px;
    height: 28px;
  }

  .band-item strong {
    font-size: 1.4rem;
  }

  .stat-text {
    font-size: 0.62rem;
    line-height: 1.32;
  }

  .info-card {
    padding: 12px 7px 14px;
    border-radius: 14px;
  }

  .info-card-icon,
  .info-card-icon img {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .info-card-icon-wide,
  .info-card-icon-wide img {
    width: 46px;
    height: 46px;
  }

  .info-card-icon img.info-card-icon-headset {
    width: 56px;
    height: 56px;
  }

  .info-card h2 {
    margin-bottom: 6px;
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .info-card p {
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .tv-copy-section,
  .tv-offer-section,
  .tv-sports-offer,
  .security-copy-section,
  .security-offer-section {
    padding: 0;
  }

  .tv-intro-copy,
  .security-intro-copy {
    font-size: 1.45rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .tv-copy-kicker {
    margin-top: 26px;
    font-size: 1.25rem;
    letter-spacing: 0;
  }

  .tv-copy-subtext {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .tv-channel-showcase {
    gap: 28px;
    margin-top: 28px;
    padding: 16px 0 18px;
  }

  .tv-channel-card {
    width: 136px;
    height: 136px;
    padding: 10px;
  }

  .tv-channel-showcase::before,
  .tv-channel-showcase::after {
    width: 28px;
  }

  .tv-basic-plan-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 10px;
    margin-top: 18px;
  }

  .tv-basic-plan-card,
  .tv-basic-feature {
    border-radius: 16px;
  }

  .tv-basic-plan-card {
    padding: 18px 10px 14px;
  }

  .tv-basic-plan-title {
    font-size: 1.3rem;
    letter-spacing: 0;
  }

  .tv-basic-plan-price {
    flex-wrap: wrap;
    gap: 5px;
    margin: 12px 0 8px;
  }

  .tv-basic-plan-price strong {
    font-size: 2rem;
    letter-spacing: 0;
  }

  .tv-basic-plan-price span,
  .tv-basic-plan-note {
    font-size: 0.62rem;
    letter-spacing: 0;
  }

  .tv-basic-plan-note {
    line-height: 1.35;
  }

  .tv-basic-plan-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tv-basic-feature {
    min-height: 94px;
    padding: 14px 8px;
    gap: 9px;
  }

  .tv-basic-feature-wide {
    grid-column: 1 / -1;
  }

  .tv-basic-feature-icon {
    width: 38px;
    height: 38px;
  }

  .tv-basic-feature p,
  .tv-basic-feature-compact p {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .tv-plan-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
  }

  .tv-plan-switch {
    min-height: 52px;
    padding: 10px 6px;
    border-radius: 12px;
  }

  .tv-plan-switch-title {
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .tv-plan-switch-meta {
    margin-top: 5px;
    font-size: 0.52rem;
    letter-spacing: 0;
  }

  .tv-sports-hero {
    padding: 20px 12px;
    border-radius: 18px;
  }

  .tv-sports-title {
    font-size: 2rem;
    letter-spacing: 0;
  }

  .tv-sports-meta {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 10px;
  }

  .tv-sports-summary-card,
  .tv-sports-price-card {
    padding: 14px 9px;
    border-radius: 16px;
  }

  .tv-sports-summary-kicker,
  .tv-sports-price-kicker {
    font-size: 0.54rem;
    letter-spacing: 0;
  }

  .tv-sports-summary-card strong {
    font-size: 0.84rem;
    letter-spacing: 0;
  }

  .tv-sports-summary-card span,
  .tv-sports-price-note {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .tv-sports-price {
    flex-wrap: wrap;
    gap: 4px;
  }

  .tv-sports-price strong {
    font-size: 1.9rem;
    letter-spacing: 0;
  }

  .tv-sports-price span {
    font-size: 0.56rem;
    letter-spacing: 0;
  }

  .tv-sports-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }

  .tv-sports-channel-card {
    padding: 8px 2px 10px;
  }

  .tv-sports-channel-logo,
  .tv-sports-channel-logo-large,
  .tv-sports-channel-logo-eurosport {
    width: 100%;
    max-height: 84px;
  }

  .tv-sports-channel-more {
    margin-top: -12px;
    font-size: 0.72rem;
  }

  .security-offer-stack {
    gap: 16px;
  }

  .security-offer-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 10px;
    padding: 16px 10px;
    border-radius: 18px;
  }

  .security-offer-copy,
  .security-side-column {
    gap: 10px;
  }

  .security-offer-badge,
  .security-card-kicker {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.52rem;
    letter-spacing: 0;
  }

  .security-offer-title {
    max-width: none;
    font-size: 1.24rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .security-offer-subtitle,
  .security-offer-price-note,
  .security-summary-list li,
  .security-promo-copy,
  .security-price-card .security-promo-copy,
  .security-extra-card .security-promo-copy {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .security-offer-price-highlight {
    gap: 8px;
    padding: 12px 9px;
    border-radius: 14px;
  }

  .security-price {
    flex-wrap: wrap;
    gap: 5px;
  }

  .security-price strong,
  .security-offer-hero .security-offer-price-highlight .security-price strong {
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  .security-price span,
  .security-offer-hero .security-offer-price-highlight .security-price span {
    font-size: 0.55rem;
    letter-spacing: 0;
  }

  .security-summary-card {
    gap: 10px;
    padding: 14px 9px;
    border-radius: 16px;
  }

  .security-summary-list {
    gap: 8px;
  }

  .security-lock-icon {
    width: min(100%, 86px);
  }

  .security-offer-points {
    gap: 6px;
  }

  .security-offer-points li {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.54rem;
    line-height: 1.15;
  }

  .security-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .security-feature-card {
    min-height: 0;
    gap: 8px;
    padding: 14px 9px;
    border-radius: 16px;
  }

  .security-feature-index {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 0.7rem;
  }

  .security-feature-card h3 {
    font-size: 0.86rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .security-feature-card p {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .security-promo-intro {
    margin-top: 10px;
    font-size: 0.96rem;
    letter-spacing: 0;
  }

  .security-offer-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .security-price-card,
  .security-extra-card {
    gap: 10px;
    padding: 16px 9px 14px;
    border-radius: 18px;
  }

  .security-discount-title,
  .security-extra-card .security-discount-title {
    font-size: 1.08rem;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .security-promo-highlight {
    min-width: 0;
    width: 100%;
    gap: 4px 7px;
    padding: 12px 9px;
    border-radius: 14px;
  }

  .security-promo-highlight strong,
  .security-extra-card .security-promo-highlight strong {
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  .security-promo-highlight span,
  .security-promo-highlight small {
    font-size: 0.52rem;
    letter-spacing: 0;
  }

  .security-offer-details {
    gap: 5px;
  }

  .security-offer-details span {
    min-height: 26px;
    padding: 0 7px;
    font-size: 0.52rem;
  }

  .page-security .security-offer-meta .offer-actions {
    justify-content: center;
    padding-top: 4px;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: min(1180px, calc(100% - 12px));
    --header-height: 62px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .header-logo {
    height: 44px;
    max-height: calc(var(--header-height) - 12px);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    padding: 8px;
  }

  .promo-hero-background {
    height: clamp(190px, 58vw, 260px);
  }

  .promo-bg-dots {
    top: clamp(162px, 52vw, 230px);
  }

  .promo-mini-plans {
    gap: 7px;
    margin-top: 10px;
  }

  .promo-mini-plan {
    padding: 11px 6px;
    border-radius: 14px;
  }

  .promo-mini-badge {
    min-height: 22px;
    padding: 0 6px;
    font-size: 0.5rem;
  }

  .promo-mini-title {
    font-size: 0.78rem;
  }

  .promo-mini-copy,
  .promo-mini-meta {
    font-size: 0.55rem;
  }

  .promo-mini-price strong {
    font-size: 1.42rem;
  }

  .promo-mini-price span {
    font-size: 0.5rem;
  }

  .content-card {
    padding: 18px 8px 14px;
  }

  .page-intro-card {
    --intro-accent-height: 128px;
  }

  .page-tv .page-intro-card,
  .page-security .page-intro-card {
    background: #3143c4;
  }

  .page-intro-card > h1 {
    font-size: 1.78rem;
  }

  .info-band-grid,
  .plans-grid,
  .page-intro-card .plans-grid,
  .mobile-layout,
  .page-intro-card .mobile-layout,
  .page-mobile .page-intro-card .mobile-layout,
  .tv-basic-plan-layout,
  .tv-sports-meta,
  .security-offer-hero,
  .security-offer-meta {
    gap: 7px;
  }

  .section-grid {
    gap: 6px;
  }

  .page-fibra .page-intro-card .plan-card,
  .page-bundle .page-intro-card .plan-card,
  .page-wimax .page-intro-card .plan-card,
  .page-security .page-intro-card .plan-card,
  .page-mobile .page-intro-card .mobile-main-card,
  .page-mobile .page-intro-card .mobile-side-card,
  .plan-card {
    padding: 11px 6px;
    border-radius: 14px;
  }

  .plan-card.featured::after {
    min-height: 18px;
    padding: 0 5px;
    font-size: 0.45rem;
  }

  .plan-label,
  .page-intro-card .plan-label,
  .page-fibra .page-intro-card .plan-label,
  .page-bundle .page-intro-card .plan-label,
  .page-wimax .page-intro-card .plan-label,
  .page-security .page-intro-card .plan-label,
  .page-mobile .page-intro-card .plan-label {
    min-height: 24px;
    padding: 0 6px;
    font-size: 0.52rem;
  }

  .plan-speed,
  .page-intro-card .plan-speed,
  .page-fibra .page-intro-card .plan-speed,
  .page-bundle .page-intro-card .plan-speed,
  .page-wimax .page-intro-card .plan-speed,
  .page-security .page-intro-card .plan-speed,
  .page-mobile .page-intro-card .mobile-main-card .plan-speed {
    font-size: 1.05rem;
  }

  .plan-detail,
  .page-intro-card .plan-detail,
  .page-fibra .page-intro-card .plan-detail,
  .page-bundle .page-intro-card .plan-detail,
  .page-wimax .page-intro-card .plan-detail,
  .page-security .page-intro-card .plan-detail,
  .page-mobile .page-intro-card .mobile-main-card .plan-detail,
  .plan-note,
  .plan-meta,
  .page-intro-card .plan-note,
  .page-intro-card .plan-meta {
    font-size: 0.52rem;
  }

  .plan-price strong,
  .page-intro-card .plan-price strong,
  .page-fibra .page-intro-card .plan-price strong,
  .page-bundle .page-intro-card .plan-price strong,
  .page-wimax .page-intro-card .plan-price strong,
  .page-security .page-intro-card .plan-price strong,
  .page-mobile .page-intro-card .mobile-main-card .plan-price strong {
    font-size: 1.08rem;
  }

  .button-link,
  .footer-contact-button,
  .promo-mini-button,
  .home-tv-promo-button,
  .home-location-promo-button,
  .offer-actions .button-link,
  .promo-mini-actions .promo-mini-button,
  .promo-mini-actions .button-link,
  .home-promo-actions .home-tv-promo-button,
  .home-promo-actions .home-location-promo-button,
  .home-promo-actions .button-link.secondary,
  .mobile-extra-actions .button-link,
  .page-fibra .page-intro-card .plan-card .offer-actions .button-link,
  .page-bundle .page-intro-card .plan-card .offer-actions .button-link,
  .page-wimax .page-intro-card .plan-card .offer-actions .button-link,
  .page-security .page-intro-card .plan-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link,
  .page-security .security-offer-meta .offer-actions .button-link,
  .tv-basic-plan-card .offer-actions .button-link,
  .tv-sports-price-card .offer-actions .button-link {
    min-height: 30px;
    padding: 5px 4px;
    border-radius: 8px;
    font-size: 0.48rem;
  }

  .home-tv-promo-card,
  .home-location-promo-card {
    min-height: 220px;
    padding: 18px 10px;
  }

  .home-tv-promo-title,
  .home-location-promo-title {
    font-size: 1.35rem;
  }

  .home-tv-promo-text,
  .home-location-promo-text {
    font-size: 0.64rem;
  }

  .band-item {
    padding: 12px 6px 14px;
  }

  .band-item strong {
    font-size: 1.16rem;
  }

  .stat-text {
    font-size: 0.54rem;
  }

  .info-card {
    padding: 10px 5px 12px;
  }

  .info-card-icon,
  .info-card-icon img {
    width: 36px;
    height: 36px;
  }

  .info-card-icon-wide,
  .info-card-icon-wide img {
    width: 40px;
    height: 40px;
  }

  .info-card h2 {
    font-size: 0.62rem;
  }

  .info-card p {
    font-size: 0.5rem;
  }

  .mobile-list-item strong,
  .mobile-list-actions span {
    font-size: 0.52rem;
  }

  .mobile-toggle-button {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    font-size: 0.86rem;
  }

  .tv-intro-copy,
  .security-intro-copy {
    font-size: 1.12rem;
  }

  .tv-channel-card {
    width: 112px;
    height: 112px;
  }

  .tv-basic-plan-card,
  .tv-basic-feature,
  .tv-sports-summary-card,
  .tv-sports-price-card,
  .security-summary-card,
  .security-feature-card,
  .security-price-card,
  .security-extra-card {
    border-radius: 14px;
  }

  .tv-basic-plan-title {
    font-size: 1.05rem;
  }

  .tv-basic-plan-price strong,
  .tv-sports-price strong {
    font-size: 1.55rem;
  }

  .tv-basic-feature {
    min-height: 78px;
    padding: 10px 5px;
  }

  .tv-basic-feature-icon {
    width: 30px;
    height: 30px;
  }

  .tv-basic-feature p,
  .tv-basic-feature-compact p {
    font-size: 0.56rem;
  }

  .tv-plan-switch {
    min-height: 44px;
  }

  .tv-plan-switch-title {
    font-size: 0.72rem;
  }

  .tv-sports-title {
    font-size: 1.45rem;
  }

  .tv-sports-summary-card strong {
    font-size: 0.68rem;
  }

  .security-offer-hero {
    padding: 12px 7px;
  }

  .security-offer-title {
    font-size: 0.98rem;
  }

  .security-offer-subtitle,
  .security-offer-price-note,
  .security-summary-list li,
  .security-promo-copy,
  .security-price-card .security-promo-copy,
  .security-extra-card .security-promo-copy,
  .security-feature-card p {
    font-size: 0.5rem;
  }

  .security-price strong,
  .security-offer-hero .security-offer-price-highlight .security-price strong,
  .security-promo-highlight strong,
  .security-extra-card .security-promo-highlight strong {
    font-size: 1.35rem;
  }

  .security-feature-index {
    width: 26px;
    height: 26px;
    font-size: 0.58rem;
  }

  .security-feature-card h3 {
    font-size: 0.7rem;
  }

  .security-discount-title,
  .security-extra-card .security-discount-title {
    font-size: 0.86rem;
  }

  .footer-block h3 {
    font-size: 0.78rem;
  }

  .footer-block p,
  .footer-copy {
    font-size: 0.56rem;
  }
}

@media (max-width: 360px) {
  .promo-mini-plans,
  .plans-grid,
  .page-intro-card .plans-grid,
  .mobile-layout,
  .page-intro-card .mobile-layout,
  .page-mobile .page-intro-card .mobile-layout,
  .tv-basic-plan-layout,
  .tv-sports-meta,
  .security-offer-hero,
  .security-offer-meta {
    gap: 5px;
  }

  .page-fibra .page-intro-card .plan-card,
  .page-bundle .page-intro-card .plan-card,
  .page-wimax .page-intro-card .plan-card,
  .page-security .page-intro-card .plan-card,
  .page-mobile .page-intro-card .mobile-main-card,
  .page-mobile .page-intro-card .mobile-side-card,
  .plan-card {
    padding: 10px 5px;
  }

  .button-link,
  .footer-contact-button,
  .promo-mini-button,
  .home-tv-promo-button,
  .home-location-promo-button,
  .offer-actions .button-link,
  .promo-mini-actions .promo-mini-button,
  .promo-mini-actions .button-link,
  .home-promo-actions .home-tv-promo-button,
  .home-promo-actions .home-location-promo-button,
  .home-promo-actions .button-link.secondary,
  .mobile-extra-actions .button-link,
  .page-fibra .page-intro-card .plan-card .offer-actions .button-link,
  .page-bundle .page-intro-card .plan-card .offer-actions .button-link,
  .page-wimax .page-intro-card .plan-card .offer-actions .button-link,
  .page-security .page-intro-card .plan-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-main-card .offer-actions .button-link,
  .page-mobile .page-intro-card .mobile-side-card .mobile-extra-actions .button-link,
  .page-security .security-offer-meta .offer-actions .button-link,
  .tv-basic-plan-card .offer-actions .button-link,
  .tv-sports-price-card .offer-actions .button-link {
    font-size: 0.44rem;
  }
}

@media (max-width: 820px) {
  .page-home .promo-hero {
    display: grid;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 0 16px !important;
    color: var(--text);
    background: var(--bg) !important;
    overflow: visible;
  }

  .page-home .promo-hero-background {
    position: relative !important;
    inset: auto !important;
    z-index: 1;
    width: 100%;
    height: auto !important;
    aspect-ratio: 7921 / 3433;
    min-height: 0 !important;
    background: #1e2a78;
  }

  .page-home .promo-bg-track,
  .page-home .promo-bg-slide {
    height: 100%;
  }

  .page-home .promo-bg-slide {
    background-position: center center !important;
    background-size: contain !important;
    background-color: #1e2a78;
  }

  .page-home .promo-hero-inner,
  .page-home .promo-placeholder {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
  }

  .page-home .promo-bg-dots {
    top: calc((100vw / 2.307) - 24px) !important;
    bottom: auto !important;
    z-index: 4;
  }

  .page-home .promo-mini-plans {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 2;
    width: var(--shell);
    margin: 12px auto 0 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .page-home .promo-hero {
    padding-bottom: 12px !important;
  }

  .page-home .promo-bg-dots {
    top: calc((100vw / 2.307) - 21px) !important;
  }

  .page-home .promo-mini-plans {
    margin-top: 9px !important;
  }
}

