:root {
    --bg: #F7F6F2;
    --bg-card: #FFFFFF;
    --bg-dark: #1E2D28;
    --green: #2C5F4A;
    --green-mid: #3D7A60;
    --green-light: #EAF2EE;
    --gold: #B8885A;
    --gold-light: #F5EDE3;
    --text: #1C2826;
    --text-muted: #6B7F79;
    --border: #DDE8E3;
    --shadow-sm: 0 2px 12px rgba(44,95,74,0.07);
    --shadow-md: 0 8px 32px rgba(44,95,74,0.12);
    --radius: 16px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Lora', 'Georgia', 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3 { font-family: var(--font-heading); line-height: 1.25; }

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--green);
}
.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--green);
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--green-light);
    border-radius: 20px;
    padding: 4px 6px;
    border: 1px solid rgba(44,95,74,0.15);
}
.lang-switch a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 16px;
    color: var(--green);
    transition: all 0.2s;
    letter-spacing: 0.02em;
}
.lang-switch a.active { background: var(--green); color: #fff; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(247,246,242,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-lang {
    display: flex;
    gap: 8px;
    padding-top: 0.5rem;
    border-bottom: none;
}
.mobile-lang a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 16px;
    color: var(--text-muted);
    background: var(--green-light);
    border-bottom: none !important;
}
.mobile-lang a.active { background: var(--green); color: #fff; }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(44,95,74,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner { max-width: 760px; position: relative; }
.hero-wave { margin: 0 auto 2.5rem; display: block; opacity: 0.6; }
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: var(--green);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.hero h1 span { display: block; color: var(--gold); }
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--green-mid);
    font-style: italic;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.hero-sub {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
}
.btn-primary {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(44,95,74,0.25);
}
.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(44,95,74,0.32);
}
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--green);
    padding: 13px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--green);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--green);
    margin-bottom: 3rem;
}

/* ─── HERKENNING ─── */
.recognize-section { background: var(--gold-light); }
.recognize-section .section-title { color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; }
.recognize-subtitle { color: var(--green); font-size: clamp(1.4rem, 3vw, 2rem); display: block; }
.recognize-list {
    list-style: none;
    max-width: 640px;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.recognize-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
}
.recognize-item::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.55em;
}
.recognize-end {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--green);
    font-style: italic;
    border-top: 1px solid rgba(184,136,90,0.25);
    padding-top: 1.5rem;
    max-width: 640px;
}

/* ─── HOE HET WERKT ─── */
.how-section { background: var(--green-light); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 40px);
    right: calc(16.66% + 40px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--green);
    font-style: italic;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}
.step:hover .step-number {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step h3 { font-size: 1.2rem; color: var(--green); margin-bottom: 0.75rem; }
.step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; margin: 0 auto; }

