:root {
  --bg: #050607;
  --bg-soft: #08090b;
  --red: #e31b23;
  --red-deep: #8e0d14;
  --yellow: #ffc400;
  --gold: #ffb000;
  --orange: #ff3b1f;
  --text: #ffffff;
  --muted: #b8b8b8;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  --glow-red: 0 0 28px rgba(227, 27, 35, 0.38);
  --glow-yellow: 0 0 28px rgba(255, 196, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  background:
    radial-gradient(circle at 88% 7%, rgba(227, 27, 35, 0.26), transparent 22rem),
    radial-gradient(circle at 8% 15%, rgba(255, 196, 0, 0.08), transparent 18rem),
    radial-gradient(circle at 50% 60%, rgba(227, 27, 35, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 48%, #030405);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

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

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.discount-strip {
  background: linear-gradient(90deg, #df121a 0%, #f2271d 42%, #ffc400 100%);
  box-shadow: 0 8px 30px rgba(227, 27, 35, 0.35);
}

.strip-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.strip-inner p {
  margin: 0;
  justify-self: center;
}

.strip-inner strong {
  color: #7c060c;
}

.countdown {
  display: flex;
  gap: 8px;
}

.countdown span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 48px;
  border-radius: 5px;
  background: #8f0710;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 9px;
  line-height: 1;
}

.countdown strong {
  color: #fff;
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 4, 5, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 80px;
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-header .brand {
  width: 100%;
  justify-content: center;
}

.brand small {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
}

.play-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  filter:
    drop-shadow(0 0 10px rgba(227, 27, 35, 0.34))
    drop-shadow(0 0 16px rgba(255, 196, 0, 0.22));
}

.play-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo {
  display: block;
  width: 246px;
  height: 60px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(227, 27, 35, 0.26))
    drop-shadow(0 0 18px rgba(255, 196, 0, 0.18));
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (min-width: 981px) {
  .nav-panel {
    display: contents;
  }

  .nav-links {
    justify-self: center;
  }

  .nav-actions {
    justify-self: end;
  }

  .menu-toggle,
  .mobile-language {
    display: none;
  }
}

.language {
  width: 74px;
  height: 44px;
  padding: 0 12px;
  color: #fff;
  background: rgba(227, 27, 35, 0.08);
  border: 1px solid rgba(227, 27, 35, 0.55);
  border-radius: 4px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
}

.mobile-language {
  display: none;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.menu-toggle {
  display: none;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-yellow {
  color: #090909;
  background: linear-gradient(180deg, #ffd45c 0%, var(--yellow) 38%, var(--gold) 100%);
  box-shadow: var(--glow-yellow);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 196, 0, 0.03);
  border-color: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.1);
}

.btn-red {
  color: #fff;
  background: linear-gradient(180deg, #f52a31 0%, #e31b23 52%, #c9151c 100%);
  box-shadow: 0 10px 28px rgba(227, 27, 35, 0.22);
}

.btn-small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 12px;
}

section {
  scroll-margin-top: 120px;
}

.hero {
  scroll-margin-top: 150px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: center;
  min-height: 600px;
  padding: 64px 0 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(44px, 4.1vw, 60px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.75);
}

.headline-line {
  white-space: nowrap;
}

.yellow,
h2 span {
  color: var(--yellow);
}

.red {
  color: var(--red);
}

.hero-subtitle {
  max-width: 575px;
  margin: 28px 0;
  color: #f2f2f2;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 26px;
}

.hero-features div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
}

.hero-features strong {
  font-size: 16px;
  font-weight: 500;
}

.hero-features span {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-features .feature-icon {
  grid-row: span 2;
  position: relative;
  display: inline-block;
  width: 54px;
  height: 40px;
  color: var(--yellow);
  flex: 0 0 auto;
}

.icon-screen::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 42px;
  height: 28px;
  border: 5px solid currentColor;
  border-radius: 5px;
}

.icon-screen::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 0;
  width: 30px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.hero-features .icon-clapper {
  width: 50px;
  height: 38px;
  border-radius: 5px;
  background: currentColor;
}

.icon-clapper::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  border-radius: 5px 5px 0 0;
  background: repeating-linear-gradient(135deg, #101010 0 7px, #101010 7px 10px, currentColor 10px 18px);
}

.icon-clapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 4px;
  background: rgba(5, 6, 7, 0.12);
}

.hero-features .icon-quality {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: currentColor;
}

.icon-quality::before {
  content: "4K";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08090b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.guarantee {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.guarantee i {
  margin-right: 7px;
  color: var(--yellow);
}

.hero-media {
  position: relative;
  isolation: isolate;
  margin-right: -34px;
}

.spain-splash {
  position: absolute;
  top: -64px;
  right: -112px;
  z-index: 1;
  width: 560px;
  height: 370px;
  pointer-events: none;
  opacity: 0.9;
  background: url("assets/spain-brush-splash.webp") center / contain no-repeat;
  filter: drop-shadow(0 0 34px rgba(227, 27, 35, 0.38));
}

.hero-tv {
  position: relative;
  z-index: 2;
  width: min(690px, 108%);
  margin-left: auto;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.85));
}

.hero-tv img {
  display: block;
  width: 100%;
  height: auto;
}

.trust,
.devices,
.steps {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 8px;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    linear-gradient(90deg, var(--red), var(--yellow)) border-box;
}

.trust-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 122px;
  background: rgba(255, 255, 255, 0.025);
}

.trust-card i {
  color: #fff;
  font-size: 38px;
}

.trust-card strong {
  display: block;
  color: var(--yellow);
  font-size: 28px;
  font-weight: 600;
}

.trust-card span {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.devices {
  margin-top: 30px;
  padding: 24px 28px 30px;
  text-align: center;
}

h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.devices h2 .red-word {
  color: var(--red);
}

.devices h2 .yellow-word {
  color: var(--yellow);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.device-grid article {
  display: grid;
  gap: 16px;
  min-height: 92px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.device-grid i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 38px;
}

.device-grid article:last-child {
  border-right: 0;
}

.pricing {
  padding-top: 34px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.price-card.popular {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    linear-gradient(180deg, var(--red), var(--yellow)) border-box;
  transform: translateY(-14px);
  box-shadow: var(--shadow), var(--glow-red), var(--glow-yellow);
}

.ribbon {
  position: absolute;
  inset: 0 0 auto;
  height: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, var(--red), #ff3139);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 -28px 22px;
  padding: 0 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.popular h3 {
  margin-top: 20px;
}

.price {
  margin-bottom: 26px;
  text-align: center;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.price span {
  margin-right: 8px;
  font-size: 25px;
  vertical-align: super;
}

.price sup {
  font-size: 28px;
}

.price em {
  display: inline-block;
  margin-left: 12px;
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  vertical-align: middle;
}

.price .old-price {
  position: relative;
  opacity: 0.82;
  text-decoration: line-through;
  text-decoration-color: rgba(227, 27, 35, 0.9);
  text-decoration-thickness: 2px;
}

.price-card ul {
  display: grid;
  gap: 16px;
  min-height: 168px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--yellow);
  font-weight: 500;
}

.price-card .btn {
  width: 100%;
}

.saving {
  margin: 0 0 8px;
  padding: 10px;
  border-radius: 7px 7px 0 0;
  background: rgba(227, 27, 35, 0.45);
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.testimonials,
.steps,
.referral,
.faq,
.final-cta,
.footer {
  margin-top: 38px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.testimonial-card.changing {
  animation: reviewFade 0.26s ease;
}

@keyframes reviewFade {
  from {
    opacity: 0.65;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f8f8, #9d9d9d);
  color: #1a1a1a;
  font-weight: 500;
}

.stars {
  color: var(--yellow);
  letter-spacing: 2px;
}

.testimonial-card strong,
.testimonial-card p {
  font-size: 13px;
}

.testimonial-card strong {
  display: block;
  color: #fff;
  font-weight: 500;
}

.testimonial-card p {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.dots button,
.dots span {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dots button.active,
.dots button:hover,
.dots span:first-child {
  background: var(--red);
  transform: scale(1.08);
}

.steps {
  padding: 28px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
}

.step-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 22px;
  border-top: 2px dotted rgba(255, 255, 255, 0.3);
}

.step-grid i {
  grid-row: span 3;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 31px;
}

.step-grid strong {
  color: var(--red);
  font-size: 32px;
  font-weight: 500;
}

.step-grid h3 {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.step-grid p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.referral {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 22px 46px;
  border: 1px solid transparent;
  border-radius: 17px;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 196, 0, 0.07), transparent 20rem) padding-box,
    linear-gradient(100deg, rgba(8, 9, 11, 0.96) 0%, rgba(22, 11, 12, 0.95) 42%, rgba(54, 10, 12, 0.76) 100%) padding-box,
    linear-gradient(92deg, rgba(255, 196, 0, 0.78), rgba(227, 27, 35, 0.72)) border-box;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.44),
    inset 0 0 32px rgba(255, 255, 255, 0.018),
    0 0 18px rgba(227, 27, 35, 0.14);
}

.gift {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 82px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: transparent;
  color: var(--yellow);
  font-size: 42px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.gift::before,
.gift::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd45c, var(--yellow) 55%, var(--gold));
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.38);
}

.gift::before {
  left: 21px;
}

.gift::after {
  right: 21px;
}

.gift i {
  position: relative;
  top: 14px;
  width: 70px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 7px 7px;
  background: linear-gradient(180deg, #ffd65a 0%, var(--yellow) 54%, #f5a400 100%);
  color: #161616;
  font-size: 28px;
  box-shadow:
    inset 0 -8px 12px rgba(0, 0, 0, 0.08),
    0 5px 0 rgba(0, 0, 0, 0.32);
}

.referral h2 {
  margin: 0 0 8px;
  text-align: left;
  font-size: 25px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.42);
}

.referral p {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.referral strong {
  color: var(--yellow);
}

.referral-action {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.referral-action .btn {
  min-width: 280px;
  min-height: 52px;
}

.referral-action p {
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.referral-action i {
  margin-right: 5px;
  color: var(--yellow);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-grid > div {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  color: #fff;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-item i {
  transition: transform 0.2s ease;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 22px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open p {
  max-height: 150px;
  padding-bottom: 18px;
}

.faq-item.open i {
  transform: rotate(180deg);
  color: var(--yellow);
}

.final-cta {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: 18px 28px 18px 0;
  border: 1px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 45%, rgba(255, 196, 0, 0.08), transparent 18rem) padding-box,
    linear-gradient(105deg, rgba(81, 10, 13, 0.9), rgba(36, 10, 12, 0.96) 42%, rgba(9, 8, 8, 0.98) 100%) padding-box,
    linear-gradient(90deg, rgba(227, 27, 35, 0.78), rgba(227, 27, 35, 0.55)) border-box;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.48),
    inset 0 0 28px rgba(255, 255, 255, 0.018),
    0 0 18px rgba(227, 27, 35, 0.16);
}

.flag-card {
  width: 198px;
  height: 112px;
  object-fit: cover;
  align-self: stretch;
  border-radius: 0 10px 10px 0;
  transform: rotate(-8deg) translateX(-16px) scale(1.08);
  filter:
    saturate(0.96)
    contrast(1.04)
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
  opacity: 0.9;
}

.final-cta h2 {
  margin: 0 0 12px;
  max-width: 700px;
  text-align: left;
  font-size: 26px;
  line-height: 1.16;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

.final-cta p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.cta-side {
  display: grid;
  gap: 15px;
  justify-items: center;
}

.cta-side .btn {
  min-width: 305px;
}

.footer {
  padding: 42px 0 26px;
  background:
    radial-gradient(circle at 50% 0, rgba(227, 27, 35, 0.04), transparent 20rem),
    #030405;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 54px;
}

.footer-brand .brand-logo {
  width: 252px;
  height: 62px;
}

.footer p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.socials a {
  color: #fff;
  font-size: 20px;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer a {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.payments {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  gap: 18px 22px;
}

.payments img {
  width: auto;
  max-width: 92px;
  height: 30px;
  object-fit: contain;
}

.copyright {
  margin: 34px 0 0;
  text-align: center;
}

.subpage-main {
  padding: 76px 0 44px;
}

.page-hero {
  padding: 54px;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 196, 0, 0.11), transparent 18rem) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)) padding-box,
    linear-gradient(100deg, rgba(227, 27, 35, 0.72), rgba(255, 196, 0, 0.42)) border-box;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 800;
}

.page-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: #f3f3f3;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

.content-section {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
}

.content-section h2 {
  margin-bottom: 18px;
  text-align: left;
}

.content-section h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.content-section ul,
.content-section ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

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

.seo-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.seo-card h3 {
  margin-top: 0;
}

.breadcrumbs {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--yellow);
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.blog-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

.blog-card img,
.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0b0d;
}

.blog-card h2 {
  margin: 0;
  text-align: left;
  font-size: 22px;
  line-height: 1.25;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.featured-image {
  margin-top: 30px;
}

.article-body {
  max-width: 920px;
  margin: 34px auto 0;
}

.toc {
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 12px;
  background: rgba(255, 196, 0, 0.035);
}

.toc h2 {
  margin: 0 0 14px;
  text-align: left;
  font-size: 20px;
}

.toc ol {
  margin: 0;
  padding-left: 22px;
}

.toc a,
.content-section a,
.article-body a {
  color: var(--yellow);
}

.article-body h2 {
  margin-top: 36px;
  text-align: left;
  font-size: 30px;
}

.article-body h3 {
  margin-top: 24px;
  font-size: 21px;
}

.article-body p,
.article-body li {
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.85;
}

.article-faq {
  margin-top: 36px;
}

.install-guide {
  position: relative;
  overflow: hidden;
}

.install-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 94% 10%, rgba(227, 27, 35, 0.13), transparent 18rem),
    radial-gradient(circle at 0 100%, rgba(255, 196, 0, 0.08), transparent 18rem);
}

.section-kicker {
  position: relative;
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  color: var(--yellow);
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.055);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.install-guide > h2,
.install-guide > p,
.install-guide > .timeline,
.install-guide > .credential-layout,
.install-guide > .method-grid,
.install-guide > .guide-steps,
.install-guide > .screenshot-grid,
.install-guide > .app-grid,
.install-guide > .tutorial-grid,
.install-guide > .install-faq,
.install-guide > .performance-grid,
.install-guide > .support-grid,
.install-guide > .guide-cta {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline article {
  position: relative;
  min-height: 148px;
  padding: 20px 14px;
  background: rgba(5, 6, 7, 0.68);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #050607;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.timeline i {
  display: block;
  margin: 18px 0 12px;
  color: var(--yellow);
  font-size: 24px;
}

.timeline p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.credential-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin-top: 30px;
}

.credential-layout h3,
.method-card h3,
.guide-icon + h3,
.tutorial-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.credential-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(5, 6, 7, 0.7);
  box-shadow: inset 0 0 28px rgba(255, 196, 0, 0.035);
}

.credential-box p {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
}

.credential-box span {
  color: var(--yellow);
  font-family: var(--font);
  font-weight: 600;
}

.credential-box.compact {
  margin-top: 14px;
}

.field-grid,
.app-grid,
.performance-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field-grid article,
.app-grid article,
.performance-grid article,
.support-grid article,
.method-card,
.tutorial-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.guide-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--yellow);
  border: 1px solid rgba(255, 196, 0, 0.24);
  border-radius: 12px;
  background: rgba(255, 196, 0, 0.065);
  box-shadow: 0 0 22px rgba(255, 196, 0, 0.08);
  font-size: 20px;
}

.field-grid p,
.app-grid p,
.performance-grid p,
.support-grid p,
.method-card p,
.tutorial-grid p {
  margin: 0;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.65;
}

.method-grid,
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.method-card {
  position: relative;
}

.method-card.recommended {
  border-color: rgba(255, 196, 0, 0.56);
  box-shadow: 0 0 30px rgba(255, 196, 0, 0.08);
}

.method-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #050607;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.difficulty {
  margin-bottom: 12px !important;
  color: var(--yellow) !important;
  font-weight: 500;
}

.guide-steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: guide-step;
  list-style: none;
}

.guide-steps li {
  position: relative;
  min-height: 48px;
  padding: 14px 16px 14px 58px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.032);
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.55;
}

