/*
Theme Name: QUINPEAQ Beter Beleggen
Description: Marketingthema voor QUINPEAQ Beter Beleggen
Version: 1.5.0
Author: QUINPEAQ
*/

/* --- Design tokens --- */
:root {
  --accent:         #c47e00;
  --accent-warm:    #d98f10;
  --gold-gradient:  linear-gradient(135deg, #a86800 0%, #d98f10 50%, #a86800 100%);

  --bg:             #f7f4ef;
  --card-bg:        #ffffff;
  --text:           #1a1208;
  --text-light:     #6b5f4a;
  --border:         #e4ddd3;
  --border-gold:    rgba(196, 126, 0, 0.22);
  --nav-bg:         rgba(247, 244, 239, 0.92);

  --radius-card:    18px;
  --radius-pill:    24px;
  --shadow:         0 2px 20px rgba(26, 18, 8, 0.07);
  --shadow-lg:      0 12px 48px rgba(26, 18, 8, 0.1);
  --shadow-gold:    0 8px 48px rgba(196, 126, 0, 0.18);
}

[data-theme="dark"] {
  --accent:         #c47e00;
  --accent-warm:    #d98f10;

  --bg:             #060d1a;
  --card-bg:        #0d1b2e;
  --text:           #e8dfd0;
  --text-light:     #7a8fa8;
  --border:         #1a2d44;
  --border-gold:    rgba(196, 126, 0, 0.25);
  --nav-bg:         rgba(6, 13, 26, 0.92);

  --shadow:         0 2px 20px rgba(0, 0, 0, 0.28);
  --shadow-lg:      0 12px 48px rgba(0, 0, 0, 0.38);
  --shadow-gold:    0 8px 48px rgba(196, 126, 0, 0.2);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.3s, color 0.3s;
}

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

/* --- Layout --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 660px;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-radius: var(--radius-pill);
  padding: 0.72rem 1.85rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 22px rgba(196, 126, 0, 0.38);
}
.btn-primary:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  box-shadow: 0 6px 32px rgba(196, 126, 0, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost-light {
  background: transparent;
  color: rgba(232, 223, 208, 0.75);
  border-color: rgba(232, 223, 208, 0.2);
}
.btn-ghost-light:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg    { font-size: 1rem; padding: 0.9rem 2.3rem; }
.btn-block { width: 100%; text-align: center; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 2.25rem; margin-left: auto; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-light);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { font-size: 0.88rem; padding: 0.55rem 1.4rem; }

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ============================
   HERO
   ============================ */
.hero {
  background: #060d1a;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(196, 126, 0, 0.09) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: #f0ece4;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(232, 223, 208, 0.65);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-note {
  font-size: 0.78rem;
  color: rgba(232, 223, 208, 0.35);
  margin-bottom: 5rem;
}
.hero-screenshot-wrap {
  position: relative;
  z-index: 1;
  padding: 0 3rem;
  display: flex;
  justify-content: center;
}
.hero-screenshot {
  width: 100%;
  max-width: 860px;
  background: #0b1929;
  border: 1px solid rgba(196, 126, 0, 0.22);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  padding: 2.25rem 2.25rem 0;
  box-shadow: 0 -12px 80px rgba(196, 126, 0, 0.1), 0 0 0 1px rgba(196, 126, 0, 0.08);
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.kpi-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(196, 126, 0, 0.14);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.kpi-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(232, 223, 208, 0.45);
  margin-bottom: 0.35rem;
}
.kpi-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8dfd0;
  margin-bottom: 0.15rem;
}
.kpi-value.accent { color: var(--accent); }
.kpi-sub { font-size: 0.62rem; color: rgba(232, 223, 208, 0.35); }
.chart-area {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(196, 126, 0, 0.1);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 1.25rem 1.25rem 0;
}
.chart-labels {
  display: flex;
  justify-content: space-around;
  margin-bottom: 0.5rem;
}
.chart-labels span {
  font-size: 0.62rem;
  color: rgba(232, 223, 208, 0.3);
  flex: 1;
  text-align: center;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 88px;
  gap: 8px;
}
.bar { flex: 1; background: rgba(255, 255, 255, 0.07); border-radius: 4px 4px 0 0; }
.bar.accent-bar { background: var(--accent); opacity: 0.8; }