/* ─── DAILY CARDS ─── */
.daily-section { background: var(--bg); }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
    width: 44px; height: 44px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--green);
}
.card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.card-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text); margin-bottom: 0.75rem; }
.card-duration { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.card-body { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.card-tip {
    background: var(--green-light);
    border-left: 3px solid var(--green);
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.card-tip strong {
    display: block;
    color: var(--green);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.card-insight {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    padding: 1rem 0;
}

/* ─── STORY ─── */
.story-section { background: var(--bg-dark); color: #E8F2EE; }
.story-section .section-title { color: #E8F2EE; }
.story-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.story-visual { display: flex; justify-content: center; align-items: center; }
.story-circle {
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.story-circle::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 1px solid rgba(184,136,90,0.3);
}
.story-pullquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    color: #fff;
    font-style: italic;
    line-height: 1.35;
    border-left: 3px solid var(--gold);
    padding: 0.25rem 0 0.25rem 1.5rem;
    margin: 0 0 2rem;
}
.story-text p { font-size: 1.05rem; line-height: 1.85; color: rgba(232,242,238,0.85); margin-bottom: 1.25rem; }
.story-text p:first-child { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; font-style: italic; }
.story-tagline {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
    border-top: 1px solid rgba(184,136,90,0.3);
    padding-top: 1rem;
    width: 100%;
}

/* ─── PILLARS ─── */
.pillars-section { background: var(--bg-dark); }
.pillars-section .section-title { color: #E8F2EE; }
.pillars-section .section-label { color: rgba(184,136,90,0.7); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pillar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2.25rem;
    transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.08); }
.pillar-number { font-size: 2.5rem; font-family: var(--font-heading); color: rgba(184,136,90,0.4); line-height: 1; margin-bottom: 1rem; font-style: italic; }
.pillar h3 { font-size: 1.15rem; color: #E8F2EE; margin-bottom: 0.75rem; }
.pillar p { font-size: 0.95rem; color: rgba(232,242,238,0.6); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-section { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
    line-height: 1;
    transition: all 0.25s;
}
.faq-item.open .faq-icon { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem; }

/* ─── SIGNUP ─── */
.signup-section { background: var(--green); text-align: center; }
.signup-section .section-title { color: #fff; margin-bottom: 1.5rem; }
.signup-subtitle { font-weight: normal; font-size: clamp(1.5rem, 3vw, 2rem); opacity: 0.75; }
.signup-what {
    max-width: 360px;
    margin: 0 auto 2rem;
    text-align: left;
}
.signup-what-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.signup-what ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.signup-what ul li {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}
.signup-what ul li::before { content: '\2192'; color: var(--gold); font-weight: bold; flex-shrink: 0; }
.signup-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 1.5rem; }
.signup-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 1rem; justify-content: center; }
.signup-form input {
    flex: 1; padding: 14px 20px; border: none; border-radius: 50px;
    font-size: 0.95rem; outline: none;
    background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(4px);
}
.signup-form input::placeholder { color: rgba(255,255,255,0.55); }
.signup-form button {
    background: var(--gold); color: #fff; border: none;
    padding: 14px 28px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: all 0.2s;
}
.signup-form button:hover { background: #c9955f; transform: translateY(-1px); }
.signup-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.signup-feedback { font-size: 0.85rem; margin-bottom: 1rem; padding: 0.75rem 1rem; border-radius: 8px; }
.signup-feedback-error { background: rgba(255,255,255,0.15); color: #fff; }

/* ─── FOOTER ─── */
footer { background: var(--bg-dark); color: rgba(232,242,238,0.5); text-align: center; padding: 3rem 2rem 2rem; font-size: 0.85rem; }
footer .footer-logo { font-family: var(--font-heading); font-size: 1.2rem; color: rgba(232,242,238,0.8); margin-bottom: 0.5rem; }
footer .footer-tagline { margin-bottom: 1.5rem; }
footer .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
footer .footer-links a { color: rgba(232,242,238,0.4); text-decoration: none; transition: color 0.2s; }
footer .footer-links a:hover { color: rgba(232,242,238,0.8); }
footer .footer-lang { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
footer .footer-lang a { color: rgba(232,242,238,0.4); text-decoration: none; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; transition: color 0.2s; }
footer .footer-lang a:hover, footer .footer-lang a.active { color: rgba(232,242,238,0.9); }
footer .footer-lang span { color: rgba(232,242,238,0.2); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-inner > * { animation: fadeUp 0.7s ease both; }
.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.38s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.5s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.62s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.72s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    section { padding: 4rem 1.25rem; }
    .hero { padding: 7rem 1.25rem 5rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .story-visual { display: none; }
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .steps-grid::before { display: none; }
    .signup-form { flex-direction: column; }
    .signup-form input, .signup-form button { width: 100%; border-radius: 12px; }
    .faq-question { font-size: 0.95rem; padding: 1rem 1.25rem; }
    .faq-item.open .faq-answer { padding: 0 1.25rem 1.25rem; }
}
