/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --purple-deep: #1A0A3E;
  --purple-mid: #3B1A8E;
  --purple-light: #6D3FD4;
  --bg-void: #0D0620;
  --bg-deep: #150B32;
  --bg-surface: #1E1148;
  --orange: #FF6B1A;
  --orange-light: #FF8A4C;
  --orange-dark: #E05A10;
  --white: #FFFFFF;
  --gray-light: #f4f4f4;
  --gray-muted: #B0A8C8;
  --gray-dim: #6E6490;
  --glass-border: rgba(255, 255, 255, 0.07);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Space Grotesk', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-orange: 0 0 40px rgba(255, 107, 26, 0.2);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(13, 6, 32, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255, 107, 26, 0.06);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 26, 0.06);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
  min-height: 82vh;
  background: linear-gradient(165deg, #1E0E4A 0%, #2A1260 30%, #3B1A8E 55%, #1A0A3E 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 800px;
  height: 800px;
  background: conic-gradient(
    from 200deg at 50% 50%,
    rgba(59, 26, 142, 0) 0deg,
    rgba(109, 63, 212, 0.3) 55deg,
    rgba(59, 26, 142, 0) 110deg,
    rgba(255, 107, 26, 0.12) 190deg,
    rgba(59, 26, 142, 0) 260deg,
    rgba(109, 63, 212, 0.15) 330deg,
    rgba(59, 26, 142, 0) 360deg
  );
  border-radius: 50%;
  animation: heroGlow 14s ease-in-out infinite;
  filter: blur(80px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 107, 26, 0.07) 0%, transparent 70%);
  animation: heroGlow 18s ease-in-out infinite reverse;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
  50% { transform: scale(1.15) rotate(10deg); opacity: 1; }
}

/* Wave decorations */
.wave {
  position: absolute;
  border-radius: 42%;
  border: 1px solid rgba(109, 63, 212, 0.1);
  opacity: 0.3;
  animation: waveFloat 24s ease-in-out infinite;
}

.wave-1 {
  top: 10%;
  right: 15%;
  width: 220px;
  height: 170px;
  border-color: rgba(109, 63, 212, 0.14);
  transform: rotate(-8deg);
}

.wave-2 {
  top: 55%;
  right: 5%;
  width: 150px;
  height: 120px;
  border-color: rgba(255, 107, 26, 0.07);
  animation-delay: -7s;
  transform: rotate(12deg);
}

.wave-3 {
  bottom: 15%;
  left: 3%;
  width: 110px;
  height: 90px;
  border-color: rgba(109, 63, 212, 0.1);
  animation-delay: -13s;
  transform: rotate(-20deg);
}

.aurora {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.aurora-1 {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.12), transparent 70%);
  animation: auroraPulse 5s ease-in-out infinite;
}

.aurora-2 {
  bottom: 25%;
  right: 20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(109, 63, 212, 0.15), transparent 70%);
  animation: auroraPulse 7s ease-in-out infinite 2s;
}

@keyframes waveFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0) scale(1); }
  25% { transform: rotate(-5deg) translateY(-18px) scale(1.03); }
  50% { transform: rotate(-10deg) translateY(8px) scale(0.97); }
  75% { transform: rotate(-6deg) translateY(-10px) scale(1.01); }
}

@keyframes auroraPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 63, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 63, 212, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.95rem;
  color: var(--gray-muted);
  margin-bottom: 20px;
  padding: 8px 22px;
  border-left: 3px solid var(--orange);
  line-height: 1.5;
  font-weight: 400;
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, #FFFFFF 10%, #FF8A4C 50%, #FF6B1A 80%, #FFFFFF 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: amountShimmer 5s ease-in-out infinite;
  margin: 8px 0;
  letter-spacing: -0.03em;
}

@keyframes amountShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   OFFER DETAILS
   ============================================ */
.offer-details {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
}

.offer-details-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 14px;
  border: 1px solid rgba(109, 63, 212, 0.12);
  background: rgba(109, 63, 212, 0.04);
}

.offer-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  white-space: nowrap;
  padding-top: 2px;
  line-height: 1.4;
  flex-shrink: 0;
}

.offer-disclaimer {
  font-size: 0.82rem;
  color: var(--gray-muted);
  line-height: 1.65;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 24px;
}

/* ============================================
   TRUST FEATURES
   ============================================ */
.trust-features {
  padding: 48px 0 56px;
  background: var(--bg-void);
}

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

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  border-radius: 18px;
  border: 1px solid rgba(109, 63, 212, 0.12);
  background: linear-gradient(160deg, rgba(59, 26, 142, 0.1) 0%, rgba(13, 6, 32, 0.6) 100%);
  text-align: center;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