.guide-steps li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #050607;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow), #ffae00);
  font-weight: 700;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.screenshot-grid figure {
  margin: 0;
}

.screenshot-grid div {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  border: 1px dashed rgba(255, 196, 0, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(227, 27, 35, 0.18), rgba(255, 196, 0, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.screenshot-grid i {
  color: var(--yellow);
  font-size: 28px;
}

.screenshot-grid figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.install-faq {
  margin-top: 22px;
}

.install-faq .faq-item {
  background: rgba(255, 255, 255, 0.035);
}

.guide-cta {
  width: max-content;
  margin-top: 24px;
}

.guide-final-cta {
  margin-top: 30px;
  padding: 42px;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 196, 0, 0.12), transparent 18rem) padding-box,
    linear-gradient(110deg, rgba(105, 11, 16, 0.94), rgba(32, 8, 10, 0.98)) padding-box,
    linear-gradient(90deg, rgba(227, 27, 35, 0.9), rgba(255, 196, 0, 0.85)) border-box;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.guide-final-cta h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.guide-final-cta p {
  max-width: 680px;
  margin: 14px auto 24px;
  color: #f0f0f0;
  line-height: 1.7;
}

.guide-final-cta div {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.not-found {
  min-height: 64vh;
  display: grid;
  align-items: center;
}

@media (max-width: 980px) {
  .strip-inner {
    grid-template-columns: 1fr auto;
    padding: 10px 0;
  }

  .countdown {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(5, 6, 7, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .nav-actions .language,
  .nav-actions .btn-small {
    width: 100%;
  }

  .nav-actions .language {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-media {
    order: 2;
    margin-right: 0;
  }

  .hero-tv {
    width: 100%;
    margin-inline: auto;
  }

  .trust,
  .pricing-grid,
  .testimonial-grid,
  .step-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .device-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .device-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .price-card.popular {
    transform: none;
  }

  .referral,
  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .credential-layout,
  .method-grid,
  .tutorial-grid {
    grid-template-columns: 1fr;
  }

  .referral h2,
  .final-cta h2 {
    text-align: center;
  }

  .gift {
    margin: 0 auto;
  }

  .step-grid article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .discount-strip {
    display: block;
  }

  .container,
  .strip-inner {
    width: min(100% - 28px, 1200px);
  }

  .strip-inner {
    grid-template-columns: 1fr;
    min-height: 42px;
    gap: 0;
    padding: 5px 0;
    font-size: 10px;
    line-height: 1.35;
    text-align: center;
  }

  .strip-inner p {
    max-width: 310px;
    justify-self: center;
  }

  .countdown {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav {
    width: 100%;
    min-height: 58px;
    display: flex;
    padding: 0 16px;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .brand {
    font-size: 20px;
    line-height: 0.9;
    gap: 8px;
  }

  .site-header .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand small {
    font-size: 10px;
  }

  .play-mark {
    width: 34px;
    height: 34px;
  }

  .brand-logo {
    width: 168px;
    height: 41px;
  }

  .mobile-language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    margin-left: auto;
    padding: 0 13px;
    border-radius: 4px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 30px;
    color: #fff;
    font-size: 21px;
  }

  .nav-panel {
    top: 58px;
    left: 14px;
    right: 14px;
  }

  .subpage-main {
    padding: 34px 0 26px;
  }

  .page-hero {
    padding: 30px 22px;
    border-radius: 13px;
  }

  .page-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .page-hero p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .content-section {
    margin-top: 22px;
    padding: 22px;
    border-radius: 11px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section p,
  .content-section li {
    font-size: 14px;
    line-height: 1.7;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .page-links {
    gap: 10px;
  }

  .blog-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-card {
    padding: 18px;
    border-radius: 12px;
  }

  .blog-card h2 {
    font-size: 20px;
  }

  .post-meta {
    font-size: 12px;
  }

  .featured-image {
    margin-top: 22px;
  }

  .article-body {
    margin-top: 24px;
  }

  .toc {
    padding: 18px;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .article-body h3 {
    font-size: 19px;
  }

  .article-body p,
  .article-body li {
    font-size: 14px;
    line-height: 1.75;
  }

  .section-kicker {
    font-size: 10px;
  }

  .timeline {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .timeline article {
    min-height: 0;
    display: grid;
    grid-template-columns: 30px 34px 1fr;
    gap: 12px;
    align-items: center;
    padding: 15px;
  }

  .timeline i {
    margin: 0;
    font-size: 20px;
  }

  .timeline p {
    font-size: 12px;
  }

  .credential-layout,
  .field-grid,
  .app-grid,
  .performance-grid,
  .support-grid,
  .method-grid,
  .tutorial-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .credential-layout {
    gap: 16px;
  }

  .credential-box {
    padding: 15px;
  }

  .credential-box p {
    font-size: 11px;
  }

  .field-grid article,
  .app-grid article,
  .performance-grid article,
  .support-grid article,
  .method-card,
  .tutorial-grid article {
    padding: 17px;
    border-radius: 10px;
  }

  .guide-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .credential-layout h3,
  .method-card h3,
  .guide-icon + h3,
  .tutorial-grid h3 {
    font-size: 16px;
  }

  .guide-steps li {
    padding: 13px 14px 13px 52px;
    font-size: 13px;
  }

  .screenshot-grid div {
    aspect-ratio: 16 / 8;
  }

  .guide-cta {
    width: 100%;
  }

  .guide-final-cta {
    margin-top: 24px;
    padding: 26px 18px;
    border-radius: 14px;
  }

  .guide-final-cta h2 {
    font-size: 25px;
  }

  .guide-final-cta p {
    font-size: 14px;
    line-height: 1.6;
  }

  .guide-final-cta div {
    display: grid;
    gap: 12px;
  }

  .hero {
    width: 100%;
    padding: 28px 17px 38px;
    gap: 30px;
  }

  .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: clamp(31px, 9.4vw, 40px);
    line-height: 1.06;
  }

  .spain-splash {
    top: -20px;
    right: -30px;
    width: 280px;
    height: 190px;
    opacity: 0.75;
  }

  .hero-subtitle {
    margin: 18px 0 24px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 25px;
  }

  .hero-features div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
  }

  .hero-features .feature-icon {
    grid-row: auto;
  }

  .hero-features strong {
    font-size: 16px;
    line-height: 1;
  }

  .hero-features span:not(.feature-icon) {
    max-width: 92px;
    color: #fff;
    font-size: 10px;
    line-height: 1.24;
  }

  .hero-buttons {
    display: grid;
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    border-radius: 4px;
    font-size: 13px;
  }

  .guarantee {
    margin-top: 14px;
    font-size: 10px;
  }

  .trust,
  .pricing-grid,
  .testimonial-grid,
  .step-grid,
  .faq-grid,
  .footer-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .trust {
    width: calc(100% - 18px);
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 0;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.025);
  }

  .trust-card {
    min-height: 110px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
  }

  .trust-card:nth-child(2n) {
    border-right: 0;
  }

  .trust-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-card strong {
    font-size: 20px;
  }

  .trust-card span {
    font-size: 10px;
    line-height: 1.3;
  }

  .devices {
    width: calc(100% - 18px);
    margin-top: 20px;
    padding: 26px 0 18px;
    border-radius: 7px;
  }

  .devices h2 {
    max-width: 260px;
    margin: 0 auto 24px;
    font-size: 20px;
    line-height: 1.35;
  }

  .device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .device-grid article {
    min-height: 94px;
    gap: 10px;
    padding: 14px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 10px;
    line-height: 1.25;
  }

  .device-grid article:nth-child(3n) {
    border-right: 0;
  }

  .device-grid article:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .device-grid article:last-child {
    grid-column: 2 / 3;
    border-right: 0;
  }

  .steps,
  .referral,
  .final-cta {
    padding: 24px 18px;
  }

  .final-cta {
    width: calc(100% - 18px);
    gap: 16px;
    padding: 24px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 38% 18%, rgba(255, 196, 0, 0.07), transparent 12rem) padding-box,
      linear-gradient(180deg, rgba(110, 11, 16, 0.94), rgba(62, 8, 11, 0.94) 42%, rgba(20, 8, 9, 0.98) 100%) padding-box,
      linear-gradient(180deg, rgba(227, 27, 35, 0.82), rgba(227, 27, 35, 0.58)) border-box;
  }

  .final-cta .flag-card {
    display: none;
  }

  .final-cta h2 {
    max-width: 300px;
    margin: 0 auto 10px;
    text-align: center;
    font-size: 24px;
    line-height: 1.25;
  }

  .final-cta p {
    max-width: 286px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
  }

  .cta-side {
    width: 100%;
    gap: 12px;
  }

  .cta-side .btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    border-radius: 8px;
    font-size: 15px;
  }

  .cta-side .guarantee {
    max-width: 250px;
    font-size: 14px;
    line-height: 1.4;
  }

  .referral {
    width: calc(100% - 18px);
    justify-items: start;
    gap: 18px;
    padding: 28px 28px 26px;
    text-align: left;
    background:
      radial-gradient(circle at 64% 50%, rgba(227, 27, 35, 0.12), transparent 16rem) padding-box,
      linear-gradient(112deg, rgba(8, 9, 11, 0.97) 0%, rgba(19, 13, 11, 0.96) 45%, rgba(62, 10, 13, 0.72) 100%) padding-box,
      linear-gradient(105deg, rgba(255, 196, 0, 0.76), rgba(227, 27, 35, 0.7)) border-box;
  }

  .referral h2 {
    text-align: left;
    font-size: 29px;
    line-height: 1.1;
  }

  .referral p {
    max-width: 330px;
    font-size: 23px;
    line-height: 1.45;
    font-weight: 500;
  }

  .referral strong {
    display: inline;
    font-weight: 700;
  }

  .referral .gift {
    margin: 0;
    width: 118px;
    height: 92px;
    border-right: 0;
  }

  .gift::before,
  .gift::after {
    width: 38px;
    height: 38px;
  }

  .gift::before {
    left: 24px;
  }

  .gift::after {
    right: 24px;
  }

  .gift i {
    top: 18px;
    width: 92px;
    height: 60px;
    font-size: 34px;
  }

  .referral-action {
    width: 100%;
    gap: 16px;
    justify-items: stretch;
  }

  .referral-action .btn {
    width: 100%;
    min-width: 0;
    min-height: 82px;
    font-size: 22px;
    border-radius: 9px;
  }

  .referral-action p {
    max-width: none;
    text-align: center;
    font-size: 17px;
    line-height: 1.3;
  }

  .steps {
    width: calc(100% - 18px);
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
  }

  .steps h2 {
    padding: 22px 18px 0;
    margin-bottom: 0;
    font-size: 20px;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing {
    width: min(calc(100% - 18px), 340px);
    padding-top: 28px;
  }

  .pricing h2 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.2;
  }

  .pricing-grid {
    gap: 24px;
  }

  .price-card {
    padding: 24px 20px 17px;
    border-radius: 10px;
    border-top-width: 2px;
  }

  .price-card.popular {
    border-width: 2px;
  }

  .price-card h3 {
    margin: 0 -20px 18px;
    padding: 0 20px 15px;
    font-size: 17px;
  }

  .popular h3 {
    margin-top: 20px;
  }

  .ribbon {
    height: 30px;
    font-size: 10px;
    border-radius: 9px 9px 0 0;
  }

  .price {
    margin-bottom: 22px;
    font-size: 56px;
  }

  .price span {
    margin-right: 6px;
    font-size: 21px;
  }

  .price sup {
    font-size: 24px;
  }

  .price em {
    margin-left: 9px;
    font-size: 16px;
  }

  .price-card ul {
    min-height: 0;
    gap: 14px;
    margin-bottom: 25px;
  }

  .price-card li {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .price-card li::before {
    margin-right: 8px;
  }

  .price-card .btn {
    min-height: 48px;
    font-size: 11.5px;
  }

  .saving {
    margin-bottom: 0;
    padding: 12px 8px;
    border-radius: 8px 8px 0 0;
    font-size: 12px;
  }

  .testimonials {
    width: min(calc(100% - 18px), 340px);
    margin-top: 34px;
  }

  .testimonials h2 {
    max-width: 230px;
    margin: 0 auto 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testimonial-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 12px;
    align-items: start;
    min-height: 118px;
    padding: 14px 16px 14px 12px;
    border-radius: 7px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  }

  .testimonial-card .person {
    display: contents;
  }

  .testimonial-card .avatar {
    grid-row: 1 / 3;
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .testimonial-card .stars {
    margin-top: 3px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
  }

  .testimonial-card strong {
    margin-top: 5px;
    font-size: 11px;
  }

  .testimonial-card p {
    grid-column: 2;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.45;
  }

  .testimonial-dots {
    margin-top: 15px;
  }

  .step-grid article {
    grid-template-columns: 92px 1fr;
    min-height: 132px;
    padding: 18px 20px;
    column-gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    align-items: center;
  }

  .step-grid article:last-child {
    border-bottom: 0;
  }

  .step-grid i {
    grid-row: 1 / 4;
  }

  .step-grid strong {
    font-size: 42px;
    line-height: 0.9;
  }

  .step-grid h3 {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.25;
  }

  .step-grid p {
    margin-top: 7px;
    max-width: 190px;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-grid {
    width: min(calc(100% - 36px), 390px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px 28px;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
    font-size: 30px;
  }

  .footer-brand .play-mark {
    width: 62px;
    height: 62px;
  }

  .footer-brand .brand-logo {
    width: 220px;
    height: 68px;
  }

  .footer-brand p {
    max-width: 310px;
    margin: 16px auto 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .socials {
    justify-content: center;
    gap: 28px;
    margin-top: 26px;
  }

  .socials a {
    margin-bottom: 0;
    color: #ededed;
    font-size: 32px;
  }

  .footer h3 {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .footer a {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .payments {
    grid-template-columns: repeat(2, max-content);
    gap: 20px 18px;
  }

  .payments img {
    height: 31px;
    max-width: 76px;
  }

  .payments img[alt="Bitcoin"] {
    height: 39px;
  }

  .copyright {
    max-width: 300px;
    margin: 42px auto 0;
    font-size: 16px;
    line-height: 1.55;
  }
}
