@charset "UTF-8";

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-max: 1180px;
  --bg: #07090d;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f7f3ed;
  --muted: #b6bbc2;
  --muted-2: #8c939c;
  --gold-1: #ecae74;
  --gold-2: #ffe0a3;
  --gold-3: #fff2cc;
  --teal: #73cfe6;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::selection {
  color: #12100c;
  background: var(--gold-2);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes codeGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 224, 163, 0);
  }
  50% {
    box-shadow: 0 0 36px rgba(255, 224, 163, 0.2);
  }
}

@keyframes ctaSheen {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }
  to {
    transform: translateX(220%) skewX(-18deg);
  }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.72s cubic-bezier(0.22, 0.68, 0, 1) forwards;
}

.hero-anim:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-anim:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-anim:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-anim:nth-child(5) {
  animation-delay: 0.32s;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1),
    transform 0.7s cubic-bezier(0.22, 0.68, 0, 1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.main-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
  pointer-events: none;
}

.main-bg::before {
  content: "";
  position: absolute;
  inset: -24px;
  background-image: url("../img/main-bg.png");
  background-size: cover;
  background-position: center right;
  filter: blur(26px) brightness(0.44) saturate(0.9);
  transform: scale(1.05);
}

.main-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.16), #07090d 88%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.82), rgba(7, 9, 13, 0.28) 68%);
}

.main {
  position: relative;
  z-index: 1;
}

