:root {
  --bg: #020817;
  --panel: #071225;
  --panel-strong: #0b1f3f;
  --text: #f5f9ff;
  --muted: #a8b8ce;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #0aa8ff;
  --cyan: #33d4ff;
  --silver: #dfe8f7;
  --blue: #006dff;
  --danger: #ff5d5d;
  --shadow: 0 24px 90px rgba(0, 71, 255, 0.18), 0 22px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #01040b;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 9% 3%, rgba(0, 123, 255, 0.48), transparent 26rem),
    radial-gradient(circle at 92% 88%, rgba(0, 109, 255, 0.38), transparent 24rem),
    linear-gradient(135deg, #020a1d 0%, #030713 48%, #01020a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(0, 168, 255, 0.18) 34.2%, transparent 35.2%),
    linear-gradient(145deg, transparent 0 72%, rgba(51, 212, 255, 0.16) 72.2%, transparent 73%);
  opacity: 0.7;
  pointer-events: none;
}

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

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 8px 14px;
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, #003a9a, #0077ff, #003a9a);
  background-size: 200% 100%;
  animation: gradientShift 7s linear infinite;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.promo-bar span {
  color: var(--cyan);
}

.site-header {
  position: sticky;
  top: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 23, 0.84);
  box-shadow: 0 14px 50px rgba(0, 71, 255, 0.12), 0 14px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: #020817;
  border: 1px solid rgba(51, 212, 255, 0.34);
  box-shadow: 0 0 28px rgba(0, 168, 255, 0.28);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.plan-name,
.eyebrow,
.badge {
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex: 1;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #f7fbff;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  box-shadow: 0 12px 34px rgba(0, 168, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(0, 168, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 42px;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 58px 0 46px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px -18px 0;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2)),
    url("assets/stadium.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.64;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
}

.hero-copy,
.section-heading p,
.content-copy p,
.site-footer p,
.benefit-grid p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 590px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-media {
  min-height: 520px;
  display: grid;
  place-items: center;
  gap: 18px;
}

.broadcast-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.9;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(0, 168, 255, 0.2), transparent 36%),
    #040a17;
  box-shadow: var(--shadow);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 142px;
  gap: 12px;
  height: 100%;
}

.screen-grid span {
  display: flex;
  align-items: flex-end;
  min-width: 0;
  padding: 14px;
  border-radius: 8px;
  overflow: hidden;
  color: white;
  font-weight: 900;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
    linear-gradient(135deg, rgba(0, 168, 255, 0.58), rgba(0, 109, 255, 0.26));
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -80px 80px rgba(0, 0, 0, 0.66);
}

.screen-grid span:nth-child(2n) {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
    linear-gradient(135deg, rgba(0, 109, 255, 0.58), rgba(223, 232, 247, 0.24));
}

.screen-grid .screen-tile {
  position: relative;
  isolation: isolate;
  background-color: #071225;
}

.screen-grid .screen-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--tile-image) var(--tile-position, center) / cover no-repeat;
  transform: scale(1.02);
}

.screen-grid .screen-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(1, 4, 11, 0.06) 0%, rgba(1, 4, 11, 0.26) 42%, rgba(1, 4, 11, 0.88) 100%),
    linear-gradient(135deg, rgba(0, 168, 255, 0.2), rgba(0, 109, 255, 0.12));
}

.tile-football {
  --tile-image: url("assets/mosaico1-BAN7xCeq.png");
  --tile-position: center;
}

.tile-movies {
  --tile-image: url("assets/download.jpg");
  --tile-position: center 18%;
}

.tile-series {
  --tile-image: url("assets/hero-bb.jpg");
  --tile-position: center 14%;
}

.tile-news {
  --tile-image: url("assets/hero-f1.png");
  --tile-position: center;
}

.tile-kids {
  --tile-image: url("assets/hero-mario.jpg");
  --tile-position: center 24%;
}

.tile-sports {
  --tile-image: url("assets/hero-nba.png");
  --tile-position: center;
}

.live-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #020817;
  background: white;
  font-weight: 900;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(255, 93, 93, 0.15);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 520px);
}

