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

:root {
    --primary-blue: #4A90E2;
    --secondary-green: #7ED957;
    --accent-cyan: #50C9CE;
    --dark-text: #2C3E50;
    --light-text: #7F8C8D;
    --white: #FFFFFF;
    --light-bg: #F8FAFB;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--light-bg);
    font-weight: 400;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    font-weight: 700;
}

h1 {
    font-weight: 800;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Modern Header with Subtle Gradient */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 251, 0.95) 100%);
    border-bottom: 1px solid rgba(74, 144, 226, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(248, 250, 251, 0.92) 100%);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    box-shadow: 0 1px 0 rgba(74, 144, 226, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(74, 144, 226, 0.12);
}

nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-wrapper {
    position: relative;
    width: auto;
    height: 80px;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-name {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 0.65rem 1.25rem;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
    background: rgba(74, 144, 226, 0.08);
}

.nav-links a.active {
    color: var(--primary-blue);
    background: rgba(74, 144, 226, 0.12);
}

.nav-cta {
    margin-left: 1rem;
}

.nav-cta .cta-button-nav {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.35);
    border: none;
}

.nav-cta .cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.45);
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: var(--dark-text);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* posities van de drie lijnen */
.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-toggle span:nth-child(3) { bottom: 0; }

/* X-state */
.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}
    


/* Cleaner, More Professional Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

/* Single subtle orb */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 201, 206, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
    line-height: 1.15;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.15s both;
}

/* Button group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.35);
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(74, 144, 226, 0.45);
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.25);
}

/* Simple trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item .icon {
    font-size: 1.1rem;
}

/* Visual card - cleaner */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.9s ease;
}

.floating-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card h3 {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.floating-card ul {
    list-style: none;
}

.floating-card li {
    padding: 0.7rem 0;
    color: var(--dark-text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.floating-card li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 900;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Services Section */
.services {
    padding: 4.5rem 2rem 5.5rem;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 0.6rem;
    color: var(--dark-text);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 3.2rem;
    font-weight: 500;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--light-bg);
    padding: 2.2rem;
    border-radius: 26px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(80, 201, 206, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(74, 144, 226, 0.18);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.97rem;
}

/* Workflow Section */
.workflow {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}


.workflow::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(80, 201, 206, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.workflow-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workflow-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.workflow-intro p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

/* Connecting line between steps (desktop only) */
.workflow-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--primary-blue) 0%,
            var(--accent-cyan) 50%,
            var(--primary-blue) 100%);
    opacity: 0.2;
    z-index: 0;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover .step-number {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.35);
}

.workflow-step:hover .step-number::after {
    opacity: 0.3;
}

.step-icon {
    font-size: 3rem;
}

.workflow-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.workflow-step p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Timeline variant (alternative design) */
.workflow-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 70px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
    opacity: 0.2;
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    color: var(--dark-text);
}

.timeline-content p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.timeline-duration {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(74, 144, 226, 0.08);
    color: var(--primary-blue);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .workflow-steps::before {
        display: none;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .step-number {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .timeline-step {
        gap: 1.2rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-step::before {
        left: 24px;
    }
}


/* Blue-themed About Section */
.about {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: floatAbout1 18s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(90px);
    animation: floatAbout2 22s ease-in-out infinite;
}

@keyframes floatAbout1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -30px);
    }
}

@keyframes floatAbout2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 40px);
    }
}

.about-content {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.8rem;
    margin-top: 2.8rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem 5.5rem;
    background: var(--light-bg);
    text-align: center;
}

.cta-box {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    padding: 3.2rem 2.6rem;
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.1rem;
    color: var(--dark-text);
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}


/* FAQ Section */
.faq {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
}

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

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(74, 144, 226, 0.15);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.08);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    color: var(--dark-text);
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.8rem;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 640px) {
    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Footer */
/* Modern, Professional Footer */
footer {
    background: linear-gradient(135deg, #1a2332 0%, #2C3E50 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(80, 201, 206, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

/* Top section with CTA */
.footer-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.footer-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Main footer content */
.footer-main {
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
}

.footer-about {
    grid-column: 1;
}

.footer-logo-text svg,
.footer-logo-text img {
    width: auto;
    height: 95px;
    object-fit: contain;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.93rem;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 0;
}

.footer-section a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-item span:first-child {
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Social Links - Modern Style */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-color: transparent;
    transform: translateY(-3px);
    color: var(--white);
}

/* Newsletter Signup */
.newsletter-form {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Manrope', sans-serif;
    transition: all 0.25s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-cyan);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-cta {
        padding: 2.5rem 1.5rem;
    }

    .footer-cta h3 {
        font-size: 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}


/* Responsive Design */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.3rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem 0;
        gap: 0.3rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        align-items: stretch;
    }

    /* HIER TOEVOEGEN: */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 0 1.5rem;
    }

    .nav-links a {
        padding: 0.9rem 1.5rem;
        border-radius: 10px;
    }

    .nav-cta {
        margin-left: 0;
        padding: 0 1.5rem;
        margin-top: 0.5rem;
    }

    .nav-cta .cta-button-nav {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .social-links {
        justify-content: center;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Floating Button - WereldDigitaal Branding */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.5);
    animation: none;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-text {
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
}

/* Pulse animation with brand colors */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
    }

    50% {
        box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4),
            0 0 0 12px rgba(74, 144, 226, 0.15),
            0 0 0 24px rgba(80, 201, 206, 0.08);
    }
}

/* Collapsed state (icon only on mobile) */
@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        padding: 1rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}

/* Tooltip on hover */
.whatsapp-button::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    padding: 0.5rem 1rem;
    background: var(--dark-text);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-button::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 20px;
    margin-bottom: 4px;
    border: 6px solid transparent;
    border-top-color: var(--dark-text);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover::before,
.whatsapp-button:hover::after {
    opacity: 1;
}

@media (max-width: 640px) {

    .whatsapp-button::before,
    .whatsapp-button::after {
        display: none;
    }
}

/* Notification badge (optional) */
.whatsapp-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #FF6B6B, #FF3B30);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}