/* ============================
   SECTIONS
   ============================ */
.section { padding: 7.5rem 2rem; }

.section-dark {
  background: #060d1a;
  padding: 7.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.section-dark-glow {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(196, 126, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.section-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--card-bg) 100%);
  border-top: 1px solid var(--border);
}
.section-header { text-align: center; margin-bottom: 5.5rem; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.section-title--light { color: #f0ece4; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}
.gold-rule {
  width: 44px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 1.75rem auto 0;
}

/* ============================
   FEATURE SHOWCASES
   ============================ */
.feature-showcase {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 7rem;
}
.feature-showcase--flip { flex-direction: row-reverse; }
.feature-showcase-text { flex: 0 0 380px; }
.feature-showcase-visual { flex: 1; min-width: 0; }

.feature-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.875rem;
}
.feature-showcase-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.feature-showcase-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 1.5rem;
}
.feature-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  transition: opacity 0.15s;
}
.feature-link:hover { opacity: 0.65; }

.screenshot-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--border-gold);
  transition: box-shadow 0.25s;
}
.screenshot-frame:hover { box-shadow: 0 16px 64px rgba(196, 126, 0, 0.25); }
.screenshot-frame img { width: 100%; height: auto; display: block; }

.screenshot-placeholder {
  background: var(--card-bg);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshot-placeholder span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  opacity: 0.4;
}

/* Minor features */
.features-minor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.feature-minor {
  padding: 2.75rem 2rem;
  border-right: 1px solid var(--border);
}
.feature-minor:last-child { border-right: none; }
.feature-minor h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.feature-minor p { font-size: 0.92rem; color: var(--text-light); line-height: 1.65; }

/* ============================
   HOW IT WORKS
   ============================ */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step { flex: 1; max-width: 300px; text-align: center; padding: 0 2.5rem; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 1.25rem;
}
.step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0ece4;
  margin-bottom: 0.75rem;
}
.step p { font-size: 0.92rem; color: rgba(232, 223, 208, 0.55); line-height: 1.7; }
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 126, 0, 0.4), transparent);
  margin-top: 1.75rem;
}

/* ============================
   PRICING
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.pricing-card--featured { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.875rem;
}
.price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2rem;
  line-height: 1;
}
.price span { font-size: 0.95rem; font-weight: 600; color: var(--text-light); }
.pricing-features { text-align: left; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #060d1a;
  border-top: 1px solid rgba(196, 126, 0, 0.14);
  padding: 4.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.87rem; color: rgba(232, 223, 208, 0.45); line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; text-align: right; }
.footer-links a { font-size: 0.88rem; color: rgba(232, 223, 208, 0.45); transition: color 0.15s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(232, 223, 208, 0.07);
  padding-top: 1.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(232, 223, 208, 0.28); }

/* ============================
   GENERIC PAGE
   ============================ */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.page-content p { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1rem; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
  .feature-showcase,
  .feature-showcase--flip { flex-direction: column; gap: 3rem; }
  .feature-showcase-text { flex: none; width: 100%; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .features-minor { grid-template-columns: 1fr; }
  .feature-minor { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-minor:last-child { border-bottom: none; }
  .steps { flex-direction: column; align-items: center; gap: 2.5rem; }
  .step-connector { width: 1px; height: 36px; background: linear-gradient(180deg, transparent, rgba(196, 126, 0, 0.4), transparent); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-inner { padding: 5.5rem 1.5rem 0; }
  .hero-screenshot-wrap { padding: 0 1rem; }
  .section { padding: 5rem 1.5rem; }
  .section-dark { padding: 5rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { text-align: center; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .feature-showcase { margin-bottom: 4rem; }
  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
}

/* ============================
   BETA CTA BLOK (homepage)
   ============================ */
.beta-cta-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
}
.beta-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
}
.beta-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,13,26,0.85) 0%, rgba(6,13,26,0.6) 100%);
}
.beta-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.beta-cta-content .section-title { margin-bottom: 1rem; }
.beta-cta-content .section-sub { text-align: left; margin: 0 0 2rem; }
.beta-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.beta-cta-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid rgba(196, 126, 0, 0.25);
  padding-left: 3rem;
  flex-shrink: 0;
}
.beta-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.beta-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 223, 208, 0.5);
}

