*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #07101f; --bg2: #0d1a2e; --bg3: #122140;
  --gold: #f5c842; --gold2: #e8b820;
  --white: #ffffff; --muted: rgba(255,255,255,0.55); --border: rgba(255,255,255,0.08);
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.6; min-height: 100vh; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; background: rgba(7,16,31,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.logo { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 22px; letter-spacing: 2px; cursor: pointer; }
.logo span { color: var(--gold); }
.nav-cta { background: var(--gold); color: #07101f; border: none; padding: 9px 20px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold2); }

.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
.hero-car { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 900px; opacity: 0.18; pointer-events: none; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,200,66,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245,200,66,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero::after { content: ''; position: absolute; top: 20%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(245,200,66,0.07) 0%, transparent 70%); pointer-events: none; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,200,66,0.12); border: 1px solid rgba(245,200,66,0.3); color: var(--gold); font-size: 12px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px; position: relative; z-index: 1; animation: fadeUp 0.6s ease both; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
h1 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(72px, 14vw, 140px); line-height: 0.95; letter-spacing: 4px; position: relative; z-index: 1; animation: fadeUp 0.6s 0.1s ease both; }
h1 .highlight { color: var(--gold); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); font-family: 'Barlow', sans-serif; font-weight: 300; color: var(--muted); max-width: 560px; margin: 24px auto 40px; position: relative; z-index: 1; animation: fadeUp 0.6s 0.2s ease both; }
.hero-cta-btn { position: relative; z-index: 1; background: var(--gold); color: #07101f; border: none; padding: 16px 44px; border-radius: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; cursor: pointer; transition: background 0.2s, transform 0.15s; animation: fadeUp 0.6s 0.3s ease both; }
.hero-cta-btn:hover { background: var(--gold2); transform: translateY(-2px); }
.hero-cta-btn:active { transform: scale(0.97); }

.stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 56px; position: relative; z-index: 1; animation: fadeUp 0.6s 0.4s ease both; }
.stat { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 36px; letter-spacing: 2px; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 2px; }

.divider { border: none; border-top: 1px solid var(--border); margin: 0 32px; }

.features { padding: 80px 24px; max-width: 900px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.features h2 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(48px, 6vw, 72px); line-height: 1; letter-spacing: 3px; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feature-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: rgba(245,200,66,0.2); transform: translateY(-2px); }
.feature-num { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 42px; letter-spacing: 2px; color: rgba(245,200,66,0.15); line-height: 1; margin-bottom: 12px; }
.feature-card h3 { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.bottom-cta { padding: 80px 24px; text-align: center; border-top: 1px solid var(--border); }
.bottom-cta h2 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(52px, 7vw, 88px); letter-spacing: 3px; line-height: 1; margin-bottom: 16px; }
.bottom-cta > p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }
.bottom-cta-btn { background: var(--gold); color: #07101f; border: none; padding: 16px 44px; border-radius: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.bottom-cta-btn:hover { background: var(--gold2); transform: translateY(-2px); }

footer { padding: 24px 32px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 12px; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--bg2); border: 1px solid rgba(245,200,66,0.22); border-radius: 16px; padding: 36px 32px 28px; width: 100%; max-width: 440px; position: relative; animation: modalIn 0.3s ease; max-height: calc(100vh - 48px); overflow-y: auto; }
@keyframes modalIn { from{opacity:0;transform:translateY(24px) scale(0.97)} to{opacity:1;transform:none} }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--muted); font-size: 24px; cursor: pointer; line-height: 1; padding: 4px 8px; transition: color 0.2s; }
.modal-close:hover { color: var(--white); }

