/* ============================================================
   KinMethod — Complete CSS
   Design: Premium, origineel, resistance bands als visueel motief
   3D effecten via CSS transform, box-shadow en SVG
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-subtle: #F7F9F7;
  --bg-deep: #0f2d1f;
  --bg-deep-2: #0a1f14;
  --text-primary: #0A0F0A;
  --text-secondary: #5C6B5C;
  --text-light: #94A394;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.5);
  --border: #E5EBE5;
  --border-subtle: #F0F5F0;
  --accent: #1A7A5E;
  --accent-hover: #145E48;
  --accent-light: #E8F5F0;
  --accent-mid: #2BB5A0;
  --success: #22C55E;
  --tag-bg: #E8F5F0;
  --tag-text: #145E48;
  --band-yellow: #F5C518;
  --band-red: #E84040;
  --band-blue: #3C82F0;
  --band-green: #2BB570;
  --band-black: #444444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.16);
  --shadow-green: 0 8px 32px rgba(26,122,94,0.22);
  --shadow-deep: 0 24px 80px rgba(15,45,31,0.35);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 500; }
p { color: var(--text-secondary); font-size: 16px; line-height: 1.75; }
em { font-style: italic; }
.section-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-label-light { color: rgba(255,255,255,0.4); }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); height: 68px; display: flex; align-items: center; }
header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.03em; }

/* BUTTONS */
.btn-primary { background: var(--accent); color: #fff; border: none; border-radius: var(--radius-full); padding: 14px 26px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; letter-spacing: -0.01em; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-ghost { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border); border-radius: var(--radius-full); padding: 13px 26px; font-family: var(--font-body); font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-cta-white { background: #fff; color: var(--bg-deep); font-weight: 700; }
.btn-cta-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* HERO */
.hero { position: relative; background: var(--bg); padding: 80px 0 0; overflow: hidden; }
.hero-bands { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bands-svg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-text { padding-bottom: 80px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--tag-bg); color: var(--tag-text); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 28px; }
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-title { color: var(--text-primary); margin-bottom: 20px; }
.hero-title em { color: var(--accent); font-style: italic; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; max-width: 460px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill { font-size: 12px; font-weight: 500; color: var(--text-secondary); background: var(--bg-subtle); border: 1px solid var(--border); padding: 5px 12px; border-radius: var(--radius-full); }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.hero-photo-wrap { position: relative; width: 100%; }
.hero-photo { width: 100%; height: 580px; object-fit: cover; object-position: center top; border-radius: var(--radius-xl) var(--radius-xl) 0 0; display: block; transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); box-shadow: var(--shadow-xl), -8px 8px 40px rgba(26,122,94,0.12); transition: transform 0.4s ease; }
.hero-photo-wrap:hover .hero-photo { transform: perspective(1000px) rotateY(-1deg) rotateX(0.5deg) scale(1.01); }
.hero-badge { position: absolute; bottom: 28px; left: -24px; background: white; border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 12px; transform: perspective(500px) rotateY(3deg); z-index: 2; }
.hero-badge-icon { font-size: 22px; }
.hero-badge-label { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.hero-badge-sub { font-size: 11px; color: var(--text-secondary); }
.hero-band-strip { position: absolute; bottom: 0; left: 0; right: 0; height: 5px; display: flex; overflow: hidden; }
.band-strip-seg { flex: 1; }
.hero-price-card { background: var(--bg-deep); color: white; border-radius: var(--radius-lg); padding: 16px 24px; text-align: center; align-self: flex-end; transform: perspective(500px) rotateY(-3deg); box-shadow: var(--shadow-deep); }
.hero-price-amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.hero-price-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* BANDS SHOWCASE */
.bands-showcase { background: var(--bg-subtle); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bands-showcase-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.band-level { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: default; }
.band-visual-ring { width: 64px; height: 64px; border-radius: 50%; border: 6px solid var(--band-color); background: transparent; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 16px rgba(0,0,0,0.1), inset 0 0 0 3px rgba(255,255,255,0.9); }
.band-level:hover .band-visual-ring { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 28px rgba(0,0,0,0.15), 0 0 0 2px var(--band-color), inset 0 0 0 3px rgba(255,255,255,0.9); }
.band-level-label { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.band-level-name { font-size: 12px; color: var(--text-secondary); }
.band-level-desc { font-size: 11px; color: var(--text-light); }
.bands-showcase-sub { text-align: center; font-size: 13px; color: var(--text-light); margin-top: 28px; }

/* KIT SECTIE */
.kit-section { padding: 96px 0; background: var(--bg); }
.kit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.kit-image-side { display: flex; flex-direction: column; gap: 20px; }
.kit-photo-wrap { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.kit-photo { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); transform: perspective(800px) rotateY(3deg) rotateX(1deg); transition: transform 0.4s ease; }
.kit-photo-wrap:hover .kit-photo { transform: perspective(800px) rotateY(1deg) rotateX(0deg); }
.kit-glow { position: absolute; bottom: -20px; left: 20px; right: 20px; height: 60px; background: radial-gradient(ellipse, rgba(26,122,94,0.2) 0%, transparent 70%); filter: blur(12px); z-index: -1; }
.kit-bands-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.kit-content { padding-top: 8px; }
.kit-intro { font-size: 17px; color: var(--text-secondary); margin: 16px 0 28px; line-height: 1.7; }
.kit-items { display: flex; flex-direction: column; gap: 10px; }
.kit-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--bg-subtle); border-radius: var(--radius-md); border: 1px solid var(--border-subtle); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s; }
.kit-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--border); }
.kit-item-accent { width: 4px; height: 40px; border-radius: 2px; flex-shrink: 0; }
.kit-item-content { flex: 1; }
.kit-item-text { font-size: 14px; font-weight: 600; color: var(--text-primary); display: block; line-height: 1.3; }
.kit-item-sub { font-size: 12px; color: var(--text-secondary); display: block; margin-top: 2px; }