.hero-mini-grid span {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(51, 212, 255, 0.16);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-mini-grid strong {
  color: var(--cyan);
  font-size: 18px;
}

section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.country-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 18, 37, 0.9);
  box-shadow: var(--shadow);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.country-card {
  min-height: 118px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.country-card:hover,
.country-card.is-selected {
  border-color: rgba(51, 212, 255, 0.82);
  background: rgba(0, 168, 255, 0.13);
}

.flag {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 42px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(0, 168, 255, 0.14);
  font-size: 30px;
  line-height: 1;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #f7fbff;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  box-shadow: 0 0 22px rgba(0, 168, 255, 0.22);
  font-weight: 900;
}

.country-note {
  margin: 18px 0 0;
  color: var(--cyan);
  font-weight: 800;
}

.mascot-showcase {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin-top: 78px;
  padding: 24px 28px 42px;
  border: 1px solid rgba(51, 212, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 168, 255, 0.28), transparent 22rem),
    radial-gradient(circle at 12% 88%, rgba(0, 109, 255, 0.2), transparent 20rem),
    linear-gradient(180deg, rgba(3, 8, 19, 0.96), rgba(1, 2, 10, 0.98));
  box-shadow: var(--shadow);
}

.mascot-showcase::before,
.mascot-showcase::after {
  content: "";
  position: absolute;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(51, 212, 255, 0.8), transparent);
  filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.9));
  pointer-events: none;
}

.mascot-showcase::before {
  left: -7%;
  top: 19%;
  transform: rotate(-24deg);
}

.mascot-showcase::after {
  right: -6%;
  bottom: 20%;
  transform: rotate(-20deg);
}

.mascot-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  margin-bottom: -14px;
}

.mascot-art::before {
  content: "";
  position: absolute;
  width: min(560px, 72vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.26), rgba(0, 109, 255, 0.08) 46%, transparent 70%);
  filter: blur(4px);
}

.mascot-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(560px, 86vw);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0, 168, 255, 0.32)) drop-shadow(0 34px 40px rgba(0, 0, 0, 0.5));
}

.showcase-kicker {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(48px, 92px) auto minmax(48px, 92px);
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 8px auto 24px;
  color: var(--silver);
}

.showcase-kicker span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.showcase-kicker span:last-child {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.showcase-kicker strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border: 1px solid rgba(51, 212, 255, 0.42);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 168, 255, 0.08);
  box-shadow: inset 0 0 22px rgba(0, 168, 255, 0.12);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.showcase-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 92px);
  font-style: italic;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.showcase-copy h2 span {
  color: var(--cyan);
  text-shadow: 0 0 26px rgba(0, 168, 255, 0.34);
}

.showcase-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.showcase-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 32px auto 0;
}

.showcase-points article {
  min-height: 102px;
  padding: 18px;
  border: 1px solid rgba(51, 212, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 168, 255, 0.075);
}

.showcase-points strong,
.showcase-points span {
  display: block;
}

.showcase-points strong {
  margin-bottom: 8px;
  color: var(--text);
}

.showcase-points span {
  color: var(--muted);
  line-height: 1.45;
}

.benefit-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article,
.plan,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.benefit-grid article {
  padding: 22px;
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
}

.content-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-list span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.18), rgba(223, 232, 247, 0.08));
  font-weight: 900;
}

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

.plan {
  position: relative;
  padding: 26px;
}

