@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy:       #1B2B6B;
    --blue:       #1A7FD4;
    --blue-light: #EBF4FD;
    --white:      #FFFFFF;
    --off-white:  #F8FAFB;
    --border:     #E2EBF0;
    --text:       #1A1A2E;
    --text-muted: #64748B;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }
ul  { list-style: none; }
a, button { transition: all 0.2s ease; }

/* ===== LAYOUT ===== */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    border-top: 3px solid var(--blue);
    border-bottom: 1px solid var(--border);
}

.site-header.scrolled {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a.active {
    color: var(--navy);
    border-bottom-color: var(--blue);
}

.btn-nav {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-nav:hover {
    background: #243580;
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 24px 20px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: block;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--navy); font-weight: 600; }

/* ===== BUTTONS ===== */

.btn-primary {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-primary:hover {
    background: #243580;
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    line-height: 1;
}

.btn-secondary:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    line-height: 1;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ===== HERO ===== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
    background-image: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-decor-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 127, 212, 0.07) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    z-index: 0;
    pointer-events: none;
}

.hero-decor-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 43, 107, 0.05) 0%, transparent 70%);
    top: 100px;
    right: 50px;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    border-left: 2px solid rgba(255, 255, 255, 0.6);
    padding-left: 12px;
    margin-bottom: 28px;
    line-height: 1;
}

.hero-heading {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-heading .text-blue { color: #7EC8F5; }

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.hero-trust-item .check {
    color: #7EC8F5;
    font-weight: 700;
    font-size: 15px;
}

/* Secondary button on dark hero background */
.hero-buttons .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--white);
    color: var(--white);
}

/* Hero right column */
.hero-right {
    position: relative;
}

/* Hero card */
.hero-card {
    background: var(--blue-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(26, 127, 212, 0.12);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-card-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(26, 127, 212, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-stat { padding: 8px 0; }

.hero-stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.hero-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.45;
}

.hero-stat-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

/* ===== SECTION: INTRO COLUMNS ===== */

.section-intro {
    background: var(--off-white);
    padding: 96px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.intro-col {
    border-top: 2px solid var(--blue);
    padding-top: 28px;
}

.intro-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.intro-col p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== SECTION: HOW IT WORKS ===== */

.section-how {
    padding: 120px 0;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 14px;
    line-height: 1;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 56px;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step {
    flex: 1;
    position: relative;
    padding-top: 28px;
}

.step-num {
    position: absolute;
    top: -14px;
    left: -6px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(26, 127, 212, 0.12);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    font-family: inherit;
}

.step-body {
    position: relative;
    z-index: 1;
}

.step-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

.step-arrow {
    color: var(--border);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 52px;
    display: inline-block;
    padding: 0 8px;
}

/* ===== SECTION: MINI CONTACT ===== */

.section-mini-contact {
    padding: 0 0 120px;
}

.mini-contact-card {
    background: var(--blue-light);
    border-radius: 24px;
    max-width: 860px;
    margin: 0 auto;
    padding: 64px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: start;
}

.mini-contact-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 12px;
    line-height: 1;
}

.mini-contact-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 12px;
}

.mini-contact-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
}

.mini-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.mini-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--blue);
    display: flex;
    align-items: center;
}

.mini-contact-icon svg {
    width: 18px;
    height: 18px;
}

.mini-contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    display: block;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-all;
}

.mini-contact-value-sm {
    font-size: 16px;
}

.mini-contact-hint {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* ===== SECTION: CTA BANNER ===== */

.section-cta {
    background: var(--navy);
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    max-width: 600px;
    letter-spacing: -0.5px;
}

/* ===== PAGE HERO (inner pages) ===== */

.page-hero {
    padding: 72px 0 64px;
    border-bottom: 1px solid var(--border);
}

.page-hero-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 16px;
}

.page-hero-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 16px;
}

.page-hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.65;
}

/* ===== OVER MIJ ===== */

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 80px;
    align-items: start;
}

.photo-wrap {
    position: relative;
}