.trust-card:hover {
  border-color: rgba(255, 107, 26, 0.2);
  transform: translateY(-4px);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.12), rgba(109, 63, 212, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.trust-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-muted);
  line-height: 1.5;
}

/* ============================================
   TERMS SECTION
   ============================================ */
.terms-section {
  padding: 0 0 56px;
  background: var(--bg-void);
}

.terms-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.terms-toggle:hover {
  border-color: rgba(255, 107, 26, 0.2);
  background: rgba(109, 63, 212, 0.05);
}

.terms-toggle.active .terms-arrow {
  transform: rotate(180deg);
}

.terms-arrow {
  transition: transform 0.3s ease;
}

.terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.terms-content.open {
  max-height: 1200px;
}

.terms-inner {
  padding: 32px 28px;
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(109, 63, 212, 0.1);
  background: linear-gradient(160deg, rgba(59, 26, 142, 0.06), rgba(13, 6, 32, 0.4));
}

.terms-inner p {
  color: var(--gray-muted);
  font-size: 0.84rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.terms-inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 16px;
}

.terms-inner ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-inner li {
  color: var(--gray-muted);
  font-size: 0.82rem;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.terms-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}

.terms-inner a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, var(--bg-void) 0%, rgba(13, 6, 32, 0.8) 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 63, 212, 0.2), transparent);
}

/* Footer navigation */
.footer-nav {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  color: var(--gray-dim);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 0.86rem;
  color: var(--gray-dim);
  transition: color var(--transition-smooth);
}

.footer-col a:hover { color: var(--orange); }

/* License section */
.footer-license {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-license-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.license-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.license-text {
  color: var(--gray-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.license-highlight {
  display: inline-block;
  margin-top: 4px;
  padding: 7px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 107, 26, 0.2);
  background: rgba(255, 107, 26, 0.05);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange-light);
  letter-spacing: 0.02em;
}

/* Responsible gaming */
.footer-responsible {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-responsible-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.responsible-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.responsible-text {
  color: var(--gray-muted);
  font-size: 0.86rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.partner-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition-smooth);
}

.partner-badge:hover { opacity: 0.8; }

.partner-badge img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copyright {
  font-size: 0.76rem;
  color: var(--gray-dim);
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.age-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

/* ============================================
   REGISTRATION MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 6, 32, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(160deg, #251558 0%, #110830 100%);
  border: 1px solid rgba(109, 63, 212, 0.15);
  border-radius: 22px;
  padding: 36px 32px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--gray-dim);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover { color: var(--white); }

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.modal-form { display: flex; flex-direction: column; gap: 14px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-muted);
}

.form-group input {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder { color: var(--gray-dim); }
.form-group input:focus { border-color: var(--orange); }

.input-password { position: relative; }

.input-password input { width: 100%; padding-right: 44px; }

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-dim);
  cursor: pointer;
  padding: 4px;
  display: flex;
  transition: color 0.2s;
}

.password-toggle:hover { color: var(--gray-muted); }

.form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--orange-dark);
  flex-shrink: 0;
  cursor: pointer;
}

.form-check label {
  font-size: 0.76rem;
  color: var(--gray-muted);
  line-height: 1.45;
  cursor: pointer;
}

.form-check a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.modal-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.modal-login {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-dim);
  margin-top: 2px;
}

.modal-login a { color: var(--orange); font-weight: 500; }

/* Success state */
.modal-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.modal-success-state.active { display: flex; }
.modal-form-state.hidden { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  border: 2px solid rgba(74, 222, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-success-state .modal-title { margin-bottom: 10px; }

.success-text {
  color: var(--gray-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
}

.modal-success-state .modal-submit { max-width: 160px; }

@media (max-width: 480px) {
  .modal { padding: 28px 20px; }
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page {
  padding: 140px 0 80px;
  flex: 1;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.policy-page .policy-updated {
  color: var(--gray-dim);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.policy-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--orange-light);
}

.policy-page p,
.policy-page li {
  color: var(--gray-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-page li { margin-bottom: 8px; }

.policy-page a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-page a:hover { color: var(--orange-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: clamp(1.5rem, 4vw, 2rem); }
  .hero-amount { font-size: clamp(4rem, 14vw, 6rem); }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-card { flex-direction: row; text-align: left; padding: 22px 24px; }
  .trust-text br { display: none; }
  .offer-details-inner { flex-direction: column; gap: 12px; }
  .offer-disclaimer { border-left: none; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 12px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .partner-badges { gap: 20px; }
  .partner-badge img { height: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 110px 0 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .footer-nav { grid-template-columns: 1fr; gap: 28px; }
  .partner-badges { gap: 16px; }
  .partner-badge img { height: 36px; }
}