.plan.featured {
  border-color: rgba(51, 212, 255, 0.74);
  background: linear-gradient(180deg, rgba(0, 168, 255, 0.18), rgba(255, 255, 255, 0.055));
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #020817;
  background: linear-gradient(135deg, #ffffff, var(--silver));
  font-size: 12px;
  font-weight: 900;
}

.plan-name {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.plan h3 {
  margin-bottom: 18px;
  font-size: 38px;
}

.plan ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.plan-button {
  width: 100%;
}

.faq {
  padding-top: 36px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .hero {
    padding-top: 42px;
  }

  .hero-media {
    min-height: auto;
  }

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

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

  .mascot-art {
    min-height: 360px;
  }

  .showcase-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  section,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .header-cta {
    display: none;
  }

  .hero::before {
    inset: 22px -8px 0;
  }

  .hero-stats,
  .country-grid,
  .benefit-grid,
  .plans .plan-grid,
  .category-list {
    grid-template-columns: 1fr;
  }

  .country-panel {
    padding: 22px;
  }

  .mascot-showcase {
    margin-top: 42px;
    padding: 18px 14px 28px;
  }

  .mascot-art {
    min-height: 280px;
    margin-bottom: 2px;
  }

  .mascot-art img {
    width: min(430px, 102vw);
    max-height: 340px;
  }

  .showcase-kicker {
    grid-template-columns: minmax(32px, 54px) auto minmax(32px, 54px);
    gap: 8px;
  }

  .showcase-kicker strong {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .showcase-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .showcase-copy p {
    font-size: 17px;
  }

  .screen-grid {
    grid-auto-rows: 112px;
  }

  .live-card {
    top: 18px;
    bottom: auto;
    left: 18px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Campaign-style sections inspired by the supplied references. */
.benefits {
  padding-top: 96px;
}

.benefits .section-heading {
  max-width: 900px;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.benefit-grid article {
  position: relative;
  min-height: 238px;
  padding: 34px 28px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.benefit-grid article::after,
.channel-wall::after,
.vod-band::after,
.steps-band::after,
.devices-band::after,
.plans::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(51, 212, 255, 0.08), transparent 10rem),
    radial-gradient(circle at 78% 68%, rgba(0, 109, 255, 0.08), transparent 12rem);
}

.benefit-grid .icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 46px;
  border-radius: 8px;
  border: 1px solid currentColor;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.benefit-grid .icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid .icon-gold {
  color: #f0c947;
  background: rgba(240, 201, 71, 0.11);
  border-color: rgba(240, 201, 71, 0.12);
}

.benefit-grid .icon-green {
  color: #55d36d;
  background: rgba(85, 211, 109, 0.12);
  border-color: rgba(85, 211, 109, 0.13);
}

.benefit-grid .icon-blue {
  color: #4b88ff;
  background: rgba(75, 136, 255, 0.12);
  border-color: rgba(75, 136, 255, 0.14);
}

.benefit-grid h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 22px;
  font-style: italic;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.benefit-grid p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 650;
}

.channel-wall,
.vod-band,
.steps-band,
.devices-band,
.plans {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: #01040b;
}

.channel-wall {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 98px;
  text-align: center;
}

.channel-logo-cloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(80px, 1fr));
  grid-auto-rows: 78px;
  gap: 18px 24px;
  padding: 48px max(24px, calc((100vw - 1280px) / 2)) 38px;
  opacity: 0.22;
  pointer-events: none;
  mask-image:
    radial-gradient(circle at 50% 42%, transparent 0 25%, rgba(0, 0, 0, 0.34) 42%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 15%, #000 84%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(circle at 50% 42%, transparent 0 25%, rgba(0, 0, 0, 0.34) 42%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 15%, #000 84%, transparent 100%);
}

.channel-logo-cloud::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(1, 4, 11, 0.94) 0 26%, rgba(1, 4, 11, 0.54) 46%, transparent 70%),
    linear-gradient(90deg, #01040b 0%, transparent 18%, transparent 82%, #01040b 100%);
}

.channel-logo-cloud img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  opacity: 0.76;
  filter: grayscale(0.1) drop-shadow(0 0 16px rgba(0, 168, 255, 0.12));
}

.channel-logo-cloud img:nth-child(3n) {
  transform: translateY(18px) scale(1.18);
}

.channel-logo-cloud img:nth-child(4n) {
  opacity: 0.52;
  transform: translateY(-10px) scale(0.86);
}

.channel-logo-cloud img:nth-child(5n) {
  grid-column: span 2;
}

.wall-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.wall-copy h2,
.vod-band h2 {
  margin-bottom: 34px;
  font-size: clamp(54px, 10vw, 138px);
  font-style: italic;
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.wall-copy p,
.vod-band p,
.devices-copy p {
  max-width: 880px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.48;
}

.wall-mascot {
  position: absolute;
  z-index: 1;
  top: 130px;
  width: min(190px, 18vw);
  filter: drop-shadow(0 0 20px rgba(0, 168, 255, 0.3));
}

.wall-mascot.left {
  left: max(22px, calc((100vw - 1180px) / 2));
}

.wall-mascot.right {
  right: max(22px, calc((100vw - 1180px) / 2));
  transform: scaleX(-1);
}

.country-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 74px auto 0;
}

.channel-marquee {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 72px auto 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.channel-marquee div {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.channel-marquee span {
  display: grid;
  place-items: center;
  min-width: 128px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(51, 212, 255, 0.16);
  border-radius: 8px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 24px rgba(0, 168, 255, 0.06);
  font-weight: 950;
  text-transform: uppercase;
}

.category-tiles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 42px auto 0;
}

.category-tiles article {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(51, 212, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 168, 255, 0.16), rgba(0, 0, 0, 0.18)),
    rgba(255, 255, 255, 0.04);
}

.category-tiles strong {
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.category-tiles span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.country-strip span {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.country-strip b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 168, 255, 0.18);
  font-size: 30px;
  line-height: 1;
}

.vod-band {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  padding-top: 92px;
  padding-bottom: 92px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-cloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(72px, 1fr));
  grid-auto-rows: 120px;
  gap: 18px;
  padding: 34px max(18px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
  transform: rotate(-4deg) scale(1.08);
}

.poster-cloud::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(1, 4, 11, 0.95) 0 28%, rgba(1, 4, 11, 0.72) 45%, rgba(1, 4, 11, 0.34) 70%, rgba(1, 4, 11, 0.86) 100%),
    linear-gradient(90deg, #01040b 0%, transparent 20%, transparent 80%, #01040b 100%);
}

