/* ============================================
   EUROJACKPOT SUOMI — assets/styles.css
   Brand colors: #FFEC00 header/btns, #FFD000 register btns, #25282B text
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #25282B;
  background: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --primary: #FFD000;
  --btn-yellow: #FFEC00;
  --text: #25282B;
  --header-bg: #FFEC00;
  --white: #ffffff;
  --dark: #1a1c1e;
  --dark-section: #23272b;
  --yellow-section: #FFEC00;
  --shadow-btn: 0 4px 18px rgba(255,208,0,0.45);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.09);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1180px;
  --header-h: 68px;
  --transition: 0.22s ease;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  min-width: 0;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--btn-yellow);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(255,236,0,0.5), 0 1px 3px rgba(0,0,0,0.15);
  border: 2.5px solid rgba(0,0,0,0.08);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255,236,0,0.65), 0 2px 6px rgba(0,0,0,0.18);
  background: #fff200;
}
.btn--primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 8px rgba(255,236,0,0.4);
}

.btn--register {
  background: var(--primary);
  color: var(--text);
  box-shadow: var(--shadow-btn), 0 1px 3px rgba(0,0,0,0.18);
  border: 2.5px solid rgba(0,0,0,0.10);
  font-size: 1.05rem;
}
.btn--register:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255,208,0,0.7), 0 2px 6px rgba(0,0,0,0.2);
  background: #ffda10;
}
.btn--register:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 10px rgba(255,208,0,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.75);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}
.btn--ghost:active { transform: translateY(0); }

.btn--xl {
  min-height: 54px;
  padding: 15px 36px;
  font-size: 1.1rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--header-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  width: 100%;
}

.header__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0;
}
.header__nav::-webkit-scrollbar { display: none; }

.header__nav-link {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  min-width: 0;
}
.header__nav-link:hover { background: rgba(0,0,0,0.08); }
.header__nav-link--cta {
  background: var(--primary);
  color: var(--text);
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 10px rgba(255,208,0,0.4);
}
.header__nav-link--cta:hover {
  background: #ffda10;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,208,0,0.55);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--header-bg);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 8px 20px 16px;
  gap: 4px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__link {
  padding: 12px 16px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav__link:hover { background: rgba(0,0,0,0.07); }
.mobile-nav__link--cta {
  background: var(--primary);
  text-align: center;
  border: 2px solid rgba(0,0,0,0.1);
  margin-top: 6px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 500px;
}

.hero__media {
  width: 100%;
  overflow: hidden;
}
.hero__media a { display: block; width: 100%; }
.hero__img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,12,0.82) 0%,
    rgba(10,10,12,0.65) 50%,
    rgba(10,10,12,0.25) 100%
  );
  display: flex;
  align-items: center;
}

.hero__container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero__badge {
  display: inline-block;
  background: var(--btn-yellow);
  color: var(--text);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero__title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero__bonus {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--btn-yellow);
  line-height: 1;
  margin-bottom: 32px;
  text-shadow: 0 3px 20px rgba(255,236,0,0.5);
  letter-spacing: 0.01em;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding: 72px 0;
}
.section--light { background: #fff; }
.section--yellow { background: var(--yellow-section); }
.section--dark { background: var(--dark-section); color: var(--white); }
.section--cta-final { background: var(--dark); }

.section__header {
  text-align: center;
  margin-bottom: 52px;
}
.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  color: inherit;
  margin-bottom: 10px;
}
.section--light .section__title { color: var(--text); }
.section--yellow .section__title { color: var(--text); }
.section--dark .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto;
}
.section--yellow .section__subtitle { color: var(--text); }

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.benefit-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.benefit-card__title {
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}
.benefit-card__text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}

/* ============================================
   PROMO SECTION
   ============================================ */
.promo__layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: 48px;
  align-items: center;
}
.promo__badge {
  display: inline-block;
  background: rgba(0,0,0,0.15);
  color: var(--text);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.promo__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.promo__amount {
  color: var(--dark);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
}
.promo__text {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}
.promo__list {
  margin-bottom: 28px;
}
.promo__list li {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.promo__list li:last-child { border-bottom: none; }
.promo__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.promo__media { min-width: 0; }

/* ── MEDIA CARD ── */
.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 3px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #f5f5f5;
  transition: transform var(--transition), box-shadow var(--transition);
}
.media-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 40px rgba(0,0,0,0.24);
}
.media-card__img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
}
.media-card--review .media-card__img { max-height: 320px; }

/* ============================================
   STEPS / HOW TO START
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  counter-reset: steps;
}

.step-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  min-width: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(255,208,0,0.4);
  border: 3px solid rgba(0,0,0,0.06);
}
.step-card__title {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}
.step-card__text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 22px;
}
.step-card__btn { width: 100%; }

/* ============================================
   REVIEW SECTION
   ============================================ */