.header {
  position: relative;
  z-index: 10;
  padding: 12px 20px;
  background: rgba(13, 15, 19, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand,
.actions,
.btn {
  display: inline-flex;
  align-items: center;
}

.brand {
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  width: 112px;
  height: auto;
  display: block;
}

.actions {
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.actions a,
.hero-actions a,
.package a,
.final-cta a {
  text-decoration: none;
}

.btn {
  position: relative;
  overflow: hidden;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.btn-gold::after,
.float-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0;
  pointer-events: none;
}

.btn-gold:hover::after,
.float-cta:hover::after {
  opacity: 1;
  animation: ctaSheen 0.72s ease;
}

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

.btn:focus-visible,
.hero-link:focus-visible,
.float-cta:focus-visible,
.promo-code-button:focus-visible,
.offer-code-button:focus-visible {
  outline: 2px solid rgba(255, 224, 163, 0.72);
  outline-offset: 3px;
}

.btn img {
  width: 11px;
  height: auto;
}

.btn-ghost {
  color: #eef2f5;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.btn-gold {
  color: #17120b;
  background: linear-gradient(356deg, var(--gold-1), var(--gold-2) 50%, var(--gold-3));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 28px rgba(236, 174, 116, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 16px 36px rgba(236, 174, 116, 0.38);
}

.hero {
  position: relative;
  min-height: calc(100svh - 67px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/main-bg.png");
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 9, 13, 0.92) 0%, rgba(7, 9, 13, 0.68) 43%, rgba(7, 9, 13, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 9, 13, 0.92), rgba(7, 9, 13, 0.02) 54%);
}

.hero__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 20px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7.2vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  color: #fff8ea;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.58);
}

.hero-text {
  max-width: 520px;
  margin: 22px 0 0;
  color: #e2e6ea;
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.hero-text strong {
  color: #fff0c4;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  min-width: 0;
}

.hero-cta {
  min-height: 60px;
  padding-inline: 34px;
  font-size: 16px;
  box-shadow: 0 18px 44px rgba(236, 174, 116, 0.38);
}

.hero-link {
  color: #e7edf2;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(231, 237, 242, 0.34);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.hero-link:hover {
  color: var(--gold-2);
  border-color: rgba(255, 224, 163, 0.65);
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 240, 196, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 14, 18, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.promo-panel {
  min-width: 0;
}

.hero-panel::before {
  content: "";
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: softPulse 3.2s ease-in-out infinite;
}

.promo-code-card {
  position: relative;
  isolation: isolate;
  padding: 20px 16px;
  border: 1px solid rgba(255, 224, 163, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(236, 174, 116, 0.16), rgba(115, 207, 230, 0.06)),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
  animation: codeGlow 3.8s ease-in-out infinite;
}

.promo-code-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 18% 0%, rgba(255, 224, 163, 0.23), transparent 34%);
}

.hero-metric {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric:last-child {
  border-bottom: 0;
}

.hero-metric span,
.hero-metric small,
.promo-code-card span,
.promo-code-card small {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-metric strong {
  display: block;
  margin: 4px 0;
  color: #fff3ca;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
}

.promo-code-button {
  display: inline-flex;
  align-items: center;
  margin: 4px 0;
  padding: 0;
  color: #fff8ea;
  background: transparent;
  border: 0;
  font: inherit;
  appearance: none;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.promo-code-button:hover,
.offer-code-button:hover {
  color: var(--gold-2);
  transform: translateY(-1px);
}

.section {
  width: min(100% - 40px, var(--page-max));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  min-width: 0;
}

.section-head h2,
.package-copy h2,
.final-cta h2 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p:not(.section-kicker),
.package-copy p,
.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.final-cta strong,
.package-copy strong {
  color: #fff0c4;
}

.benefits {
  display: grid;
  gap: 14px;
}

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

.benefit {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 224, 163, 0.34);
  background: rgba(255, 255, 255, 0.075);
}

.benefit {
  padding: 20px;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  color: #17120b;
  background: linear-gradient(356deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.benefit h3 {
  margin: 16px 0 6px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.package-section {
  padding-top: 18px;
}

.package {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.package-copy {
  max-width: 510px;
  min-width: 0;
}

.package-cta {
  margin-top: 28px;
  min-height: 50px;
}

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

.offer-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 0.7fr);
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.74);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.offer-row:hover {
  transform: translateX(4px);
  border-color: rgba(255, 224, 163, 0.3);
  background: rgba(20, 23, 28, 0.86);
}

.offer-row span {
  color: var(--muted);
  font-size: 14px;
}

.offer-row strong {
  color: #fff2c9;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.offer-code-button {
  justify-self: end;
  padding: 0;
  color: #fff2c9;
  background: transparent;
  border: 0;
  font: inherit;
  appearance: none;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.offer-row small {
  color: var(--muted-2);
  font-size: 13px;
  text-align: right;
}

.final-cta {
  width: min(100% - 40px, var(--page-max));
  margin: 4px auto clamp(44px, 7vw, 76px);
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 224, 163, 0.22);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(236, 174, 116, 0.12), rgba(115, 207, 230, 0.08)),
    rgba(14, 16, 19, 0.82);
  backdrop-filter: blur(14px);
}

.final-cta h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.final-cta p {
  max-width: 720px;
}

.final-cta > div {
  min-width: 0;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 42px 20px 56px;
  background: rgba(8, 10, 13, 0.96);
  border-top: 1px solid var(--line);
}

.footer-container {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

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

.footer-providers {
  display: grid;
  grid-template-columns: repeat(6, minmax(116px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 0 28px;
}

.footer-providers a {
  width: 100%;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 0 8px;
}

.footer-providers img,
.footer-cards img,
.footer-icons img {
  display: block;
  width: auto;
  object-fit: contain;
}

.footer-providers img {
  width: var(--provider-width, 150px);
  max-width: 100%;
  max-height: var(--provider-height, 42px);
  opacity: 0.82;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.footer-providers a[data-brand="egt"] {
  --provider-width: 176px;
  --provider-height: 56px;
}

.footer-providers a[data-brand="wazdan"] {
  --provider-width: 168px;
  --provider-height: 30px;
}

.footer-providers a[data-brand="million"] {
  --provider-width: 158px;
  --provider-height: 48px;
}

.footer-providers a[data-brand="spribe"] {
  --provider-width: 154px;
  --provider-height: 48px;
}

.footer-providers a[data-brand="bgaming"] {
  --provider-width: 162px;
  --provider-height: 42px;
}

.footer-providers a[data-brand="amusnet"] {
  --provider-width: 168px;
  --provider-height: 30px;
}

.footer-providers img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-cards,
.footer-links,
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cards {
  gap: 34px;
  margin: 22px 0;
}

.footer-cards img {
  height: 28px;
  opacity: 0.9;
}

.footer-links {
  gap: 14px 30px;
  margin: 14px 0;
  text-align: center;
}

.footer-links a {
  color: var(--teal);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
}

.footer-copy {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-icons {
  gap: 30px;
  margin-bottom: 20px;
}

.footer-icons img {
  height: 42px;
}

.footer-icons img[alt="18+"] {
  max-height: 36px;
}

.footer-license {
  max-width: 920px;
  margin: 0 auto;
  color: #b9bec5;
  font-size: 12px;
  line-height: 1.65;
  text-align: left;
}

.footer-license a {
  color: #8ddcf0;
  text-decoration: none;
}

.footer-license a:hover {
  text-decoration: underline;
}

.float-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 34px;
  color: #17120b;
  background: linear-gradient(356deg, var(--gold-1), var(--gold-2) 52%, var(--gold-3));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(236, 174, 116, 0.36);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(84px);
  transition: opacity 0.34s ease, transform 0.34s ease, box-shadow 0.18s ease;
}

.float-cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.float-cta:hover {
  box-shadow: 0 20px 54px rgba(236, 174, 116, 0.5);
  transform: translateX(-50%) translateY(-2px);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  z-index: 120;
  padding: 13px 18px;
  color: #17120b;
  background: linear-gradient(356deg, var(--gold-1), var(--gold-2) 54%, var(--gold-3));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.copy-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 980px) {
  .hero__inner,
  .package {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    align-items: end;
    padding-bottom: 52px;
  }

  .hero-panel {
    max-width: 680px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel::before {
    grid-column: 1 / -1;
  }

  .hero-metric {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-metric:last-child {
    border-right: 0;
  }

  .promo-code-card {
    grid-column: 1 / -1;
  }

  .package-copy {
    max-width: 760px;
  }
}

@media (max-width: 780px) {
  .benefits {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, var(--page-max));
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(7, 9, 13, 0.42), rgba(7, 9, 13, 0.96) 72%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.22));
  }

  .hero-bg,
  .main-bg::before {
    background-position: 66% center;
  }

  .hero__inner {
    padding: 48px 14px 46px;
    min-height: calc(100svh - 67px);
    gap: 26px;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 72px);
  }

  .promo-code-button {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-panel::before {
    grid-column: auto;
  }

  .promo-code-card {
    grid-column: auto;
  }

  .hero-metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-metric:last-child {
    border-bottom: 0;
  }

  .offer-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
  }

  .offer-row strong,
  .offer-code-button,
  .offer-row small {
    text-align: left;
  }

  .offer-code-button {
    justify-self: start;
  }

  .final-cta {
    width: min(100% - 28px, var(--page-max));
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-providers {
    grid-template-columns: repeat(3, minmax(104px, 1fr));
  }
}

@media (max-width: 560px) {
  .header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 92px;
  }

  .actions a:first-child {
    display: none;
  }

  .btn {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 12px;
  }

  .hero-cta,
  .package-cta,
  .final-cta .btn {
    min-height: 72px;
    padding-block: 20px;
    font-size: 16px;
  }

  .hero__inner {
    min-height: calc(100svh - 61px);
    padding-top: 38px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-cta,
  .hero-link,
  .package-cta,
  .final-cta .btn {
    width: 100%;
  }

  .hero-link {
    display: inline-flex;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 0;
  }

  .section-head {
    text-align: left;
  }

  .section-head p:not(.section-kicker),
  .package-copy p,
  .final-cta p {
    font-size: 16px;
    line-height: 1.58;
  }

  .benefit {
    padding: 20px;
  }

  .package {
    gap: 24px;
  }

  .float-cta {
    display: inline-flex;
    width: calc(100% - 28px);
    max-width: 380px;
    min-height: 64px;
    padding-block: 20px;
    font-size: 16px;
    bottom: 14px;
  }

  .copy-toast {
    bottom: 76px;
  }

  .footer {
    padding: 34px 14px 88px;
  }

  .footer-providers {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 18px 12px;
  }

  .footer-providers a {
    width: 100%;
    height: 58px;
  }

  .footer-icons {
    gap: 18px;
  }

  .footer-icons img {
    height: 32px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }

  .promo-code-button {
    font-size: 34px;
  }

  .section-head h2,
  .package-copy h2,
  .final-cta h2 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-anim,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