.poster-cloud img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.poster-cloud img:nth-child(4n) {
  transform: translateY(34px);
}

.poster-cloud img:nth-child(5n) {
  transform: translateY(-26px) scale(1.08);
}

.poster-cloud img:nth-child(7n) {
  grid-row: span 2;
}

.vod-band > :not(.poster-cloud) {
  position: relative;
  z-index: 2;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 auto 32px;
  padding: 0 28px;
  border: 1px solid rgba(51, 212, 255, 0.3);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 168, 255, 0.1);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.vod-band h2 span {
  color: var(--cyan);
}

.steps-band {
  padding-top: 104px;
  padding-bottom: 108px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.steps-band h2,
.devices-copy h2 {
  margin-bottom: 58px;
  font-size: clamp(38px, 5.8vw, 70px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  max-width: 1120px;
  margin: 0 auto;
}

.step-grid article {
  position: relative;
  min-height: 210px;
  padding-top: 68px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  color: rgba(0, 168, 255, 0.16);
  font-size: 92px;
  font-weight: 950;
  line-height: 1;
  transform: translateX(-50%);
}

.step-number::after {
  content: "OK";
  position: absolute;
  right: -16px;
  bottom: 2px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 168, 255, 0.18);
  border: 1px solid rgba(51, 212, 255, 0.4);
  font-size: 12px;
}

.step-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: 26px;
}

.step-grid p,
.device-grid p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.devices-band {
  padding-top: 92px;
  padding-bottom: 112px;
  text-align: center;
}

.campaign-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(51, 212, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 50%, rgba(0, 168, 255, 0.24), transparent 20rem),
    linear-gradient(135deg, rgba(0, 109, 255, 0.18), rgba(0, 0, 0, 0.72));
  box-shadow: var(--shadow);
}

.campaign-copy {
  position: relative;
  z-index: 1;
}

.campaign-copy h2 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 76px);
  text-transform: uppercase;
}

.campaign-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.campaign-band img {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  filter: drop-shadow(0 0 24px rgba(0, 168, 255, 0.3));
}

.devices-copy {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto 78px;
}