.review__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.review__main { min-width: 0; }
.review__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.review__subtitle {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--btn-yellow);
  margin: 28px 0 10px;
}
.review__text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 12px;
}
.review__media {
  margin-bottom: 28px;
}
.review__cta-box {
  margin-top: 36px;
  background: rgba(255,236,0,0.12);
  border: 2px solid var(--btn-yellow);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.review__cta-text {
  font-weight: 800;
  color: var(--btn-yellow);
  margin-bottom: 18px;
  font-size: 1rem;
}

/* SIDEBAR */
.review__sidebar { min-width: 0; }
.sidebar-box {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 20px;
}
.sidebar-box__title {
  font-weight: 900;
  font-size: 1rem;
  color: var(--btn-yellow);
  margin-bottom: 16px;
}
.sidebar-fact-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-fact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-fact-list li:last-child { border-bottom: none; }
.fact-label { color: rgba(255,255,255,0.65); }
.fact-value { font-weight: 800; color: var(--white); }

.sidebar-box--cta {
  background: var(--primary);
  border-color: rgba(0,0,0,0.08);
  text-align: center;
}
.sidebar-box__bonus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.sidebar-box__sub {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 18px;
  opacity: 0.75;
}
.sidebar-box--cta .btn--register { width: 100%; }

/* ============================================
   PAYMENTS
   ============================================ */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.payment-card {
  background: #fafafa;
  border: 1.5px solid #ebebeb;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}
.payment-card__icon { font-size: 2rem; margin-bottom: 12px; }
.payment-card__title { font-weight: 900; font-size: 0.97rem; margin-bottom: 8px; color: var(--text); }
.payment-card__text { font-size: 0.88rem; color: #555; line-height: 1.55; }
.payments__cta { text-align: center; }

/* ============================================
   SUPPORT
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.support-card {
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}
.support-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.support-card__title { font-weight: 900; font-size: 0.98rem; margin-bottom: 8px; color: var(--text); }
.support-card__text { font-size: 0.88rem; color: var(--text); line-height: 1.55; opacity: 0.8; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
  min-width: 0;
}
.faq-item__question:hover { background: #fafafa; }
.faq-item__question[aria-expanded="true"] { background: #fffbe6; }
.faq-item__arrow {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}
.faq-item__question[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); }
.faq-item__answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
}
.faq-item__answer.is-open { display: block; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
  padding: 20px 0;
}
.final-cta__badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.final-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.final-cta__bonus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--btn-yellow);
  margin-bottom: 18px;
  text-shadow: 0 3px 20px rgba(255,236,0,0.4);
  letter-spacing: 0.02em;
}
.final-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 22px;
}
.final-cta__disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #111315;
  color: rgba(255,255,255,0.75);
}
.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__tagline { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 320px; }
.footer__links-title { font-weight: 900; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer__link:hover { color: var(--btn-yellow); }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__copy { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer__disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.55; max-width: 680px; }

/* ============================================
   CATFISH
   ============================================ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--dark);
  border-top: 3px solid var(--primary);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.catfish__inner {
  max-width: calc(100% - 0px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.catfish__text {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}
.catfish__btn {
  flex-shrink: 0;
  min-height: 38px;
  padding: 8px 20px;
  font-size: 0.87rem;
}
.catfish__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}
.catfish__close:hover { color: var(--white); }
.catfish.is-hidden { display: none; }

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay.is-visible { display: flex; }
.exit-popup {
  background: var(--dark-section);
  border: 2px solid var(--primary);
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.exit-popup__close:hover { color: var(--white); }
.exit-popup__badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.exit-popup__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.exit-popup__bonus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--btn-yellow);
  margin-bottom: 14px;
  line-height: 1.2;
}
.exit-popup__bonus strong {
  font-size: 2.4rem;
  display: block;
}
.exit-popup__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}
.exit-popup .btn--primary { width: 100%; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__badge,
.hero__title,
.hero__bonus,
.hero__btns {
  animation: fadeInUp 0.7s ease both;
}
.hero__badge { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.2s; }
.hero__bonus { animation-delay: 0.35s; }
.hero__btns { animation-delay: 0.5s; }

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo__layout { grid-template-columns: 1fr; gap: 32px; }
  .promo__media { max-width: 500px; margin: 0 auto; }
  .review__layout { grid-template-columns: 1fr; }
  .review__sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .burger { display: flex; }
  .header__nav { display: none; }

  .section { padding: 52px 0; }

  /* Hero */
  .hero { min-height: 420px; }
  .hero__img { max-height: 400px; object-position: center top; }
  .hero__overlay {
    background: linear-gradient(to top, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.6) 60%, rgba(10,10,12,0.2) 100%);
    align-items: flex-end;
  }
  .hero__container { padding: 40px 20px 48px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Promo */
  .promo__layout { gap: 24px; }
  .promo__btns .btn { width: 100%; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-card__btn { width: 100%; }

  /* Review sidebar back to stacked */
  .review__sidebar { grid-template-columns: 1fr; }

  /* Payments */
  .payments-grid { grid-template-columns: 1fr; gap: 14px; }
  .payments__cta .btn { width: 100%; }

  /* Support */
  .support-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Final CTA */
  .final-cta__btns { flex-direction: column; align-items: stretch; }
  .final-cta__btns .btn { width: 100%; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }

  /* Catfish */
  .catfish__text { font-size: 0.82rem; }
  .catfish__btn { font-size: 0.8rem; padding: 8px 14px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__img { max-height: 280px; }
  .btn--xl { min-height: 50px; padding: 13px 22px; font-size: 1rem; }

  .exit-popup { padding: 30px 22px; }
  .exit-popup__bonus strong { font-size: 2rem; }
  .exit-popup__title { font-size: 1.8rem; }

  table { table-layout: fixed; width: 100%; }
  td, th { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
}

/* ============================================
   RESPONSIVE — VERY SMALL (≤360px)
   ============================================ */
@media (max-width: 360px) {
  .hero__title { font-size: 3rem; }
  .hero__bonus { font-size: 2.2rem; }
  .catfish__inner { gap: 8px; }
  .catfish__text { font-size: 0.75rem; }
}

/* ── SCROLLBAR COSMETICS ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }