/*
 * =============================================================
 * STYLE.CSS - Alle styling van AdultFanbase.com
 * =============================================================
 * 
 * STRUCTUUR VAN DIT BESTAND:
 * 1.  KLEUREN & VARIABELEN - Pas hier de hoofdkleuren aan
 * 2.  BASIS STIJLEN - Algemene reset en basis elementen
 * 3.  KNOPPEN - Alle button stijlen
 * 4.  HEADER - Transparante navigatiebalk
 * 5.  HERO - Grote header sectie op homepage
 * 6.  SIGNUP FORMULIER - Quick signup kaart op homepage
 * 7.  STATISTIEKEN - Cijfers balk (10,000+ Models, $50M+, etc.)
 * 8.  VOORDELEN - Benefits grid met iconen
 * 9.  TESTIMONIALS - Ervaringen van models
 * 10. HOE HET WERKT - 3 stappen uitleg
 * 11. CTA - Call-to-action sectie onderaan
 * 12. FOOTER - Voettekst
 * 13. PAGINA HERO - Header voor binnenpagina's (FAQ, Contact)
 * 14. FAQ - Veelgestelde vragen accordion
 * 15. CONTACT - Contactformulier
 * 16. REGISTRATIE WIZARD - 4-stappen formulier
 * 17. JURIDISCHE PAGINA'S - Privacy, Terms, Cookies
 * 18. LEEFTIJDSVERIFICATIE - 18+ popup
 * 19. COOKIE BANNER - Cookie consent
 * 20. RESPONSIVE - Mobiele aanpassingen
 *
 * TIP: Gebruik Ctrl+F om snel een sectie te vinden!
 * =============================================================
 */

/* Google Fonts - Inter lettertype */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/*
 * ----- 1. KLEUREN & VARIABELEN -----
 * Hier kun je de hoofdkleuren van de site aanpassen.
 * Verander de waarden achter de dubbele punt.
 *
 * VOORBEELD: Om de roze kleur te veranderen naar rood:
 * --primary: #ff0000;
 */
:root {
  --primary: #d63384;         /* Hoofdkleur: roze */
  --primary-light: #e85daa;   /* Lichtere versie van roze */
  --accent: #8b5cf6;          /* Accentkleur: paars */
  --accent-light: #a78bfa;    /* Lichtere versie van paars */
  --bg: #0a0a0f;              /* Achtergrondkleur: bijna zwart */
  --bg-card: #141420;         /* Kaart achtergrond: donkergrijs */
  --bg-card-hover: #1a1a2e;   /* Kaart hover: iets lichter */
  --bg-muted: #1e1e30;        /* Gedempte achtergrond */
  --text: #ffffff;            /* Hoofdtekst: wit */
  --text-secondary: #c4c4d4;  /* Secundaire tekst: lichtgrijs */
  --text-muted: #8888a0;      /* Gedempte tekst: grijs */
  --border: #2a2a3e;          /* Randkleur */
  --green: #22c55e;           /* Groen (voor vinkjes, bedragen) */
  --yellow: #facc15;          /* Geel (voor sterren) */
  --discord: #5865F2;         /* Discord kleur */
  --telegram: #0088cc;        /* Telegram kleur */
  --gradient: linear-gradient(135deg, var(--primary), var(--accent)); /* Roze-paars gradient */
}

/* ----- 2. BASIS STIJLEN ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tekst met gradient kleur (roze naar paars) */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- 3. KNOPPEN - Verschillende button stijlen ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-ghost {
  background: transparent;
  color: white;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; }

/* ----- 4. HEADER - Transparante navigatiebalk bovenaan ----- */
/* De header is doorzichtig en wordt donker wanneer je scrollt */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo .adult { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo .fanbase { color: white; }
.logo .dot-com { color: var(--text-muted); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.nav a:hover, .nav a.active { background: rgba(255,255,255,0.1); color: white; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 99;
}

.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: white; }

/* ----- 5. HERO - Grote header sectie op de homepage ----- */
/* Bevat de achtergrondafbeelding, tekst, en het quick signup formulier */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay-lr {
  background: linear-gradient(to right, rgba(0,0,0,0.92), rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-overlay-bt {
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent, rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 100px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(214,51,132,0.2);
  color: white;
  border: 1px solid rgba(214,51,132,0.3);
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}

.badge-secondary {
  background: var(--bg-muted);
  border-color: var(--border);
  color: var(--text-secondary);
}

.badge-green {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border-color: rgba(34,197,94,0.3);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.hero-desc {
  font-size: 18px;
  color: #d4d4e0;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-check svg { color: var(--green); width: 20px; height: 20px; }

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links span { font-size: 14px; color: var(--text-muted); }

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  transition: color 0.2s;
}

.social-link.discord:hover { color: var(--discord); }
.social-link.telegram:hover { color: var(--telegram); }
.social-link.email:hover { color: var(--primary); }
.social-link svg { width: 24px; height: 24px; }

/* ----- 6. SIGNUP FORMULIER - Quick signup kaart op homepage ----- */
.signup-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  max-width: 440px;
  margin-left: auto;
}

.signup-card h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 8px;
  color: white;
}

.signup-card .subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: #888; }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(214,51,132,0.15); }

.form-terms {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

.form-terms a { text-decoration: underline; color: var(--text-secondary); }
.form-terms a:hover { color: white; }

/* Scroll indicator - het muisje dat aangeeft dat je kunt scrollen */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ----- 7. STATISTIEKEN - Cijferbalk onder de hero ----- */
.stats-section {
  padding: 48px 0;
  background: linear-gradient(to right, rgba(214,51,132,0.08), rgba(139,92,246,0.08), rgba(214,51,132,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label { font-size: 14px; color: var(--text-muted); }

/* ----- 8. VOORDELEN - Benefits grid met iconen ----- */
.benefits-section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(214,51,132,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg { width: 24px; height: 24px; color: var(--primary); }

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- 9. TESTIMONIALS - Ervaringen van models ----- */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0a20, #0f0a1a, #1a0a20);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}

.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; color: var(--yellow); fill: var(--yellow); }

.testimonial-text {
  font-size: 15px;
  color: #d4d4e0;
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-name { font-weight: 600; color: white; }
.testimonial-location { font-size: 13px; color: var(--text-muted); }

/* ----- 10. HOE HET WERKT - 3 stappen uitleg ----- */
.steps-section { padding: 80px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.step-number {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(214,51,132,0.3);
}

.steps-grid h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.steps-grid p { font-size: 14px; color: var(--text-muted); }

/* ----- 11. CTA - Call-to-action sectie onderaan de homepage ----- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(214,51,132,0.1), rgba(139,92,246,0.08), rgba(214,51,132,0.1));
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 14px;
}

.cta-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.cta-contact a:hover { color: white; }
.cta-contact svg { width: 20px; height: 20px; }

/* ----- 12. FOOTER - Voettekst met links en copyright ----- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(30,30,48,0.3);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links { display: flex; align-items: center; gap: 16px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-links svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ----- 13. PAGINA HERO - Header voor binnenpagina's (FAQ, Contact, etc.) ----- */
.page-hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.8), rgba(0,0,0,0.88));
}

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

.page-hero h1 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.page-hero p { color: var(--text-secondary); font-size: 16px; }

/* Generieke kaart stijl */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.card-hover:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  transition: all 0.2s;
}

/* ----- 14. FAQ - Veelgestelde vragen met accordion ----- */
.faq-content { padding: 60px 0; }

.faq-category {
  margin-bottom: 32px;
}

.faq-category h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  padding: 32px;
  border-radius: 12px;
  background: linear-gradient(to right, rgba(214,51,132,0.08), rgba(139,92,246,0.08), rgba(214,51,132,0.08));
  border: 1px solid var(--border);
  margin-top: 48px;
}

.faq-cta h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.faq-cta p { color: var(--text-muted); margin-bottom: 24px; }
.faq-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----- 15. CONTACT - Contactpagina en formulier ----- */
.contact-content { padding: 60px 0; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.contact-info-card svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin: 0 auto 12px;
}

.contact-info-card h3 { font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-muted); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.contact-form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group-dark label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group-dark { margin-bottom: 16px; }

.input-dark {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-muted);
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.input-dark::placeholder { color: #666; }
.input-dark:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(214,51,132,0.15); }

textarea.input-dark { min-height: 150px; resize: vertical; }

select.input-dark { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.alert-success { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.alert-error { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

/* ----- 16. REGISTRATIE WIZARD - 4-stappen aanmeldformulier ----- */
.register-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a20, #0f0a1a, #1a0a20);
  padding: 100px 0 60px;
}

.register-header { text-align: center; margin-bottom: 32px; }
.register-header h1 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.register-header p { color: var(--text-secondary); }

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.progress-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #444;
  background: rgba(255,255,255,0.05);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.progress-step.active .progress-circle,
.progress-step.completed .progress-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(214,51,132,0.3);
}

.progress-step span {
  font-size: 12px;
  color: var(--text-muted);
}

.progress-track {
  height: 8px;
  background: #333;
  border-radius: 4px;
  max-width: 700px;
  margin: 12px auto 32px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.wizard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.wizard-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.wizard-card > p.wizard-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}

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

.plan-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.plan-card:hover { background: rgba(255,255,255,0.03); }
.plan-card.selected { border-color: var(--primary); background: rgba(214,51,132,0.05); }

.plan-card .popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(214,51,132,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.plan-icon svg { width: 24px; height: 24px; color: var(--primary); }

.plan-name { font-size: 18px; font-weight: 600; }

.plan-commission {
  font-size: 32px;
  font-weight: 800;
  margin: 8px 0;
}

.plan-label { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }

.plan-features { text-align: left; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.plan-features li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.summary-box {
  background: var(--bg-muted);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.summary-box h3 { font-weight: 600; margin-bottom: 12px; }

.summary-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 14px;
}

.summary-grid dt { color: var(--text-muted); }
.summary-grid dd { color: white; }
.summary-grid dd.highlight { font-weight: 600; color: var(--primary); }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-group label a { color: var(--primary); text-decoration: underline; }

/* ----- 17. JURIDISCHE PAGINA'S - Privacy, Terms, Cookies ----- */
.legal-content {
  padding: 60px 0;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: white;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.legal-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-card ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-card ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  list-style: disc;
  margin-bottom: 4px;
}

.legal-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.legal-card th, .legal-card td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-size: 13px;
  text-align: left;
}

.legal-card th {
  background: var(--bg-muted);
  color: var(--text-secondary);
  font-weight: 600;
}

.legal-card td { color: var(--text-muted); }

/* ----- 18. LEEFTIJDSVERIFICATIE - 18+ popup bij eerste bezoek ----- */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal-overlay.hidden { display: none; }

.age-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-modal h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.age-modal p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }

.age-modal-btns { display: flex; gap: 12px; }
.age-modal-btns .btn { flex: 1; }

/* ----- 19. COOKIE BANNER - Cookie consent onderaan ----- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner.hidden { display: none; }

.cookie-banner p {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
  min-width: 200px;
}

.cookie-banner a { color: var(--primary); text-decoration: underline; }

.cookie-btns { display: flex; gap: 8px; }

/* ----- 20. RESPONSIVE - Aanpassingen voor mobiel en tablet ----- */
/* Onder 1024px: tablet layout */
/* Onder 768px: mobiele layout */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .signup-card { margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .mobile-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-grid-2, .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-social, .footer-links { justify-content: center; }
}