/* Checkboxes */
.modal-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.modal-check-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.modal-check-row input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }
.modal-checkmark {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 4px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.modal-check-row input:checked + .modal-checkmark {
  background: var(--gold); border-color: var(--gold);
}
.modal-check-row input:checked + .modal-checkmark::after {
  content: '';
  display: block; width: 5px; height: 9px;
  border: 2px solid #07101f; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.modal-check-row:hover .modal-checkmark { border-color: rgba(245,200,66,0.4); }
.modal-check-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.modal-check-text a { color: rgba(255,255,255,0.6); text-decoration: underline; cursor: pointer; }
.modal-check-text a:hover { color: var(--gold); }/* Checkboxes */
.modal-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.modal-check-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.modal-check-row input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }
.modal-checkmark {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 4px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.modal-check-row input:checked + .modal-checkmark {
  background: var(--gold); border-color: var(--gold);
}
.modal-check-row input:checked + .modal-checkmark::after {
  content: '';
  display: block; width: 5px; height: 9px;
  border: 2px solid #07101f; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.modal-check-row:hover .modal-checkmark { border-color: rgba(245,200,66,0.4); }
.modal-check-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.modal-check-text a { color: rgba(255,255,255,0.6); text-decoration: underline; cursor: pointer; }
.modal-check-text a:hover { color: var(--gold); }

/* Progress bar */
.modal-sbar { display: flex; align-items: center; margin-bottom: 1.5rem; }
.modal-sdot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.3); background: transparent; transition: all 0.2s; }
.modal-sdot.active { background: var(--gold); border-color: var(--gold); color: #07101f; }
.modal-sdot.done { background: rgba(15,110,86,0.4); border-color: #0F6E56; color: #4ecba0; }
.modal-sline { flex: 1; height: 1.5px; background: rgba(255,255,255,0.1); transition: background 0.3s; }
.modal-sline.done { background: #0F6E56; }

/* Step panels */
.modal-panel { display: none; }
.modal-panel.active { display: block; }

/* Labels & text */
.modal-slabel { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.modal-stitle { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: 2px; color: var(--white); margin: 0 0 8px; line-height: 1.1; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }

/* Input */
.modal-input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 14px 16px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; outline: none; margin-bottom: 12px; transition: border-color 0.2s; }
.modal-input:focus { border-color: rgba(245,200,66,0.5); }
.modal-input::placeholder { color: rgba(255,255,255,0.3); }
.modal-input.error { border-color: #e55; }

/* Primary button */
.modal-btn { width: 100%; background: var(--gold); color: #07101f; border: none; padding: 14px 16px; border-radius: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 2px; cursor: pointer; transition: background 0.2s, opacity 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.modal-btn:hover:not(:disabled) { background: var(--gold2); }
.modal-btn:disabled { opacity: 0.5; cursor: default; }
.modal-btn.loading { pointer-events: none; opacity: 0.8; }

/* Spinner */
.modal-spinner { width: 16px; height: 16px; border: 2px solid rgba(7,16,31,0.3); border-top-color: #07101f; border-radius: 50%; animation: modal-spin 0.7s linear infinite; display: none; flex-shrink: 0; }
.modal-btn.loading .modal-spinner { display: block; }
@keyframes modal-spin { to { transform: rotate(360deg); } }

/* Back button */
.modal-btn-back { background: none; border: none; font-size: 13px; color: var(--muted); cursor: pointer; padding: 8px 0; margin-top: 2px; display: flex; align-items: center; gap: 4px; width: 100%; font-family: 'Barlow', sans-serif; }
.modal-btn-back:hover { color: var(--white); }

/* Summary boxes */
.modal-sbox { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.modal-sbox-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-sbox-label { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; text-transform: uppercase; }
.modal-sbox-val { font-size: 14px; font-weight: 500; color: var(--white); margin-top: 1px; }

/* Divider + total */
.modal-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 14px 0; }
.modal-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.modal-total-label { font-size: 13px; color: var(--muted); }
.modal-total-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--gold); }

/* Consent */
.modal-consent { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.6; text-align: center; margin-top: 12px; }
.modal-consent a { color: rgba(255,255,255,0.5); text-decoration: underline; cursor: pointer; }
.modal-consent a:hover { color: var(--gold); }

/* Trust row */
.modal-trust { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.modal-trust-item { display: flex; align-items: center; gap: 4px; font-size: 11px; color: rgba(255,255,255,0.3); }

/* Success */
.modal-success { display: none; text-align: center; padding: 20px 0; }
.check-icon { font-size: 52px; margin-bottom: 12px; color: var(--gold); }
.modal-success h4 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; color: var(--gold); margin-bottom: 8px; }
.modal-success p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.modal-success-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── OPTION CARDS (Step 2) ── */
.modal-option-card { background: rgba(255,255,255,0.03); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px; margin-bottom: 16px; transition: all 0.2s; position: relative; }
.modal-option-card:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
.modal-option-card-vip { border-color: rgba(245,200,66,0.25); background: rgba(245,200,66,0.04); }
.modal-option-card-vip:hover { border-color: rgba(245,200,66,0.35); background: rgba(245,200,66,0.08); }
.modal-vip-badge { position: absolute; top: 12px; right: 16px; background: var(--gold); color: #07101f; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.5px; }
.modal-option-header { margin-bottom: 14px; }
.modal-option-title { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 16px; color: var(--white); margin-bottom: 4px; }
.modal-option-price { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; color: rgba(255,255,255,0.5); }
.modal-option-price-vip { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; color: var(--gold); }
.modal-option-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.modal-option-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.modal-option-feature svg { flex-shrink: 0; color: var(--gold); }
.modal-option-feature strong { color: var(--gold); font-weight: 600; }
.modal-option-btn { width: 100%; background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); padding: 12px 16px; border-radius: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 1px; cursor: pointer; transition: all 0.2s; }
.modal-option-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.modal-option-btn-vip { background: var(--gold); color: #07101f; border-color: var(--gold); font-weight: 600; }
.modal-option-btn-vip:hover { background: var(--gold2); border-color: var(--gold2); }

/* ── COOKIE BANNER ── */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: #0d1a2e; border-top: 1px solid rgba(245,200,66,0.2); padding: 18px 32px; }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.cookie-text a { color: var(--gold); text-decoration: none; cursor: pointer; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--gold); color: #07101f; border: none; padding: 9px 22px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: var(--gold2); }
.cookie-decline { background: none; color: var(--muted); border: 1px solid rgba(255,255,255,0.15); padding: 9px 16px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 13px; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.cookie-decline:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

/* ── LEGAL PAGES ── */
.legal-page { display: none; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 110px 24px 80px; }
.legal-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 3px; margin-bottom: 8px; }
.legal-date { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; background: none; border: 1px solid var(--border); color: var(--muted); padding: 8px 16px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-size: 13px; cursor: pointer; margin-bottom: 40px; transition: color 0.2s, border-color 0.2s; }
.legal-back:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.legal-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1.5px; margin: 36px 0 12px; color: var(--gold); }
.legal-content p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-content ul li { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--gold); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal-table th { text-align: left; padding: 10px 14px; background: rgba(255,255,255,0.05); color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--border); }
.legal-table td { padding: 10px 14px; color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: top; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@media(max-width:600px){
  nav{padding:14px 20px}
  .stats{gap:28px}
  footer{flex-direction:column;text-align:center}
  .footer-links{justify-content:center}
  .modal{padding:28px 20px}
  .cookie-inner{flex-direction:column;align-items:flex-start}
  .legal-table{font-size:12px}
  .legal-table th,.legal-table td{padding:8px 8px}
}