
:root {
    --teal-dark: #2e6b62;
    --teal-mid: #4a9088;
    --teal-light: #7bbcb3;
    --teal-pale: #d6edea;
    --blue-soft: #7aaec4;
    --blue-pale: #d8eaf2;
    --sand: #f7f4ef;
    --sand-dark: #ede8df;
    --text-dark: #1c2e2b;
    --text-mid: #3d5a56;
    --text-light: #6b8c87;
    --white: #ffffff;
    --radius: 12px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--sand);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #f7f4ef;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
}

.nav-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: -0.3px;
}

    .nav-logo-text span {
        position: relative;
        font-weight: 300;
        color: var(--teal-mid);
    }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        color: var(--text-mid);
        letter-spacing: 0.3px;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--teal-dark);
        }

.nav-cta {
    background: var(--teal-dark);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
}

    .nav-cta:hover {
        background: var(--teal-mid) !important;
    }

/* ── ALERT ────────────────────────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
    min-height: 96vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5vw 60px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        right: -120px;
        top: -80px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--teal-pale) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--teal-dark);
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero h5 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--teal-dark);
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--teal-mid);
}

.hero-lead {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
    background: var(--teal-dark);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--teal-mid);
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    color: var(--teal-dark);
    padding: 14px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--teal-mid);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-block;
}

    .btn-outline:hover {
        background: var(--teal-pale);
    }

/* Hero illustration */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.4s both;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(46,107,98,0.12);
    max-width: 480px;
    width: 100%;
    position: relative;
}

    .hero-card::after {
        content: '';
        position: absolute;
        bottom: -18px;
        right: -18px;
        width: 100%;
        height: 100%;
        background: var(--teal-pale);
        border-radius: 24px;
        z-index: -1;
    }

.hero-card-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

    .hero-card-logo svg {
        width: 52px;
        height: 52px;
    }

.hero-card-logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.1;
}

    .hero-card-logo-text span {
        display: block;
        font-weight: 300;
        color: var(--teal-mid);
        font-size: 22px;
    }

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-stat {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 16px;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--teal-dark);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

/* ── SECTION SHARED ────────────────────────────────────────────────────────── */
section {
    padding: 88px 5vw;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal-mid);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-lead {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.75;
}
.section-lead2 {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 900px;
    line-height: 1.75;
}

/* ── OVER KLASREGIE ────────────────────────────────────────────────────────── */
.about {
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-inner2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.about-visual {
    position: relative;
}

.about-bg-shape {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 160px;
    height: 160px;
    background: var(--teal-pale);
    border-radius: 50%;
    z-index: 0;
}

.about-expertise {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.expertise-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sand);
    border-left: 3px solid var(--teal-mid);
    padding: 13px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 400;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .expertise-tag:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 16px rgba(46,107,98,0.1);
    }

    .expertise-tag strong {
        color: var(--teal-dark);
        font-weight: 500;
    }

.expertise-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-mid);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── DIENSTEN ── */
.services {
    background: var(--sand);
}

.services-header {
    max-width: 1100px;
    margin: 0 auto 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(46,107,98,0.13);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
        border-radius: 20px 20px 0 0;
    }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

    .service-icon svg {
        width: 26px;
        height: 26px;
    }

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
}

/* ── WERKWIJZE ── */
.method {
    background: var(--teal-dark);
    color: var(--white);
}

    .method .section-title {
        color: var(--white);
    }

    .method .section-label {
        color: var(--teal-light);
    }

    .method .section-lead {
        color: rgba(255,255,255,0.75);
    }

.method-header {
    max-width: 1100px;
    margin: 0 auto 60px;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}

.method-step {
    padding: 40px 30px;
    background: transparent;
    position: relative;
    transition: background 0.2s;
}

    .method-step:hover {
        background: rgba(255,255,255,0.05);
    }

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.method-step h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.method-step p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    font-weight: 300;
}

/* ── DOELGROEP ── */
.audience {
    background: var(--white);
}

.audience-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-quote {
    background: var(--teal-pale);
    border-radius: 20px;
    padding: 44px 40px;
    position: relative;
}

    .audience-quote::before {
        content: '"';
        font-family: 'Playfair Display', serif;
        font-size: 120px;
        color: var(--teal-light);
        position: absolute;
        top: -10px;
        left: 24px;
        line-height: 1;
        opacity: 0.5;
    }

    .audience-quote p {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-style: italic;
        color: var(--teal-dark);
        line-height: 1.6;
        position: relative;
        z-index: 1;
        padding-top: 32px;
    }

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

    .audience-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 15px;
        color: var(--text-mid);
        line-height: 1.6;
        font-weight: 300;
    }

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .check-icon svg {
        width: 12px;
        height: 12px;
    }

/* ── CONTACT ── */
.contact {
    background: var(--sand);
}

.contact-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

    .contact-inner .section-lead {
        margin: 0 auto 48px;
    }

.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(46,107,98,0.08);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-mid);
    text-transform: uppercase;
}

input, textarea, select {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--sand);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    resize: none;
}

    input:focus, textarea:focus, select:focus {
        border-color: var(--teal-mid);
        box-shadow: 0 0 0 3px var(--teal-pale);
    }

textarea {
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    background: var(--teal-dark);
    color: var(--white);
    border: none;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

    .btn-submit:hover {
        background: var(--teal-mid);
        transform: translateY(-1px);
    }

/* ── FOOTER ── */
footer {
    background: var(--teal-dark);
    color: rgba(255,255,255,0.7);
    padding: 52px 5vw 36px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

    .footer-brand-text span {
        font-weight: 300;
        color: var(--teal-light);
    }

.footer-tagline {
    font-size: 13px;
    max-width: 260px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 14px;
        font-weight: 300;
        transition: color 0.2s;
    }

.no-underline {
    text-decoration: none;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 28px;
    text-align: center;
    font-size: 13px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-lead {
        margin: 0 auto 40px;
    }

    .hero-visual {
        display: none;
    }

    .about-inner, .audience-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .method-steps {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .method-steps {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }
}

/* ── HAMBURGER MENU ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto; /* duwt de knop naar rechts */
    z-index: 101;
}

    .nav-toggle span {
        display: block;
        width: 28px; /* breder */
        height: 3px; /* dikker */
        background: var(--teal-dark);
        border-radius: 3px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(247,244,239,0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--sand-dark);
        padding: 24px 5vw 32px;
        gap: 0;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
    }

        .nav-links.open {
            transform: translateY(0);
        }

        .nav-links li a {
            display: block;
            padding: 14px 0;
            font-size: 17px;
            border-bottom: 1px solid var(--sand-dark);
            color: var(--text-mid);
        }

        .nav-links li:last-child a {
            border-bottom: none;
        }

        .nav-links .nav-cta {
            margin-top: 16px;
            display: inline-block;
            text-align: center;
            padding: 12px 28px;
        }
}

