/* hoe-het-werkt style.css */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --card-bg: #ffffff;
    --bg-alt: #f3f4f6;

    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --orange-50: #fff7ed;
    --orange-600: #ea580c;
    --green-50: #f0fdf4;
    --green-600: #16a34a;
    --dark-50: #f3f4f6;
    --dark-600: #111827;

    --radius: 1.5rem;
    --font-family: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); color: var(--text-main); background: #ffffff; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }
.nav-links { display: flex; gap: 2rem; font-weight: 600; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.nav-login { font-weight: 600; color: var(--text-muted); display: flex; gap: 0.5rem; align-items: center; }
.nav-login:hover { color: var(--primary); background: var(--blue-50); padding: 0.5rem 1rem; border-radius: 0.5rem; margin: -0.5rem -1rem; }
.nav-phone { background: var(--primary); color: white; padding: 0.6rem 1.2rem; border-radius: 9999px; font-weight: 700; display: flex; gap: 0.5rem; align-items: center; }
.nav-phone:hover { background: var(--primary-hover); }

/* Héérlijke Hero */
.hero-section { background: linear-gradient(135deg, var(--bg-alt) 0%, #e0e7ff 100%); padding: 6rem 2rem; text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }
.badge-accent { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.8); border: 1px solid var(--border); padding: 0.4rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.hero-section h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #111827; }
.text-blue { color: var(--primary); }
.hero-subtext { font-size: 1.25rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

/* Bento Grid */
.steps-section { background: var(--bg-alt); padding: 6rem 2rem; border-top: 1px solid var(--border); }
.grid-2-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.step-card { background: var(--card-bg); border-radius: var(--radius); padding: 3rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); border: 1px solid var(--border); transition: transform 0.2s; }
.step-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: #bfdbfe; }
.step-card h3 { font-size: 1.5rem; color: #111827; margin-bottom: 1rem; }
.step-card p { color: var(--text-muted); font-size: 1.125rem; }

.step-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.step-number { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; }
.bg-blue { background: var(--blue-50); color: var(--blue-600); }
.bg-orange { background: var(--orange-50); color: var(--orange-600); }
.bg-green { background: var(--green-50); color: var(--green-600); }
.bg-dark { background: var(--dark-50); color: var(--dark-600); }
.step-count { font-weight: 800; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.05em; }
.text-orange { color: var(--orange-600); }
.text-green { color: var(--green-600); }
.text-dark { color: var(--dark-600); }

/* FAQ Section */
.section-faq { padding: 6rem 2rem; background: white; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 4rem; color: #111827; }
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-card { background: white; border: 1px solid var(--border); border-radius: 1rem; margin-bottom: 1rem; overflow: hidden; font-size: 1.125rem; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; font-weight: 700; color: #111827; cursor: pointer; list-style: none; user-select: none; background: #fdfdfd; transition: background 0.2s; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--bg-alt); }
.faq-question span { display: flex; align-items: center; gap: 1rem; }
.faq-question span i { font-size: 1.25rem; }
.faq-arrow { transition: transform 0.3s; color: var(--text-muted); }
.faq-card[open] .faq-question { border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.faq-card[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer { padding: 1.5rem; color: var(--text-muted); line-height: 1.7; background: white; border-top: 1px solid var(--border); }

/* CTA Area */
.footer-cta { background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%); color: white; padding: 6rem 2rem; border-bottom: 5px solid #1e3a8a; }
.footer-cta h2 { font-size: 2.5rem; font-weight: 800; max-width: 800px; margin: 0 auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn-primary { background: white; color: var(--primary); padding: 1rem 2rem; border-radius: 9999px; font-weight: 800; display: inline-flex; gap: 0.5rem; align-items: center; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--bg-alt); transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; padding: 1rem 2rem; border-radius: 9999px; font-weight: 800; display: inline-flex; gap: 0.5rem; align-items: center; transition: all 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-lg { font-size: 1.125rem; padding: 1.25rem 2.5rem; }

/* Footer */
.footer { background: #111827; color: white; padding: 5rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-logo { height: 50px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.footer-col p { color: #9ca3af; margin-bottom: 1rem; font-size: 0.875rem; }
.footer-col h4 { font-size: 1.125rem; margin-bottom: 1.5rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a, .footer-bottom a { color: #9ca3af; }
.footer-col ul a:hover, .footer-bottom a:hover { color: white; text-decoration: underline; }
.footer-phone { color: #f97316; font-size: 1.25rem; font-weight: 700; display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
.socials a { color: #9ca3af; font-size: 1.5rem; margin-right: 1rem; }
.socials a:hover { color: white; }
.footer-bottom { border-top: 1px solid #374151; margin-top: 4rem; padding-top: 2rem; text-align: center; color: #6b7280; font-size: 0.875rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-section h1 { font-size: 2.5rem; }
    .grid-2-bento { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-phone { justify-content: center; }
}