/* PROBLEEM SECTIE */
.problem-section { background: var(--bg-deep); padding: 96px 0; position: relative; overflow: hidden; }
.problem-band-deco { position: absolute; inset: 0; pointer-events: none; }
.problem-band-deco svg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.problem-section .container { position: relative; z-index: 1; }
.problem-title { color: #fff; margin-bottom: 48px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; transition: background 0.25s, transform 0.25s, border-color 0.25s; }
.problem-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.problem-icon { width: 44px; height: 44px; background: rgba(232,64,64,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.problem-card h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.problem-card p { color: rgba(255,255,255,0.45); font-size: 15px; line-height: 1.65; }
.problem-solution { margin-top: 48px; display: flex; align-items: center; gap: 16px; background: rgba(43,181,160,0.1); border: 1px solid rgba(43,181,160,0.2); border-radius: var(--radius-md); padding: 20px 28px; }
.solution-arrow { font-size: 24px; color: var(--accent-mid); flex-shrink: 0; }
.solution-text { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; }
.solution-text strong { color: #fff; }

/* SYSTEEM SECTIE */
.system-section { padding: 96px 0; background: var(--bg-subtle); }
.system-section h2 em { color: var(--accent); }
.system-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 48px; }
.system-steps { display: flex; flex-direction: column; }
.step-connector { width: 2px; height: 32px; background: linear-gradient(var(--border), var(--border-subtle)); margin-left: 18px; }
.step-number { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.step-1 { background: rgba(245,197,24,0.15); color: #8A6500; border: 2px solid rgba(245,197,24,0.3); }
.step-2 { background: rgba(60,130,240,0.15); color: #1A4FA0; border: 2px solid rgba(60,130,240,0.3); }
.step-3 { background: rgba(26,122,94,0.15); color: var(--accent); border: 2px solid rgba(26,122,94,0.3); }
.system-step { display: flex; gap: 18px; align-items: flex-start; }
.system-step:hover .step-number { transform: scale(1.1); box-shadow: var(--shadow-sm); }
.step-content h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.step-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.system-photos { position: relative; }
.system-photo-stack { position: relative; padding-bottom: 40px; padding-right: 40px; }
.system-photo-main { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); transform: perspective(800px) rotateY(-3deg) rotateX(1.5deg); transition: transform 0.4s ease; }
.system-photo-stack:hover .system-photo-main { transform: perspective(800px) rotateY(-1deg) rotateX(0.5deg); }
.system-photo-float { position: absolute; bottom: 0; right: 0; width: 48%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 4px solid white; transform: perspective(400px) rotateY(-4deg) rotateX(2deg); transition: transform 0.4s ease; }
.system-photo-stack:hover .system-photo-float { transform: perspective(400px) rotateY(-2deg) rotateX(1deg); }

/* SCHEMA PREVIEW */
.preview-section { padding: 96px 0; background: var(--bg); }
.preview-sub { color: var(--text-secondary); font-size: 15px; margin: 12px 0 0; max-width: 520px; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.preview-day { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.preview-day:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.preview-day-header { padding: 20px 20px 14px; background: var(--bg-subtle); }
.preview-day-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.preview-day-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-primary); }
.preview-exercise { display: flex; justify-content: space-between; align-items: center; padding: 9px 20px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
.preview-exercise:last-child { border-bottom: none; }
.preview-exercise-name { font-weight: 500; color: var(--text-primary); }
.preview-exercise-sets { color: var(--text-secondary); }
.preview-day-locked { position: relative; }
.preview-lock-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 16px 20px; background: linear-gradient(transparent, rgba(255,255,255,0.97) 40%); display: flex; align-items: flex-end; justify-content: center; }
.preview-lock-content { display: flex; align-items: center; gap: 8px; background: var(--bg-deep); color: white; font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: var(--radius-full); }
.preview-cta { text-align: center; margin-top: 40px; }

/* LIFESTYLE SECTIE */
.lifestyle-section { background: var(--bg-subtle); overflow: hidden; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.lifestyle-photo { position: relative; height: 520px; overflow: hidden; }
.lifestyle-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.lifestyle-photo:hover img { transform: scale(1.03); }
.lifestyle-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 32px 24px; background: linear-gradient(transparent, rgba(15,45,31,0.7)); }
.lifestyle-overlay span { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
.lifestyle-content { padding: 64px; }
.lifestyle-content h2 { margin-bottom: 16px; }
.lifestyle-content p { margin-bottom: 36px; font-size: 16px; }
.lifestyle-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lifestyle-stat { text-align: center; }
.lifestyle-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; }
.lifestyle-stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; line-height: 1.4; }

/* OEFENING GRID */
.exercise-grid-section { padding: 96px 0 0; background: var(--bg); }
.exercise-grid-section .container { margin-bottom: 40px; }
.exercise-photo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.exercise-photo-item { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.exercise-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exercise-photo-item:hover img { transform: scale(1.08); }
.exercise-photo-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 12px 12px; background: linear-gradient(transparent, rgba(15,45,31,0.75)); color: white; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-align: center; opacity: 0; transition: opacity 0.3s ease; }
.exercise-photo-item:hover .exercise-photo-label { opacity: 1; }

/* FOUNDERS */
.founders-section { padding: 96px 0; background: var(--bg-subtle); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.founders-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); width: 100%; transform: perspective(800px) rotateY(3deg); transition: transform 0.4s ease; }
.founders-image:hover img { transform: perspective(800px) rotateY(1deg); }
.founders-quote-mark { font-family: var(--font-display); font-size: 80px; line-height: 0.6; color: var(--accent); opacity: 0.3; margin-bottom: 20px; }
.founders-quote { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px); font-style: italic; line-height: 1.45; margin-bottom: 28px; color: var(--text-primary); }
.founders-sig { border-top: 1px solid var(--border); padding-top: 20px; }
.founders-names { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.founders-role { font-size: 14px; color: var(--text-secondary); }

/* FAQ */
.faq-section { padding: 96px 0; background: var(--bg); }
.faq-title { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; padding: 22px 0; background: none; border: none; font-size: 16px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); color: var(--text-primary); gap: 16px; transition: color 0.15s; }
.faq-question:hover { color: var(--accent); }
.faq-icon { width: 26px; height: 26px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: transform 0.25s, border-color 0.2s, background 0.2s; color: var(--text-secondary); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.faq-answer { display: none; padding-bottom: 22px; color: var(--text-secondary); font-size: 15px; line-height: 1.75; max-width: 640px; }
.faq-item.open .faq-answer { display: block; }

/* CTA SECTIE */
.cta-section { padding: 48px 0 80px; background: var(--bg); }
.cta-section .container { background: var(--bg-deep); border-radius: var(--radius-xl); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-bands { position: absolute; inset: 0; pointer-events: none; }
.cta-bands svg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.cta-section h2 { color: #fff; max-width: 560px; margin: 0 auto 16px; position: relative; z-index: 1; }
.cta-section p { color: var(--text-on-dark-muted); max-width: 440px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-section .btn-primary { position: relative; z-index: 1; }
.cta-meta { color: rgba(255,255,255,0.25); font-size: 12px; margin-top: 16px; position: relative; z-index: 1; }

/* FOOTER */
footer { padding: 0; border-top: 1px solid var(--border); background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding: 56px 0 40px; }
.footer-brand { }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; flex-direction: column; gap: 1px; }
.footer-contact-label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; color: var(--text-secondary); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-legal-title { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-legal-info { display: flex; flex-direction: column; gap: 8px; }
.footer-legal-item { display: flex; flex-direction: column; gap: 1px; }
.footer-legal-label { font-size: 11px; font-weight: 600; color: var(--text-light); }
.footer-legal-item span:last-child { font-size: 13px; color: var(--text-secondary); }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 14px; color: var(--text-secondary); transition: color 0.15s; }
.footer-links-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding: 20px 0; display: flex; flex-direction: column; gap: 4px; }
.footer-copy { font-size: 12px; color: var(--text-light); }
.footer-copy-sub { font-size: 11px; color: rgba(148,163,148,0.6); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 28px; }
}


/* QUIZ */
.quiz-page { min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; }
.quiz-header { padding: 20px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 24px; }
.quiz-progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-mid)); border-radius: 2px; transition: width 0.4s ease; }
.quiz-progress-label { font-size: 13px; color: var(--text-secondary); white-space: nowrap; font-weight: 500; }
.quiz-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 56px 24px; }
.quiz-step { display: none; max-width: 580px; width: 100%; }
.quiz-step.active { display: block; }
.quiz-subtitle { color: var(--text-light); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.quiz-question { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 600; margin-bottom: 32px; line-height: 1.2; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option { padding: 16px 20px; border: 1.5px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all 0.15s; display: flex; align-items: center; gap: 14px; background: var(--bg); }
.quiz-option:hover { border-color: var(--accent); background: var(--accent-light); }
.quiz-option.selected { border-color: var(--accent); background: var(--accent-light); }
.quiz-option input[type="radio"] { accent-color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
.quiz-option-text { font-size: 15px; font-weight: 500; color: var(--text-primary); }
.quiz-footer { padding-top: 28px; display: flex; justify-content: flex-end; }
.quiz-intro { max-width: 540px; width: 100%; text-align: center; }
.quiz-intro h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 600; margin-bottom: 16px; }
.quiz-intro p { color: var(--text-secondary); font-size: 17px; margin-bottom: 36px; line-height: 1.7; }

/* RESULT */
.result-hero { padding: 64px 0; text-align: center; background: var(--bg-subtle); }
.result-plan-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--tag-bg); color: var(--tag-text); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: var(--radius-full); margin-bottom: 20px; }
.result-title { font-size: clamp(28px, 4vw, 48px); font-family: var(--font-display); margin-bottom: 12px; }
.result-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.result-stats { display: flex; justify-content: center; gap: 48px; margin: 48px 0 0; flex-wrap: wrap; }
.result-stat { text-align: center; }
.result-stat-number { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--text-primary); line-height: 1; }
.result-stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.result-answer-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 24px; }
.result-chip { background: var(--accent-light); color: var(--accent); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: var(--radius-full); }
.result-why { padding: 48px 0; text-align: center; background: var(--bg); }
.result-why h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 14px; }
.result-why p { color: var(--text-secondary); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.result-preview { padding: 64px 0; background: var(--bg-subtle); }
.result-days { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; position: relative; }
.result-day { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.result-day-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.result-day-name { font-size: 17px; font-weight: 600; font-family: var(--font-display); margin-bottom: 16px; }
.result-day-locked { filter: blur(5px); user-select: none; pointer-events: none; }
.result-exercise-item { font-size: 14px; color: var(--text-secondary); padding: 7px 0; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; }
.result-exercise-item:last-child { border-bottom: none; }
.result-unlock-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 120px 20px 32px; background: linear-gradient(transparent, rgba(247,249,247,0.97) 40%); display: flex; align-items: flex-end; justify-content: center; }
.result-unlock-box { text-align: center; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 36px; box-shadow: var(--shadow-lg); max-width: 420px; }
.result-unlock-icon { color: var(--accent); margin-bottom: 12px; display: flex; justify-content: center; }
.result-unlock-box p { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 20px; }
.result-cta { padding: 64px 0; background: var(--bg); text-align: center; }
.result-kit { display: flex; align-items: center; justify-content: center; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.result-kit-image { width: 300px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.result-kit-items { text-align: left; }
.result-kit-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 15px; color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle); }
.result-kit-item:last-child { border-bottom: none; }
.result-kit-item::before { content: "✓"; color: var(--success); font-weight: 700; font-size: 16px; }
.result-price { font-family: var(--font-display); font-size: 52px; font-weight: 700; margin-bottom: 8px; }
.result-price-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; }