.devices-copy h2 {
  margin-bottom: 18px;
}

.device-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.device-grid article {
  display: grid;
  justify-items: center;
}

.device-grid span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 950;
}

.device-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.plans {
  padding-top: 92px;
  padding-bottom: 104px;
  background:
    linear-gradient(180deg, rgba(1, 4, 11, 0.88), rgba(1, 4, 11, 0.96)),
    url("assets/stadium.svg");
  background-size: cover;
  background-position: center;
}

.plans .section-heading,
.plans .plan-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.plans .section-heading {
  text-align: center;
}

.plans-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 10px;
  border: 1px solid rgba(51, 212, 255, 0.22);
  border-radius: 8px;
  background: rgba(2, 8, 23, 0.76);
  box-shadow: inset 0 0 24px rgba(0, 168, 255, 0.08);
}

.plans-controls span {
  margin-right: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.screen-choice {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(51, 212, 255, 0.28);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.screen-choice:hover,
.screen-choice.is-selected {
  border-color: rgba(51, 212, 255, 0.9);
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.28), rgba(255, 255, 255, 0.08));
  transform: translateY(-1px);
}

.plans .plan-grid {
  gap: 36px;
}

.plan {
  min-height: 620px;
  padding: 46px 32px 34px;
  border-color: rgba(51, 212, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 109, 255, 0.12)),
    rgba(0, 0, 0, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 0 36px rgba(0, 168, 255, 0.08);
}

.plan::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 80px;
  width: 165px;
  height: 180px;
  background: url("assets/nexa-mascot-v2.png") center / contain no-repeat;
  opacity: 0.72;
  filter: drop-shadow(0 0 18px rgba(0, 168, 255, 0.28));
  pointer-events: none;
}

.plan.featured::after {
  right: auto;
  left: 10px;
  transform: scaleX(-1);
}

.plan.featured {
  border-color: rgba(51, 212, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(0, 168, 255, 0.16), rgba(0, 0, 0, 0.58)),
    rgba(0, 0, 0, 0.62);
}

.plan-name {
  color: white;
  font-size: 24px;
  font-style: italic;
}

.old-price,
.period {
  margin: 0;
  color: rgba(168, 184, 206, 0.62);
  font-weight: 900;
  text-align: center;
}

.old-price {
  color: var(--cyan);
  text-decoration: none;
  text-transform: uppercase;
}

.period {
  margin-top: 14px;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.plan h3 {
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.05;
}

.plan h3 small {
  font-size: 22px;
}

.plan ul {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding-left: 0;
  list-style: none;
  color: var(--text);
  font-weight: 850;
  text-transform: uppercase;
}

.plan li {
  position: relative;
  padding-left: 30px;
}

.plan li::before {
  content: "⚽️";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.plan-button {
  position: relative;
  z-index: 2;
  margin-top: 22px;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.floating-whatsapp {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0aa8ff, #006dff);
  box-shadow: 0 18px 40px rgba(0, 109, 255, 0.42);
  animation: whatsappPulse 1.55s ease-in-out infinite;
}

.floating-whatsapp span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: white;
  position: relative;
}

.floating-whatsapp span::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.whatsapp-message {
  position: relative;
  width: min(432px, calc(100vw - 44px));
  padding: 24px 54px 24px 30px;
  border-radius: 26px 26px 0 26px;
  color: #020817;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.whatsapp-widget.is-message-visible .whatsapp-message {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-message p {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.18;
}

.whatsapp-message strong {
  color: #17a84d;
}

.whatsapp-message__close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: #020817;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  font: inherit;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.plan-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.plan-modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 168, 255, 0.22), transparent 34%),
    rgba(1, 4, 11, 0.82);
  backdrop-filter: blur(10px);
}

.plan-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid rgba(51, 212, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(3, 20, 42, 0.96), rgba(1, 6, 17, 0.98)),
    var(--navy);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), inset 0 0 44px rgba(0, 168, 255, 0.1);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.2s ease;
}

.plan-modal.is-open .plan-modal__dialog {
  transform: translateY(0) scale(1);
}

