/* Frontend Styling - Fietsend naar je werk */

/* Alfabet Font Faces */
@font-face {
    font-family: 'Alfabet';
    src: url('fonts/fonnts.com-Alfabet_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Alfabet';
    src: url('fonts/fonnts.com-Alfabet_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Alfabet';
    src: url('fonts/fonnts.com-Alfabet_SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Alfabet';
    src: url('fonts/fonnts.com-Alfabet_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Alfabet';
    src: url('fonts/fonnts.com-Alfabet_ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Alfabet';
    src: url('fonts/fonnts.com-Alfabet_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary: #83bc37;
    --primary-dark: #6fa02e;
    --primary-light: #a5d662;
    --secondary: #83bc37;
    --accent: #6fa02e;
    --dark: #2D3E1F;
    --text: #333333;
    --text-light: #6b7280;
    --light: #f9fafb;
    --border: #e5e7eb;
    --white: #ffffff;
    --grey-100: #F5F5F5;
    --grey-200: #E8E8E8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alfabet', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: white;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.container-full {
    width: 100%;
    padding: 0;
}

/* Loader - verborgen */
.loader {
    display: none !important;
}

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    position: fixed;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo img {
    height: 200px;
    width: auto;
    content: url('images/FNJW-logo-wit.svg');
    transition: height 0.3s ease;
}

.nav.scrolled .nav-logo img {
    content: url('images/FNJW-logo-groen.svg');
    height: 100px;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav.scrolled .nav-link {
    color: var(--text);
}

.nav.scrolled .nav-link:hover {
    color: var(--primary);
}

.nav.scrolled .logo-text {
    color: var(--dark);
}

.nav-cta {
    padding: 14px 60px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 17px;
    min-width: 180px;
    text-align: center;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 206, 57, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav.scrolled .nav-toggle span {
    background: var(--text);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-link {
    padding: 15px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--primary);
    padding-left: 25px;
}

.mobile-link.mobile-cta {
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    padding: 14px 60px;
    border-radius: 0;
    border: none;
}

.mobile-link.mobile-cta:hover {
    background: var(--primary-dark);
    padding-left: 60px;
}

/* Explanation Section */
.explanation-section {
    padding: 100px 0;
    background: var(--light);
}

.explanation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.explanation-video {
    position: sticky;
    top: 120px;
}

.explanation-video video {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.explanation-content h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.explanation-content h3:first-child {
    margin-top: 0;
}

.explanation-content h3 strong {
    font-weight: 800;
}

.explanation-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 15px;
}

.explanation-content h3.animate-in,
.explanation-content p.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* How it works Section */
.how-it-works-section {
    padding: 100px 0;
    background: white;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.how-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.how-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.how-card:nth-child(1) { transition-delay: 0.1s; }
.how-card:nth-child(2) { transition-delay: 0.2s; }
.how-card:nth-child(3) { transition-delay: 0.3s; }

.how-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.how-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    font-size: 36px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.how-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--dark);
}

.how-card h3 strong {
    font-weight: 800;
}

.how-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('images/FNJW-19-10-25-002.webp');
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-grid {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(166, 206, 57, 0.1);
    border: 1px solid rgba(166, 206, 57, 0.3);
    border-radius: 4px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.1s;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #83bc37;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-cta .btn {
    text-transform: lowercase;
}

.hero-widget {
    position: absolute;
    right: 6vw;
    bottom: 8vh;
    width: 40%;
    max-width: 580px;
    background: rgba(255, 255, 255, 0.85);
    padding: 3.5vh 3.5vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.info-card {
    width: 100%;
    text-align: left;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

.hero-main-title {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-main-title h1 {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    line-height: 0.95;
    color: white;
    text-transform: lowercase;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-research {
    position: absolute;
    bottom: 8vh;
    left: 4vw;
    max-width: 35vw;
    z-index: 10;
}

.hero-research p {
    color: white;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 206, 57, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 18px 42px;
    font-size: 17px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s ease infinite;
    text-decoration: none;
    z-index: 10;
}

.scroll-indicator:hover {
    color: var(--primary-light);
    transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title strong {
    font-weight: 800;
    color: #83bc37;
}

.fnjw-styled {
    color: #83bc37;
    font-weight: 800;
    text-transform: lowercase;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--grey-100);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }
.benefit-card:nth-child(5) { transition-delay: 0.5s; }

.benefit-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(131, 188, 55, 0.2);
    background: white;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    color: white;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* How it works Section */
.how-it-works-section {
    background: linear-gradient(135deg, var(--grey-100) 0%, white 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 35px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(166, 206, 57, 0.3);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--dark);
}

.step-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About/Info Section */
.info-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.info-section .section-title {
    color: white;
}

.info-section .section-title strong {
    color: white;
}

.info-text {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 30px;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-stat {
    text-align: center;
}

.info-stat-value {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.info-stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Target Audience Section */
.target-section {
    background: white;
}

.target-section-green {
    background: linear-gradient(135deg, var(--primary) 0%, #6fa02e 100%);
    position: relative;
    overflow: hidden;
}

.target-section-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.15"/></svg>');
    animation: floatPattern 30s linear infinite;
}

@keyframes floatPattern {
    from { transform: translateY(0); }
    to { transform: translateY(-80px); }
}

.target-section-green .section-title,
.target-section-green .section-subtitle {
    color: white;
}

.target-section-green .section-title strong {
    color: white;
}

.target-section-green .target-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.target-section-green .target-card:nth-child(1) {
    animation-delay: 0.2s;
}

.target-section-green .target-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.target-section-green .target-card:hover {
    background: white;
    border-color: white;
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.target-section-green .target-icon {
    transition: all 0.5s ease;
}

.target-section-green .target-card:hover .target-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.target-card {
    background: linear-gradient(135deg, var(--grey-100) 0%, white 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 3px solid var(--border);
    transition: all 0.3s ease;
}

.target-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.target-icon {
    font-size: 64px;
    margin-bottom: 25px;
    color: var(--primary);
}

.target-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.target-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-email {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: normal;
}

.footer-email:hover {
    color: var(--primary-light);
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-inner img,
.lightbox-inner video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .target-card {
        padding: 40px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    /* Info page mobile layout - stack hero content */
    .info-content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 0 30px !important;
        display: flex;
        flex-direction: column;
    }

    .info-hero {
        padding: 160px 0 60px;
        min-height: auto;
    }

    .info-benefits-box {
        order: 2;
        width: 100%;
    }

    .info-text-box {
        order: 1;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-logo img {
        height: 80px;
    }

    .nav.scrolled .nav-logo img {
        height: 60px;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .info-stats {
        grid-template-columns: 1fr;
    }

    .hero-widget {
        position: static;
        width: 90%;
        max-width: none;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        left: auto;
        right: auto;
    }

    .hero {
        align-items: center;
        padding: 6rem 0 2rem;
        flex-direction: column;
        justify-content: center;
    }

    .hero-grid {
        width: 100%;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-main-title {
        left: 5vw;
    }

    .hero-research {
        position: static;
        width: 90%;
        max-width: none;
        margin: 1.5rem auto 2rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 0.5rem;
        order: 2;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .btn {
        width: 100%;
    }

    .explanation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .explanation-video {
        position: static;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 0 20px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .info-hero {
        padding: 140px 0 50px;
    }

    .info-benefits-box {
        padding: 30px 25px;
        width: 100%;
        order: 2;
    }

    .info-text-box {
        padding: 30px 25px;
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    .info-main-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .info-benefit-item {
        margin-bottom: 18px;
    }

    .info-benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .info-benefit-text strong {
        font-size: 15px;
    }

    .references-hero {
        min-height: 50vh;
        padding: 140px 0 60px;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reference-card {
        padding: 30px 25px;
    }

    .reference-logo {
        width: 160px;
        height: 80px;
    }
}

/* Info Hero Section */
.info-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 200px 0 80px;
}

.info-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/FNJW-19-10-25-002.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.info-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.info-content-grid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
}

/* Responsive breakpoint for medium screens */
@media (max-width: 1200px) {
    .info-content-grid {
        grid-template-columns: 400px 1fr;
        padding: 0 40px;
        gap: 60px;
    }
}

.info-benefits-box {
    background: var(--primary);
    padding: 40px 35px;
    color: white;
}

.info-benefits-box h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: white;
}

.info-benefits-box h2 strong {
    font-weight: 800;
}

.info-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-benefit-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-benefit-text strong {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.info-disclaimer {
    margin-top: 40px;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.9;
}

.info-text-box {
    background: white;
    padding: 60px 50px;
    max-width: 600px;
}

.info-main-title {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text);
}

.info-main-title strong {
    font-weight: 800;
}

.info-title-highlight {
    color: #83bc37;
    font-weight: 800;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 180px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    color: white;
}

/* Page header navigation fix */
.page-header + * .nav,
body:not(.home) .nav {
    position: fixed;
    background: transparent;
}

body:not(.home) .nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body:not(.home) .nav .nav-link,
body:not(.home) .nav .logo-text {
    color: white;
}

body:not(.home) .nav .nav-logo img {
    content: url('images/FNJW-logo-wit.svg');
}

body:not(.home) .nav.scrolled .nav-link,
body:not(.home) .nav.scrolled .logo-text {
    color: var(--text);
}

body:not(.home) .nav.scrolled .nav-logo img {
    content: url('images/FNJW-logo-groen.svg');
}

body:not(.home) .nav .nav-link:hover {
    color: var(--primary-light);
}

body:not(.home) .nav.scrolled .nav-link:hover {
    color: var(--primary);
}

/* References Hero Section */
.references-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 100px;
}

.references-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/FNJW-19-10-25-002.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.references-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.references-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.references-hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.references-hero-title strong {
    font-weight: 800;
}

.references-hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto;
}

/* References Section */
.references-section {
    padding: 100px 0;
    background: white;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.reference-card {
    background: var(--light);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.reference-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(131, 188, 55, 0.2);
    background: white;
}

.reference-logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 10px;
    overflow: hidden;
}

.reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.reference-card:hover .reference-logo img {
    transform: scale(1.15);
}

.reference-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.reference-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.reference-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.reference-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.reference-card:hover .reference-link {
    gap: 12px;
}

.reference-link i {
    transition: transform 0.3s ease;
}

.reference-card:hover .reference-link i {
    transform: translateX(4px);
}

/* Compact Benefits Grid */
.benefits-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-card-compact {
    padding: 25px 20px;
    background: var(--light);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.benefit-icon-compact {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.benefit-card-compact h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card-compact p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

.info-list-simple {
    list-style: none;
    padding: 0;
}

.info-list-simple li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.7;
}

.info-list-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

/* FAQ Styling */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

/* Reference Cards */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.reference-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.reference-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.reference-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    color: white;
}

.reference-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.reference-subtitle {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.reference-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Alfabet', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.6;
}

.form-note a {
    color: var(--primary);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden;
}

/* Alert Messages */
.alert {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.alert i {
    font-size: 24px;
    flex-shrink: 0;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Navigation active state */
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* FAQ Categories & Accordion */
.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.faq-category:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary);
}

.faq-category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--grey-100);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: white;
    box-shadow: 0 4px 15px rgba(131, 188, 55, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
    font-family: 'Alfabet', sans-serif;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 10px;
}

.faq-answer strong {
    font-weight: 700;
    color: var(--dark);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .reference-card {
        padding: 35px 30px;
    }

    .faq-categories {
        gap: 40px;
    }

    .faq-category {
        padding: 30px 25px;
    }

    .faq-category-title {
        font-size: 24px;
        gap: 15px;
    }

    .faq-category-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
    }
}

/* Blog Preview Section (Homepage) */
.blog-section {
    padding: 100px 0;
    background: white;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(131, 188, 55, 0.2);
}

.blog-preview-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--grey-100);
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.1);
}

.blog-preview-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-preview-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-preview-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
}

.blog-preview-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.blog-preview-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 13px;
}

.blog-preview-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

.blog-preview-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-preview-card:hover .blog-preview-link {
    gap: 12px;
}

.blog-preview-link i {
    transition: transform 0.3s ease;
}

.blog-preview-card:hover .blog-preview-link i {
    transform: translateX(4px);
}

/* Responsive Blog Preview */
@media (max-width: 1200px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    /* Referenties onder elkaar op mobiel */
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reference-card {
        padding: 30px 25px;
    }

    .reference-logo {
        width: 180px;
        height: 90px;
        margin-bottom: 20px;
    }

    .reference-title {
        font-size: 20px;
    }

    .reference-description {
        font-size: 14px;
    }
}

/* Footer Legal Links */
.footer-legal-links {
    margin-top: 15px;
    font-size: 14px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-legal-links .separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 640px) {
    .footer-legal-links {
        font-size: 12px;
    }
    
    .footer-legal-links .separator {
        margin: 0 5px;
    }
}