/* MEMBER */
.member-page { min-height: 100vh; }
.member-header { padding: 40px 0; border-bottom: 1px solid var(--border); background: white; }
.member-welcome { font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; }
.member-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; }
.member-plan-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--tag-bg); color: var(--tag-text); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-full); margin-top: 12px; }
.member-stats { display: flex; gap: 28px; margin-top: 20px; flex-wrap: wrap; }
.member-stat { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.member-stat strong { color: var(--text-primary); }
.member-start-cta { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.member-start-sub { font-size: 13px; color: var(--text-secondary); }
.member-progress-bar-wrap { width: 100%; max-width: 380px; height: 6px; background: var(--border); border-radius: 3px; margin-top: 20px; overflow: hidden; }
.member-progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-mid)); border-radius: 3px; transition: width 0.5s ease; }
.member-progress-label { font-size: 12px; color: var(--text-secondary); margin-top: 6px; }
.member-content { padding: 48px 0; }
.training-days { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.training-day { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.training-day-header { padding: 24px; background: var(--bg-subtle); border-bottom: 1px solid var(--border); }
.training-day-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.training-day-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.exercises-list { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.exercise-card { display: flex; gap: 14px; align-items: flex-start; padding: 14px; background: var(--bg-subtle); border-radius: var(--radius-md); }
.exercise-photo { width: 68px; height: 68px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.exercise-photo-placeholder { width: 68px; height: 68px; border-radius: var(--radius-sm); background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.exercise-info { flex: 1; }
.exercise-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.exercise-sets { font-size: 13px; color: var(--accent); font-weight: 700; margin-bottom: 5px; }
.exercise-uitleg { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* WELKOM */
.welkom-page { min-height: calc(100vh - 140px); display: flex; align-items: center; justify-content: center; padding: 48px 16px; background: var(--bg-subtle); }
.welkom-kaart { background: white; border-radius: var(--radius-xl); padding: 44px 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); border: 1px solid var(--border); }
.welkom-check-cirkel { width: 56px; height: 56px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; }
.welkom-titel { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.welkom-subtitel { font-size: 15px; color: var(--text-secondary); text-align: center; margin-bottom: 28px; line-height: 1.6; }
.welkom-form-groep { margin-bottom: 16px; }
.welkom-form-groep label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.welkom-optioneel { font-weight: 400; color: var(--text-secondary); margin-left: 4px; }
.welkom-form-groep input[type="text"], .welkom-form-groep input[type="email"], .welkom-form-groep input[type="tel"] { width: 100%; padding: 13px 16px; font-size: 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md); outline: none; transition: border-color 0.2s; font-family: var(--font-body); background: white; }
.welkom-form-groep input:focus { border-color: var(--accent); }
.welkom-form-groep input.fout { border-color: #dc2626; }
.welkom-fout-tekst { font-size: 12px; color: #dc2626; margin-top: 5px; display: none; }
.welkom-fout-banner { display: none; background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; text-align: center; }
.welkom-btn { width: 100%; padding: 15px; background: var(--accent); color: white; border: none; border-radius: var(--radius-md); font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: var(--font-body); margin-top: 8px; }
.welkom-btn:hover { background: var(--accent-hover); }
.welkom-btn:disabled { background: var(--border); color: var(--text-secondary); cursor: not-allowed; }
.laden-tekst { display: none; }

/* BELEID */
.policy-page { padding: 64px 0 96px; }
.policy-content { max-width: 720px; margin: 0 auto; }
.policy-content h1 { font-family: var(--font-display); font-size: 44px; font-weight: 700; margin-bottom: 8px; }
.policy-date { color: var(--text-light); font-size: 14px; margin-bottom: 48px; display: block; }
.policy-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-top: 44px; margin-bottom: 12px; }
.policy-content p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.policy-content ul, .policy-content ol { padding-left: 24px; margin-bottom: 16px; }
.policy-content li { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 6px; }
.policy-content a { color: var(--accent); text-decoration: underline; }

/* ANIMATIES */
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-8px); } 75% { transform: translateX(8px); } }
.shake { animation: shake 0.4s ease; }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-grid, .kit-inner, .system-layout, .lifestyle-grid, .founders-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { padding-bottom: 48px; }
  .hero-photo { height: 440px; border-radius: var(--radius-xl); transform: none; }
  .hero-badge { left: 12px; bottom: 16px; }
  .hero-price-card { transform: none; align-self: auto; }
  .hero-visual { gap: 12px; }
  .kit-photo { transform: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { transform: none !important; }
  .system-photo-main { transform: none; }
  .system-photo-float { right: -12px; bottom: -12px; }
  .preview-grid { grid-template-columns: 1fr; }
  .lifestyle-photo { height: 360px; }
  .lifestyle-content { padding: 48px 32px; }
  .exercise-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .founders-image img { transform: none; }
  .result-days { grid-template-columns: 1fr; }
  .training-days { grid-template-columns: 1fr; }
  .cta-section .container { padding: 56px 32px; border-radius: var(--radius-lg); }
  footer .container { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 0; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .bands-showcase-grid { gap: 16px; }
  .band-visual-ring { width: 48px; height: 48px; border-width: 5px; }
  .exercise-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-stats { grid-template-columns: 1fr; gap: 16px; }
  .result-kit { flex-direction: column; }
  .welkom-kaart { padding: 32px 20px; }
  .cta-section .container { padding: 48px 24px; }
}

/* PROBLEM CTA */
.problem-cta {
  text-align: center;
  margin-top: 40px;
}
.problem-cta .btn-primary {
  background: var(--accent-mid);
  font-size: 16px;
}
.problem-cta .btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 8px 32px rgba(43,181,160,0.3);
}

/* MEMBERAREA PREVIEW */
.memberarea-preview { padding: 96px 0; background: var(--bg-subtle); }
.memberarea-sub { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 16px 0 48px; line-height: 1.7; }
.memberarea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.memberarea-feature { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.memberarea-feature-icon { font-size: 28px; margin-bottom: 14px; }
.memberarea-feature h3 { font-size: 17px; margin-bottom: 8px; color: var(--text-primary); }
.memberarea-feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.memberarea-screenshot-wrap { margin-bottom: 32px; }
.memberarea-screenshot-placeholder { background: var(--bg-deep); border-radius: var(--radius-xl); padding: 80px 40px; text-align: center; color: rgba(255,255,255,0.3); font-size: 14px; min-height: 300px; display: flex; align-items: center; justify-content: center; }
.memberarea-direct { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 600px; }
.memberarea-direct-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-secondary); }
.memberarea-direct-check { color: var(--success); font-weight: 700; font-size: 16px; flex-shrink: 0; }

@media (max-width: 768px) {
  .memberarea-grid { grid-template-columns: 1fr; }
  .memberarea-direct { grid-template-columns: 1fr; }
}

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.sticky-cta-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
}
.sticky-cta-btn {
  padding: 13px 22px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  body.footer-visible .sticky-cta { transform: translateY(100%); }
}

/* MOBILE HERO AANPASSINGEN */
.hero-price-mobile {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .hero-price-mobile { display: block; }
  .hero-price-card { display: none; }
  .hero-grid {
    display: flex;
    flex-direction: column;
  }
  .hero-text {
    order: 1;
    padding-bottom: 32px;
  }
  .hero-visual {
    order: 2;
  }
  .hero-photo {
    height: 300px;
    border-radius: var(--radius-lg);
    transform: none;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn-primary {
    text-align: center;
    justify-content: center;
  }
  .btn-ghost {
    display: none;
  }
}

/* MOBILE SECTIEVOLGORDE */
@media (max-width: 767px) {
  .hero { order: 1; }
  .bands-showcase { order: 2; }
  .kit-section { order: 3; }
  .preview-section { order: 4; }
  .problem-section { order: 5; }
  .system-section { order: 6; }
  .lifestyle-section { order: 7; }
  .exercise-grid-section { order: 8; }
  .memberarea-preview { order: 9; }
  .founders-section { order: 10; }
  .faq-section { order: 11; }
  .cta-section { order: 12; }
}

/* PAGE CONTENT FLEX WRAPPER */
.page-content {
  display: flex;
  flex-direction: column;
}

/* MOBILE QUIZ TOUCH TARGETS */
@media (max-width: 767px) {
  .quiz-option {
    padding: 18px 20px;
    min-height: 56px;
  }
  .quiz-option-text {
    font-size: 16px;
  }
  .quiz-footer {
    padding-top: 24px;
    justify-content: stretch;
  }
  .quiz-footer .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .quiz-question {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .quiz-body {
    padding: 32px 16px;
    align-items: flex-start;
  }
  .quiz-options {
    gap: 12px;
  }
}


/* ============================================================
   MEMBER AREA V1 UPGRADE - nieuwe classes
   Aansluitend op bestaand design systeem
   ============================================================ */

/* Member header layout */
.member-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.member-header-left { flex: 1; }
.member-header-right { flex-shrink: 0; }
.member-stat-sep { color: var(--border); font-size: 16px; }

/* Streak kaart */
.streak-card {
  background: var(--bg-deep);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  min-width: 120px;
}
.streak-flame { font-size: 28px; margin-bottom: 4px; }
.streak-getal {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.streak-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.streak-record { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 6px; }

/* Voortgangsbalk uitbreiding */
.member-progress-sectie { margin-top: 24px; max-width: 600px; }
.member-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.member-progress-pct { font-size: 12px; font-weight: 700; color: var(--accent); }

/* Badges */
.badges-sectie {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.badges-rij {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  min-width: 90px;
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
}
.badge-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.badge-emoji { font-size: 28px; }
.badge-naam { font-size: 12px; font-weight: 600; color: var(--text-primary); text-align: center; }
.badge-datum { font-size: 11px; color: var(--text-light); }

/* Member content header */
.member-content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Dag afvink knop (compact, in training-day-header) */
.dag-afvink-form { flex-shrink: 0; }
.dag-check-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: white;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dag-check-btn:hover { border-color: var(--accent); color: var(--accent); }
.dag-check-btn.gedaan {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Video placeholder */
.exercise-media { flex-shrink: 0; }
.exercise-video-placeholder {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.video-play-icon { color: rgba(255,255,255,0.3); font-size: 14px; }
.video-coming-soon { color: rgba(255,255,255,0.2); font-size: 8px; text-align: center; line-height: 1.2; }

/* Geen schema fallback */
.member-geen-schema {
  text-align: center;
  padding: 64px 0;
}
.member-geen-schema p { font-size: 18px; margin-bottom: 24px; }

/* Voortgang pagina */
.voortgang-page { min-height: 100vh; }
.voortgang-header {
  padding: 48px 0;
  background: white;
  border-bottom: 1px solid var(--border);
}
.voortgang-stats-rij {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.voortgang-stat-kaart {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 120px;
}
.voortgang-stat-getal {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.voortgang-stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

.voortgang-content { padding: 48px 0; }

/* Week blokken */
.week-blok {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.week-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.week-voltooid-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.week-progress-tag {
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.week-dagen { display: flex; gap: 10px; flex-wrap: wrap; }
.dag-check-btn-groot {
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 90px;
}
.dag-check-btn-groot:hover { border-color: var(--accent); color: var(--accent); }
.dag-check-btn-groot.gedaan {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Responsive aanpassingen member upgrade */
@media (max-width: 768px) {
  .member-header-inner { flex-direction: column; }
  .streak-card { align-self: flex-start; }
  .member-content-header { flex-direction: column; align-items: flex-start; }
  .voortgang-stats-rij { gap: 10px; }
  .voortgang-stat-kaart { flex: 1; min-width: 80px; }
}

/* MOBIELE & LAYOUT FIXES (Stap 1-4, 6, 7) */
@media (max-width: 768px) {
  /* Stap 1: verberg tweede foto (bands-resistance) boven Het Pakket op mobiel */
  .kit-bands-photo { display: none; }

  /* Stap 2: zijmarges op CTA "Klaar om te starten" */
  .cta-section { padding-left: 24px; padding-right: 24px; }

  /* Stap 3: witruimte na memberarea checkmarks beperken */
  .memberarea-direct { padding-bottom: 32px; margin-bottom: 0; }

  /* Stap 4: compacte footer op mobiel */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 0 24px; }
  .footer-brand { grid-column: 1 / -1; }
  footer .container { padding: 0 24px; }
}

/* Stap 7: FAQ accordion-items even breed, +-icoon altijd rechts */
.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.faq-question { flex: 1; }
.faq-icon { flex-shrink: 0; }
.faq-answer { flex-basis: 100%; }

/* ── Intake page ── */
.intake-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--bg-light, #f8f7f4);
}
.intake-kaart {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
}
.intake-titel {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary, #1a1a1a);
  margin: 0 0 12px;
}
.intake-subtitel {
  font-size: 15px;
  color: var(--text-secondary, #666);
  line-height: 1.6;
  margin: 0 0 32px;
}
.intake-fout-banner {
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  color: #c0392b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}
.intake-form-groep {
  margin-bottom: 20px;
}
.intake-form-groep label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 6px;
}
.intake-form-groep input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border, #e0ddd8);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-primary, #1a1a1a);
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.intake-form-groep input:focus {
  outline: none;
  border-color: var(--accent, #c8a96e);
}
.intake-email-hint {
  font-size: 13px;
  color: var(--accent, #c8a96e);
  margin-top: 6px;
}
.intake-submit {
  width: 100%;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .intake-kaart { padding: 32px 20px; }
}

/* Afvink footer onderaan dagkaart */
.dag-afvink-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border-subtle);
}
.dag-afvink-btn {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.dag-afvink-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.dag-afvink-btn.gedaan {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Oefening Modal */
.oefening-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,10,0.7);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.oefening-modal-overlay.actief {
  display: flex;
}
.oefening-modal {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.oefening-modal-sluit {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.oefening-modal-sluit:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.oefening-modal-media {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-deep);
  overflow: hidden;
}
.oefening-modal-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oefening-modal-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.modal-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 20px;
}
.modal-video-tekst {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}
.oefening-modal-body {
  padding: 28px;
}
.oefening-modal-naam {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.oefening-modal-sets {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.oefening-modal-uitleg {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .oefening-modal-overlay { padding: 0; align-items: flex-end; }
  .oefening-modal { border-radius: var(--radius-xl) var(--radius-xl) 0 0; max-height: 85vh; }
}

/* Week secties in member area */
.week-sectie {
  margin-bottom: 48px;
}
.week-sectie-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.week-slot-tag {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.week-vergrendeld { opacity: 0.6; }
.week-vergrendeld-kaart {
  background: var(--bg-subtle);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.week-slot-icoon {
  font-size: 32px;
  margin-bottom: 12px;
}
.week-vergrendeld-kaart p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================================
   INTERACTIEVE DAGTRAINING — nieuwe classes
   ============================================================ */

/* Dagblokken op member.html */
.dagblok {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dagblok:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dagblok-voltooid { background: var(--bg-subtle); border-color: var(--accent-light); }
.dagblok-top { display: flex; justify-content: space-between; align-items: center; }
.dagblok-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }
.dagblok-check { font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent-light); padding: 4px 10px; border-radius: var(--radius-full); }
.dagblok-naam { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-primary); }
.dagblok-meta { font-size: 13px; color: var(--text-secondary); }
.dagblok-quote { font-size: 13px; color: var(--text-light); font-style: italic; line-height: 1.5; }
.dagblok-btn { width: 100%; text-align: center; justify-content: center; margin-top: 8px; }

/* Training startpagina */
.training-start-page { min-height: calc(100vh - 68px); display: flex; align-items: center; padding: 48px 0; background: var(--bg-subtle); }
.training-start-kaart { background: white; border-radius: var(--radius-xl); padding: 48px; max-width: 600px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.training-start-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.training-terug { font-size: 14px; color: var(--text-secondary); transition: color 0.15s; }
.training-terug:hover { color: var(--accent); }
.training-week-label { font-size: 12px; font-weight: 600; color: var(--text-light); background: var(--bg-subtle); padding: 4px 12px; border-radius: var(--radius-full); border: 1px solid var(--border); }
.training-start-titel { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 12px; }
.training-start-quote { font-size: 16px; color: var(--text-secondary); font-style: italic; line-height: 1.6; margin-bottom: 32px; }
.training-start-meta { display: flex; gap: 24px; align-items: center; margin-bottom: 32px; padding: 20px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.training-meta-item { text-align: center; }
.training-meta-getal { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; }
.training-meta-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.training-meta-sep { color: var(--border); font-size: 24px; }
.training-oefening-preview { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.training-preview-item { display: flex; align-items: center; gap: 8px; background: var(--bg-subtle); border-radius: var(--radius-md); padding: 8px 12px; font-size: 13px; color: var(--text-secondary); }
.training-preview-foto { width: 32px; height: 32px; border-radius: var(--radius-sm); object-fit: cover; }
.training-preview-placeholder { width: 32px; height: 32px; border-radius: var(--radius-sm); background: var(--bg-deep); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 10px; }
.training-preview-naam { font-weight: 500; }
.training-start-btn { width: 100%; justify-content: center; }

/* Training flow pagina */
.training-flow-page { min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; }
.training-topbar { display: flex; align-items: center; gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--border); background: white; position: sticky; top: 68px; z-index: 50; }
.training-exit-btn { background: none; border: none; font-size: 14px; color: var(--text-secondary); cursor: pointer; font-family: var(--font-body); padding: 6px 12px; border-radius: var(--radius-full); transition: all 0.15s; flex-shrink: 0; }
.training-exit-btn:hover { background: var(--bg-subtle); color: var(--text-primary); }
.training-flow-progress { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.training-flow-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-mid)); border-radius: 3px; transition: width 0.5s ease; }
.training-flow-label { font-size: 13px; color: var(--text-secondary); white-space: nowrap; font-weight: 500; }
.training-flow-body { flex: 1; padding: 48px 0; }
.training-flow-foto { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--radius-xl); }
.training-flow-video-placeholder { width: 100%; height: 280px; background: var(--bg-deep); border-radius: var(--radius-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; margin-bottom: 28px; }
.flow-play-icon { width: 64px; height: 64px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 24px; }
.flow-video-tekst { color: rgba(255,255,255,0.25); font-size: 13px; }
.training-oefening-view { max-width: 560px; margin: 0 auto; }
.training-oefening-naam { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin: 24px 0 8px; }
.training-oefening-sets-label { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.training-oefening-uitleg { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; max-width: 560px; }
.set-indicatoren { display: flex; gap: 10px; margin-bottom: 20px; justify-content: center; }
.set-dot { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--text-secondary); transition: all 0.2s; }
.set-dot.actief { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.set-dot.klaar { border-color: var(--accent); background: var(--accent); color: white; }
.training-set-btn { width: 100%; justify-content: center; font-size: 18px; padding: 18px; }
.training-set-knoppen { display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* Rust timer */
.training-rust-view { max-width: 400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.rust-timer-ring { position: relative; width: 180px; height: 180px; }
.rust-timer-svg { width: 100%; height: 100%; }
.rust-timer-getal { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--text-primary); }
.rust-titel { font-family: var(--font-display); font-size: 28px; font-weight: 600; }
.rust-subtitel { font-size: 15px; color: var(--text-secondary); }

/* Training done pagina */
.training-done-page { min-height: calc(100vh - 68px); display: flex; align-items: center; padding: 48px 0; background: var(--bg-subtle); }
.training-done-kaart { background: white; border-radius: var(--radius-xl); padding: 56px 48px; max-width: 480px; margin: 0 auto; box-shadow: var(--shadow-lg); text-align: center; }
.training-done-icoon { font-size: 56px; margin-bottom: 16px; }
.training-done-titel { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.training-done-naam { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; }
.training-done-tijd { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--accent); margin-bottom: 16px; }
.training-done-quote { font-size: 15px; color: var(--text-secondary); font-style: italic; line-height: 1.6; margin-bottom: 32px; }
.training-done-acties { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* Training startpagina responsive */
@media (max-width: 600px) {
  .training-start-kaart { padding: 32px 20px; border-radius: var(--radius-lg); }
  .training-done-kaart { padding: 40px 24px; }
  .training-start-meta { gap: 16px; }
  .training-flow-body { padding: 24px 0; }
}


/* ============================================================
   MOBIEL FIX — Rusttimer
   ============================================================ */
.rest-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1rem;
  padding: 2rem 1.5rem;
}

.btn-skip-rest {
  margin-top: 1.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius-full);
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}

@media (max-width: 768px) {
  .rest-timer-container {
    min-height: auto;
    padding-top: 3rem;
  }
}

/* ============================================================
   MOBIEL FIX — Member dashboard
   ============================================================ */
@media (max-width: 768px) {
  .member-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .streak-card {
    width: auto;
    align-self: flex-start;
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .streak-card .streak-number {
    font-size: 1.5rem;
  }

  .plan-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    font-size: 0.875rem;
  }

  .plan-stats span {
    white-space: nowrap;
  }

  .days-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   MOBIEL FIX — Footer verbergen op training pagina's
   ============================================================ */
body.no-footer footer {
  display: none !important;
}

/* ============================================================
   BOTTOM NAVIGATION (mobiel)
   ============================================================ */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.7rem;
    font-family: var(--font-body);
    padding: 0.25rem 0;
    transition: color 0.2s;
  }

  .bottom-nav-item.active {
    color: var(--accent);
  }

  .bottom-nav-icon {
    font-size: 1.25rem;
    line-height: 1;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }


  body.no-footer {
    padding-bottom: 0;
  }
}

/* ============================================================
   VRIENDEN PAGINA
   ============================================================ */
.vrienden-invite-sectie {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 1.5rem;
}

.invite-link-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.invite-link-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  background: white;
  outline: none;
}

.feed-lijst {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
}

.feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.feed-tekst {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feed-naam {
  font-weight: 600;
  color: var(--text-primary);
}

.feed-tijd {
  color: var(--text-light);
  font-size: 13px;
}

.feed-leeg {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  margin-top: 1rem;
}

.vrienden-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.vriend-kaart {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
}

.vriend-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.vriend-naam {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.vriend-laatste {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ============================================================
   VOEDING PAGINA (coming soon)
   ============================================================ */
.voeding-page {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.voeding-coming-soon {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.voeding-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.voeding-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.voeding-titel {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.voeding-subtitel {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.voeding-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

/* PWA INSTALL POPUP */
.pwa-popup {
  position: fixed;
  bottom: 80px;
  left: 1rem;
  right: 1rem;
  z-index: 2000;
  display: flex;
  justify-content: center;
  animation: pwa-slide-up 0.3s ease;
}

@keyframes pwa-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pwa-popup-inner {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pwa-popup-icon {
  font-size: 2rem;
  text-align: center;
}

.pwa-popup-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.pwa-popup-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

.pwa-popup-text span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pwa-popup-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.pwa-btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  cursor: pointer;
  font-weight: 500;
}

.pwa-btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  cursor: pointer;
}

.pwa-ios-hint {
  background: var(--accent-light);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .pwa-popup {
    bottom: 2rem;
    left: auto;
    right: 2rem;
    max-width: 360px;
  }
}

/* PWA iOS STAPPEN */
.pwa-ios-hint {
  background: var(--accent-light);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 0.25rem;
}

.pwa-ios-steps {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pwa-ios-step {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pwa-ios-num {
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.pwa-share-icon {
  display: inline-block;
  background: var(--accent);
  color: white;
  border-radius: 0.25rem;
  padding: 0.1rem 0.3rem;
  font-size: 0.75rem;
  font-weight: bold;
  margin: 0 0.1rem;
}

/* VRIENDENPAGINA */
.vrienden-section {
  margin-bottom: 2rem;
}

.vrienden-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.vrienden-card-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.vrienden-card-item:last-child {
  border-bottom: none;
}

.vrienden-avatar {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vrienden-card-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.vrienden-card-name .activity-name {
  color: var(--accent);
}

.vrienden-card-sub {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.vrienden-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.invite-input {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0.75rem;
}