@media (max-width: 860px) {
  .beta-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .beta-cta-stats { flex-direction: row; border-left: none; border-top: 1px solid rgba(196,126,0,0.25); padding-left: 0; padding-top: 2rem; justify-content: space-around; }
  .beta-cta-content .section-sub { text-align: center; }
  .beta-cta-content { text-align: center; }
  .beta-cta-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .beta-cta-section { padding: 5rem 1.5rem; }
  .beta-cta-stats { flex-direction: column; align-items: center; }
}

/* ============================
   JURIDISCHE PAGINA'S
   ============================ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.875rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { font-size: 0.98rem; color: var(--text-light); line-height: 1.78; margin-bottom: 0.875rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.25rem; list-style: disc; }
.legal-content ul li { font-size: 0.98rem; color: var(--text-light); line-height: 1.7; margin-bottom: 0.35rem; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--text); font-weight: 700; }

/* ============================
   BETA AANMELDING PAGINA
   ============================ */
.beta-voordelen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.beta-voordeel {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196, 126, 0, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.beta-voordeel-icon {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.beta-voordeel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0ece4;
  margin-bottom: 0.625rem;
}
.beta-voordeel p { font-size: 0.92rem; color: rgba(232, 223, 208, 0.55); line-height: 1.7; }

.beta-form-wrap { max-width: 680px; margin: 0 auto; }
.beta-form-header { margin-bottom: 2.5rem; }
.beta-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f0ece4;
  margin-bottom: 0.5rem;
}
.beta-form-header p { font-size: 0.98rem; color: rgba(232, 223, 208, 0.55); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.beta-form-footer { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 0.5rem; }

.section-dark .form-field input,
.section-dark .form-field select,
.section-dark .form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 126, 0, 0.2);
  color: #e8dfd0;
}
.section-dark .form-field input::placeholder,
.section-dark .form-field textarea::placeholder { color: rgba(232, 223, 208, 0.3); }
.section-dark .form-field input:focus,
.section-dark .form-field select:focus,
.section-dark .form-field textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.06); }
.section-dark .form-field label { color: rgba(232, 223, 208, 0.8); }
.section-dark .form-note { color: rgba(232, 223, 208, 0.35); }
.section-dark .form-optional { color: rgba(232, 223, 208, 0.35); }
.section-dark select option { background: #0d1b2e; color: #e8dfd0; }

@media (max-width: 640px) {
  .beta-voordelen { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .beta-form-footer { align-items: stretch; }
  .beta-form-footer .btn { text-align: center; }
}

/* ============================
   BETA INFO PAGINA
   ============================ */
.beta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.beta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.beta-block p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 0.875rem;
}
.beta-block p:last-child { margin-bottom: 0; }

.url-uitleg {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.url-uitleg p {
  font-size: 1rem;
  color: rgba(232, 223, 208, 0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.url-code {
  display: block;
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 126, 0, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  color: rgba(232, 223, 208, 0.6);
  margin: 0 auto 1.5rem;
  word-break: break-all;
}
.url-code--gold {
  color: var(--accent);
  border-color: rgba(196, 126, 0, 0.4);
  background: rgba(196, 126, 0, 0.06);
}

@media (max-width: 860px) {
  .beta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================
   PAGE HERO
   ============================ */
.page-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero--dark {
  background: #060d1a;
  border-bottom: 1px solid rgba(196, 126, 0, 0.14);
}
.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1rem;
}
.page-hero--dark .page-hero-title { color: #f0ece4; }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
.page-hero--dark .page-hero-sub { color: rgba(232, 223, 208, 0.6); }

/* ============================
   BETA FORM
   ============================ */
.beta-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.form-optional { font-weight: 400; color: var(--text-light); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 126, 0, 0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; cursor: pointer; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}
.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-feedback--ok   { background: rgba(196, 126, 0, 0.08); border: 1px solid rgba(196, 126, 0, 0.25); color: var(--text); }
.form-feedback--fout { background: rgba(180, 40, 40, 0.06); border: 1px solid rgba(180, 40, 40, 0.2);  color: var(--text); }

/* ============================
   FAQ
   ============================ */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 1.375rem 2rem 1.375rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}
details[open] .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
details[open] .faq-question { color: var(--accent); }
.faq-answer {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