.photo-decor {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: rgba(26, 127, 212, 0.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p:last-of-type { margin-bottom: 32px; }

.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

/* ===== MONDGEZONDHEID ===== */

.info-section {
    padding: 100px 0;
}

.info-intro-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.info-featured-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 72px;
    display: block;
}

.info-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.info-row:last-child { border-bottom: 1px solid var(--border); }

.info-num {
    font-size: 64px;
    font-weight: 700;
    color: rgba(26, 127, 212, 0.18);
    line-height: 1;
    user-select: none;
    padding-top: 4px;
}

.info-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.info-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== CONTACT ===== */

.contact-section { padding: 100px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}

.contact-detail { margin-bottom: 36px; }
.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 6px;
    line-height: 1;
}

.contact-detail-value {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.55;
}

.contact-detail a {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    display: block;
    line-height: 1.6;
}

.contact-detail a:hover { color: var(--blue); }

/* ===== FORMS ===== */

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1;
}

.form-optional {
    font-weight: 400;
    color: #94A3B8;
    font-size: 12px;
    margin-left: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    appearance: none;
    line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 127, 212, 0.1);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
}

.form-group textarea.rows-3 { min-height: 100px; }

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: block;
    line-height: 1;
}

.btn-submit:hover { background: #243580; color: var(--white); }

.form-success {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
}

.form-error-msg {
    background: #FEF2F2;
    border-left: 4px solid #EF4444;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    color: #991B1B;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */

.site-footer {
    background: #111827;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo-name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
    line-height: 1;
}

.footer-col p,
.footer-col span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    line-height: 1.65;
    margin-bottom: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 4px;
}

.footer-contact-link:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
    .about-grid    { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
    .mini-contact-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    /* decorative elements hidden on mobile */
    .hero-decor-1, .hero-decor-2 { display: none; }

    /* section padding */
    .hero                  { padding: 64px 0; }
    .section-intro         { padding: 64px 0; }
    .section-how           { padding: 64px 0; }
    .section-mini-contact  { padding: 0 0 64px; }
    .section-cta           { padding: 64px 0; }
    .about-section         { padding: 64px 0; }
    .info-section          { padding: 64px 0; }
    .contact-section       { padding: 64px 0; }
    .page-hero             { padding: 48px 0 40px; }

    /* hero */
    .hero-grid       { grid-template-columns: 1fr; gap: 48px; }
    .hero-heading    { font-size: 40px; letter-spacing: -1px; }
    .hero-sub        { font-size: 16px; }
    .hero-card       { padding: 28px; }
    .hero-stat-number { font-size: 44px; }
    .hero-buttons    { flex-direction: column; align-items: flex-start; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; text-align: center; }

    /* page hero */
    .page-hero-heading { font-size: 32px; letter-spacing: -0.5px; }
    .page-hero-sub     { font-size: 16px; }

    /* intro */
    .intro-grid { grid-template-columns: 1fr; gap: 32px; }

    /* steps */
    .steps-row   { flex-direction: column; gap: 40px; }
    .step-arrow  { display: none; }
    .section-title { font-size: 30px; }

    /* mini contact */
    .mini-contact-card    { grid-template-columns: 1fr; gap: 32px; padding: 36px 24px; }
    .mini-contact-heading { font-size: 26px; }
    .mini-contact-sub     { margin-bottom: 24px; }

    /* cta */
    .cta-inner   { flex-direction: column; align-items: flex-start; gap: 28px; }
    .cta-heading { font-size: 26px; }

    /* about */
    .about-photo { height: 300px; }

    /* mondgezondheid */
    .info-row         { grid-template-columns: 48px 1fr; gap: 20px; padding: 36px 0; }
    .info-num         { font-size: 44px; }
    .info-featured-image { height: 240px; margin-bottom: 48px; }

    /* footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    /* nav */
    .nav-right .nav-links { display: none; }
    .nav-right .btn-nav   { display: none; }
    .hamburger            { display: flex; }
}

@media (max-width: 480px) {
    .mini-contact-card  { padding: 28px 18px; border-radius: 16px; }
    .mini-contact-value { font-size: 15px; }
    .mini-contact-value-sm { font-size: 14px; }
}
