/* ═══════════════════════════════════════════════════════════
   EuroJackpot Nederland — assets/styles.css
   Colors: #FED90F (CTA/accent), #012B54 (header/dark),
           #FFFFFF (page bg), #9CAEC3 (muted text), #222222 (body text)
   ═══════════════════════════════════════════════════════════ */

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

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #FFFFFF;
  color: #222222;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px; /* catfish space */
}

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

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

/* ─── CSS VARIABLES ─── */
:root {
  --gold:       #FED90F;
  --gold-dark:  #e8c400;
  --gold-glow:  rgba(254,217,15,0.35);
  --navy:       #012B54;
  --navy-light: #013a6e;
  --navy-deep:  #001a35;
  --white:      #FFFFFF;
  --text:       #222222;
  --muted:      #9CAEC3;
  --light-bg:   #f5f7fa;
  --border:     #e2e8f0;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(1,43,84,0.10);
  --shadow-md:  0 6px 24px rgba(1,43,84,0.15);
  --shadow-lg:  0 16px 48px rgba(1,43,84,0.22);
  --shadow-btn: 0 4px 18px rgba(254,217,15,0.45);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --container:  1200px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--navy);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

p {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Georgia', serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  text-align: center;
  overflow-wrap: anywhere;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #ffec60 50%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 2px solid var(--gold-dark);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(254,217,15,0.65), inset 0 1px 0 rgba(255,255,255,0.4);
  background: linear-gradient(135deg, #ffec60 0%, var(--gold) 50%, var(--gold-dark) 100%);
}
.btn--primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 3px 12px rgba(254,217,15,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 2.5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(254,217,15,0.2);
}
.btn--ghost:hover {
  background: rgba(254,217,15,0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(254,217,15,0.35);
}
.btn--ghost:active { transform: translateY(0); }

.btn--ghost.on-light {
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(1,43,84,0.15);
}
.btn--ghost.on-light:hover {
  background: rgba(1,43,84,0.07);
  box-shadow: 0 6px 22px rgba(1,43,84,0.2);
}

.btn--xl {
  font-size: 1.15rem;
  padding: 16px 36px;
  min-height: 56px;
}
.btn--lg {
  font-size: 1.05rem;
  padding: 14px 30px;
  min-height: 50px;
}
.btn--sm {
  font-size: 0.875rem;
  padding: 9px 20px;
  min-height: 38px;
}
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  width: auto;
  max-width: 160px;
  max-height: 48px;
  height: auto;
  object-fit: contain;
  display: block;
}
.logo-img--footer {
  max-width: 140px;
  max-height: 44px;
}

.header__nav { display: flex; align-items: center; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav__link {
  color: rgba(255,255,255,0.88);
  font-family: 'Georgia', serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--gold); background: rgba(254,217,15,0.1); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger:hover { border-color: var(--gold); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero { background: var(--navy-deep); position: relative; }

.hero__img-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  max-height: 480px;
  line-height: 0;
}
.hero__banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.hero__img-wrap:hover .hero__banner { transform: scale(1.02); }

.hero__content {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #023e7d 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(254,217,15,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,217,15,0.15);
  border: 1.5px solid rgba(254,217,15,0.5);
  color: var(--gold);
  font-family: 'Georgia', serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
}

.hero__jackpot {
  font-family: 'Georgia', serif;
  font-size: clamp(1.8rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}
.hero__amount {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  background: linear-gradient(135deg, #FED90F, #ffec60, #FED90F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 24px rgba(254,217,15,0.5));
  line-height: 1.05;
  margin-top: 8px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS BASE
   ═══════════════════════════════════════════════════════════ */
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }
.section--dark {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
}

.section__title {
  text-align: center;
  margin-bottom: 16px;
}
.section__title--left { text-align: left; }
.section__title--light { color: #fff !important; }

.section__sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section__sub--light { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   ADVANTAGES
   ═══════════════════════════════════════════════════════════ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.adv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(254,217,15,0.5);
}

.adv-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}
.adv-card__title {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.adv-card__text { color: #555; font-size: 0.93rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   PROMO
   ═══════════════════════════════════════════════════════════ */
.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.promo__badge {
  display: inline-block;
  background: rgba(254,217,15,0.18);
  border: 1.5px solid rgba(254,217,15,0.5);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.promo__title {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.promo__title span {
  background: linear-gradient(135deg, var(--gold), #ffec60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 1.2em;
}

.promo__desc { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 24px; line-height: 1.7; }

.promo__list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.promo__list li { color: rgba(255,255,255,0.85); font-size: 0.97rem; display: flex; align-items: center; gap: 10px; }

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

/* ═══════════════════════════════════════════════════════════
   MEDIA CARDS (images)
   ═══════════════════════════════════════════════════════════ */
.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(254,217,15,0.3);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  width: 100%;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.media-card__img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  background: #f0f4f8;
}

.media-card--wide .media-card__img { max-height: 280px; }

.media-link { display: block; }

/* ═══════════════════════════════════════════════════════════
   HOW TO START
   ═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 17%;
  right: 17%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
  border-radius: 2px;
  z-index: 0;
  opacity: 0.25;
}

.step-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-card__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffec60);
  color: var(--navy-deep);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(254,217,15,0.4);
  font-family: 'Georgia', serif;
}
.step-card__title { color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.step-card__text { color: #555; font-size: 0.92rem; line-height: 1.65; }
.howto__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   REVIEW
   ═══════════════════════════════════════════════════════════ */
.review__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.review__main h3 {
  color: var(--navy);
  margin: 32px 0 12px;
  font-size: 1.3rem;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(1,43,84,0.12);
}
.review__main p { color: #444; line-height: 1.75; margin-bottom: 16px; font-size: 0.97rem; }

/* Facts Table */
.facts-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.facts-table th, .facts-table td {
  padding: 9px 12px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.facts-table th {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  width: 45%;
}
.facts-table td { color: var(--navy); font-weight: 600; }
.facts-table tr { border-bottom: 1px solid var(--border); }
.facts-table tr:last-child { border-bottom: none; }

/* Sidebar */
.review__sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget__title {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.jackpot-display {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 16px;
}
.jackpot-display__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.jackpot-display__amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Georgia', serif;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   PAYMENTS
   ═══════════════════════════════════════════════════════════ */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.payment-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.payment-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.payment-card__title { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.payment-card__text { color: #666; font-size: 0.87rem; line-height: 1.6; }
.payments__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   SUPPORT
   ═══════════════════════════════════════════════════════════ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.support-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254,217,15,0.5);
  background: rgba(255,255,255,0.11);
}
.support-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.support-card__title { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.support-card__text { color: rgba(255,255,255,0.7); font-size: 0.87rem; line-height: 1.6; margin-bottom: 18px; }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(1,43,84,0.3); }

.faq-item__q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 56px 20px 24px;
  text-align: left;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq-item__q:hover { background: var(--light-bg); }
.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--navy);
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}
.faq-item__q[aria-expanded="true"] { background: var(--light-bg); }
.faq-item__q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--gold-dark);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1);
}
.faq-item__a.is-open { max-height: 600px; }
.faq-item__a p {
  padding: 0 24px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  margin: 0;
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.section--cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #023e7d 100%);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(254,217,15,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.final-cta__badge {
  display: inline-block;
  background: rgba(254,217,15,0.15);
  border: 1.5px solid rgba(254,217,15,0.4);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.final-cta__title {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.final-cta__title span {
  background: linear-gradient(135deg, var(--gold), #ffec60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 1.15em;
}

.final-cta__sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.65; }
.final-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}

.footer__brand .footer__tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {}
.footer__legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ═══════════════════════════════════════════════════════════
   CATFISH
   ═══════════════════════════════════════════════════════════ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.catfish.is-hidden { transform: translateY(110%); }

.catfish__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: calc(100% - 0px);
}

.catfish__text {
  color: #fff;
  font-size: clamp(0.78rem, 2.5vw, 0.95rem);
  font-weight: 600;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catfish__text strong { color: var(--gold); }

.catfish__btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 20px;
  min-height: 42px;
  font-size: 0.88rem;
}

.catfish__close {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition);
}
.catfish__close:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   EXIT POPUP
   ═══════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(1,27,52,0.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }

.popup {
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 52px);
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(254,217,15,0.2);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.popup-overlay.is-open .popup { transform: scale(1); }

.popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  color: #777;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background var(--transition);
}
.popup__close:hover { color: var(--navy); background: var(--border); }

.popup__badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.popup__title {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.popup__bonus {
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 12px;
  background: var(--light-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px;
}
.popup__bonus span {
  display: block;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), #ffec60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

.popup__sub { color: var(--muted); font-size: 0.93rem; margin-bottom: 28px; }
.popup__btn { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet – 1024px and below */
@media (max-width: 1024px) {
  .review__grid { grid-template-columns: 1fr; }
  .review__sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-widget { flex: 1 1 260px; min-width: 0; }
  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile – 768px and below */
@media (max-width: 768px) {
  body { padding-bottom: 90px; }

  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 2px solid var(--gold);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1), padding 0.36s;
    z-index: 850;
  }
  .header__nav.is-open { max-height: 400px; padding: 16px 0; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
  }
  .nav__list li { width: 100%; }
  .nav__link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav__list .btn {
    width: 100%;
    margin-top: 8px;
    border-radius: 50px;
  }

  .burger { display: flex; }

  .hero__banner { max-height: 220px; object-position: center center; }
  .hero__content { padding: 36px 0 40px; }
  .hero__cta-group { gap: 12px; }
  .hero__cta-group .btn { width: 100%; max-width: 340px; }

  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }
  .support-grid { grid-template-columns: 1fr; gap: 16px; }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }

  .review__sidebar { flex-direction: column; }

  .final-cta__btns .btn { width: 100%; max-width: 340px; }

  .section__sub { margin-bottom: 32px; }

  .catfish__text { font-size: 0.78rem; }
  .catfish__btn { padding: 9px 14px; font-size: 0.8rem; }
}

/* Small mobile – 480px and below */
@media (max-width: 480px) {
  .hero__banner { max-height: 180px; }
  .hero__amount { font-size: clamp(2.8rem, 15vw, 5rem); }
  .payments-grid { grid-template-columns: 1fr; }
  .catfish__inner { gap: 8px; }
  .catfish__text { font-size: 0.73rem; }
  .review__sidebar { display: flex; flex-direction: column; }
}

/* Very small – 320px */
@media (max-width: 360px) {
  .btn--xl { font-size: 1rem; padding: 14px 20px; }
  .nav__link { font-size: 0.95rem; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: var(--shadow-btn); }
  50% { box-shadow: 0 8px 36px rgba(254,217,15,0.7); }
}

.hero__cta-group .btn--primary { animation: pulse-gold 2.4s ease-in-out infinite; }
.hero__cta-group .btn--primary:hover { animation: none; }

.adv-card, .step-card, .payment-card, .support-card {
  animation: fadeInUp 0.6s ease both;
}