.plan-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(223, 232, 247, 0.18);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.plan-modal__dialog h2 {
  max-width: 420px;
  margin: 0 0 12px;
  font-size: clamp(34px, 7vw, 54px);
  line-height: 0.98;
}

.plan-modal__summary {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.plan-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.plan-modal__action {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(51, 212, 255, 0.28);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 32px rgba(0, 168, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.plan-modal__action:hover,
.plan-modal__action:focus-visible {
  border-color: rgba(51, 212, 255, 0.86);
  background: rgba(0, 168, 255, 0.16);
  transform: translateY(-2px);
}

.plan-modal__action::before {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 950;
}

.plan-modal__action.whatsapp::before {
  content: "💬";
  background: rgba(85, 211, 109, 0.14);
  box-shadow: inset 0 0 0 1px rgba(85, 211, 109, 0.22);
}

.plan-modal__action.checkout::before {
  content: "⚡";
  color: #08101d;
  background: linear-gradient(135deg, #61d7ff, #2f73ff);
}

.plan-modal__action span,
.plan-modal__action small {
  display: block;
}

.plan-modal__action span {
  font-size: 19px;
  font-weight: 950;
}

.plan-modal__action small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 40px rgba(0, 109, 255, 0.42), 0 0 0 0 rgba(0, 168, 255, 0.36);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 18px 40px rgba(0, 109, 255, 0.52), 0 0 0 18px rgba(0, 168, 255, 0);
  }
}

@keyframes gradientShift {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

@media (max-width: 980px) {
  .benefit-grid,
  .plans .plan-grid,
  .step-grid,
  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .channel-wall {
    min-height: 560px;
  }

  .channel-logo-cloud {
    grid-template-columns: repeat(6, minmax(74px, 1fr));
    grid-auto-rows: 64px;
    gap: 14px;
    opacity: 0.18;
  }

  .poster-cloud {
    grid-template-columns: repeat(8, minmax(64px, 1fr));
    grid-auto-rows: 104px;
    opacity: 0.25;
  }

  .wall-mascot {
    opacity: 0.42;
    top: 110px;
    width: 180px;
  }

  .country-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .campaign-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .campaign-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .campaign-band img {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .promo-bar {
    display: block;
  }

  .promo-bar strong {
    display: none;
  }

  .site-header {
    top: 34px;
  }

  .hero-mini-grid,
  .category-tiles {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .plans .plan-grid,
  .step-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .channel-wall,
  .vod-band,
  .steps-band,
  .devices-band,
  .plans {
    padding-right: 14px;
    padding-left: 14px;
  }

  .wall-mascot {
    display: none;
  }

  .channel-logo-cloud {
    grid-template-columns: repeat(4, minmax(66px, 1fr));
    grid-auto-rows: 56px;
    padding-top: 38px;
    opacity: 0.14;
  }

  .poster-cloud {
    grid-template-columns: repeat(5, minmax(54px, 1fr));
    grid-auto-rows: 86px;
    gap: 10px;
    opacity: 0.2;
  }

  .wall-copy h2,
  .vod-band h2 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .country-strip {
    gap: 14px;
  }

  .channel-marquee span {
    min-width: 112px;
  }

  .step-grid {
    gap: 18px;
  }

  .device-grid {
    gap: 22px;
  }

  .plan {
    min-height: auto;
  }

  .plan::after {
    opacity: 0.22;
  }

  .campaign-band {
    width: min(100% - 22px, 1180px);
    padding: 28px 18px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp {
    width: 64px;
    height: 64px;
  }

  .floating-whatsapp span {
    width: 29px;
    height: 29px;
  }

  .whatsapp-message {
    width: min(330px, calc(100vw - 28px));
    padding: 18px 44px 18px 20px;
    border-radius: 20px 20px 0 20px;
  }

  .whatsapp-message p {
    font-size: 15px;
  }

  .plan-modal {
    padding: 14px;
  }

  .plan-modal__dialog {
    padding: 28px 18px 18px;
  }

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

  .plan-modal__action {
    min-height: 104px;
  }
}
