html, body { overflow-x: hidden; max-width: 100vw; }

.bonus-hero {
  position: relative;
  padding: var(--space-5) var(--space-3);
  margin-bottom: var(--space-5);
  border-radius: var(--radius-3);
  background: linear-gradient(135deg, #1a0033 0%, #4a0e7a 50%, #ff006e 100%);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.bonus-hero::before {
  content: '';
  position: absolute;
  top: 5%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,215,0,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bonus-hero-content {
  position: relative;
  z-index: 2;
}
.bonus-hero h1 {
  margin: 0 0 var(--space-2) 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.bonus-hero p {
  max-width: 640px;
  margin: 0 0 var(--space-3) 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-2);
  margin: var(--space-3) 0;
}
.hero-stat {
  padding: var(--space-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-2);
  backdrop-filter: blur(10px);
}
.hero-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffd700;
  line-height: 1;
}
.hero-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-cta {
  display: inline-block;
  padding: 16px 38px;
  margin-top: var(--space-2);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a0033;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,215,0,0.55);
}
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: var(--space-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd700;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 999px;
}
.scarcity-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff006e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.section-block {
  margin: var(--space-5) 0;
}
.section-block h2 {
  position: relative;
  margin: 0 0 var(--space-3) 0;
  padding-left: 18px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.section-block h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 5px;
  background: linear-gradient(180deg, #ff006e, #ffd700);
  border-radius: 4px;
}
.section-block h3 {
  margin: var(--space-3) 0 var(--space-2) 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.section-block p { line-height: 1.7; }

.welcome-card {
  position: relative;
  padding: var(--space-4);
  background: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
  border-radius: var(--radius-3);
  box-shadow: var(--shadow-1);
  border-left: 6px solid #ff006e;
}
.welcome-card-headline {
  margin: 0 0 var(--space-2) 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1a0033;
}
.welcome-card-headline strong { color: #ff006e; }
.welcome-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2);
  margin: var(--space-3) 0;
  padding: 0;
  list-style: none;
}
.welcome-features li {
  padding: var(--space-2);
  background: #fff;
  border-radius: var(--radius-2);
  box-shadow: 0 4px 14px rgba(74,14,122,0.08);
  border-top: 3px solid #ffd700;
  color: #1a0033;
}
.welcome-features li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  color: #4a0e7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.welcome-note {
  padding: var(--space-2);
  margin-top: var(--space-2);
  background: rgba(255,0,110,0.08);
  border-radius: var(--radius-2);
  font-size: 0.95rem;
  color: #1a0033;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.promo-card {
  position: relative;
  padding: var(--space-3);
  background: #ffffff;
  border-radius: var(--radius-3);
  box-shadow: 0 8px 24px rgba(26,0,51,0.08);
  border: 1px solid rgba(74,14,122,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,0,110,0.18);
}
.promo-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(255,215,0,0.25), transparent 70%);
  pointer-events: none;
}
.promo-tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: var(--space-2);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, #ff006e, #4a0e7a);
  border-radius: 999px;
}
.promo-card h3 {
  margin: 0 0 var(--space-2) 0;
  font-size: 1.2rem;
  color: #1a0033;
}
.promo-card p { margin: 0; line-height: 1.6; color: #333; }
.promo-card strong { color: #ff006e; }

.vip-block {
  padding: var(--space-4);
  background: linear-gradient(135deg, #1a0033 0%, #4a0e7a 100%);
  border-radius: var(--radius-3);
  color: #fff;
  box-shadow: var(--shadow-2);
}
.vip-block h2 { color: #fff; }
.vip-block h2::before { background: linear-gradient(180deg, #ffd700, #ffa500); }
.vip-block p { color: rgba(255,255,255,0.9); }

.table-responsive {
  overflow-x: auto;
  margin: var(--space-3) 0;
  border-radius: var(--radius-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.feature-table th,
.feature-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,215,0,0.15);
}
.feature-table th {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd700;
  background: rgba(0,0,0,0.3);
}
.feature-table td { color: rgba(255,255,255,0.95); }
.feature-table tr:last-child td { border-bottom: none; }
.feature-table tr:hover td { background: rgba(255,215,0,0.06); }

.steps-timeline {
  position: relative;
  padding: 0;
  margin: var(--space-3) 0;
  list-style: none;
  counter-reset: step;
}
.steps-timeline li {
  position: relative;
  padding: var(--space-2) var(--space-2) var(--space-2) 72px;
  margin-bottom: var(--space-2);
  background: #fff;
  border-radius: var(--radius-2);
  box-shadow: 0 4px 16px rgba(26,0,51,0.08);
  counter-increment: step;
  line-height: 1.6;
  color: #1a0033;
  transition: transform 0.25s ease;
}
.steps-timeline li:hover { transform: translateX(6px); }
.steps-timeline li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #ff006e, #4a0e7a);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(255,0,110,0.4);
}
.steps-timeline a { color: #ff006e; font-weight: 700; }

.terms-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-2);
  padding: 0;
  margin: var(--space-3) 0;
  list-style: none;
}
.terms-list li {
  position: relative;
  padding: var(--space-2) var(--space-2) var(--space-2) 48px;
  background: #fff;
  border-radius: var(--radius-2);
  border-left: 4px solid #ffd700;
  box-shadow: 0 4px 14px rgba(26,0,51,0.06);
  line-height: 1.5;
  color: #333;
}
.terms-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff006e, #4a0e7a);
  border-radius: 50%;
  font-size: 0.85rem;
}
.terms-list li strong { color: #ff006e; }

.faq-block details {
  margin-bottom: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: #fff;
  border-radius: var(--radius-2);
  box-shadow: 0 4px 16px rgba(26,0,51,0.06);
  border-left: 4px solid #4a0e7a;
  transition: box-shadow 0.25s ease;
}
.faq-block details[open] {
  border-left-color: #ff006e;
  box-shadow: 0 10px 28px rgba(255,0,110,0.12);
}
.faq-block summary {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a0033;
  cursor: pointer;
  list-style: none;
  padding: 6px 0;
  position: relative;
  padding-right: 32px;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  background: #4a0e7a;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-block details[open] summary::after {
  content: '−';
  background: #ff006e;
  transform: translateY(-50%) rotate(180deg);
}
.faq-block details p {
  margin: var(--space-2) 0 0 0;
  line-height: 1.7;
  color: #333;
}

.final-cta {
  margin: var(--space-5) 0 var(--space-3) 0;
  padding: var(--space-4);
  text-align: center;
  background: linear-gradient(135deg, #ff006e 0%, #4a0e7a 50%, #1a0033 100%);
  border-radius: var(--radius-3);
  box-shadow: var(--shadow-2);
}
.final-cta h3 {
  margin: 0 0 var(--space-2) 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
}
.final-cta p {
  margin: 0 0 var(--space-3) 0;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .bonus-hero { padding: var(--space-3) var(--space-2); }
  .bonus-hero::before { width: 160px; height: 160px; }
  .welcome-card { padding: var(--space-3); }
  .feature-table th, .feature-table td { padding: 12px 14px; font-size: 0.9rem; }
}