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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

:root {
    --primary: #04F1AF;
    --primary-dark: #00d99d;
    --primary-light: rgba(4, 241, 175, 0.1);
    --background: #FFFFFF;
    --text: #111827;
    --text-light: #4B5563;
    --border: #E5E7EB;
    --max-width: 1240px;
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: var(--background);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000000;
    padding: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #000000;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.primary-button:hover {
    transform: scale(1.03);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: #F9FAFB;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h1 {
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header p {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 5px 10px rgba(0,0,0,0.1),
        0 15px 25px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-icon i {
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 1rem;
}

/* Integrations Section */
.integrations-section {
    padding: 120px 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.integration-card {
    text-align: center;
    padding: 2rem;
}

.integration-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--primary);
    font-size: 1.25rem;
}

.benefits-image img {
    width: 100%;
    border-radius: 12px;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: translateY(-8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--primary);
}

/* Modern CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--primary-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    transform: translateX(8px);
    background: var(--primary);
}

.cta-feature i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.cta-feature:hover i {
    color: var(--background);
}

.cta-feature span {
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.cta-feature:hover span {
    color: var(--background);
}

.cta-section .primary-button {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-feature {
        padding: 0.75rem 1rem;
    }
    
    .cta-content {
        padding: 0 1rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-content .primary-button,
    .hero-content .secondary-button {
        width: 80%;
        max-width: 250px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-content .primary-button,
    .hero-content .secondary-button {
        width: 90%;
        max-width: 200px;
    }
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.15rem;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.footer-links h4, .footer-social h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer p {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #F9FAFB !important;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        height: 45px;
    }
}

/* Zorg dat alle primary color headers Montserrat Black Italic zijn */
.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    color: var(--primary);
}

/* Algemeen voor alle primary color elementen */
.hero-label,
.section-header h2,
.stat-number,
.benefit-content h3,
.step-card h3,
.feature-content h4,
.intro-content h2,
.audience-card h3,
.start-text h2,
.footer-links h4,
.benefit-icon i,
.step-number,
.audience-icon i,
.feature-item i,
[class*="primary"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* Services Section styling */
.services-section {
    padding: 120px 0;
    background: var(--background);
    position: relative;
    overflow: visible;
}

.background-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.15;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .section-header {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.services-section .section-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

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

.service-card:nth-child(odd) {
    transition-delay: 0.2s;
}

.service-card:nth-child(even) {
    transition-delay: 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--primary);
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(2px);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .services-section .section-header h1 {
        font-size: 2.5rem;
    }
    
    .background-label {
        font-size: 5rem;
    }
}

/* Header styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Logo styling */
.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Centrale navigatie */
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.nav-center a {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
    height: 40px;
    transition: all 0.3s ease;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    background: #ffffff;
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0.5rem);
}

.dropdown-menu li {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dropdown-menu li:hover {
    background: var(--primary-light);
}

.dropdown-menu a {
    color: var(--text);
    font-size: 0.9rem;
    display: block;
    white-space: nowrap;
}

/* Knoppen rechts */
.nav-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
    height: 40px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-button:hover i {
    transform: translateY(-1px);
}

.nav-button:first-child {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-button:last-child {
    background: var(--primary);
    color: #000000;
}

.nav-button:hover {
    transform: translateY(-2px);
}

/* Scrolled state */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-center a {
    color: var(--text);
}

.header.scrolled .nav-button:first-child {
    background: var(--primary-light);
    color: var(--text);
}

/* Hover effecten */
.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

/* Responsive styling */
@media (max-width: 1024px) {
    .navbar {
        grid-template-columns: 160px 1fr 180px;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-center {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        grid-template-columns: auto auto;
        padding: 1rem;
    }

    .nav-center, .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    /* Mobile menu styling */
    .nav-center.active, .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background);
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Over Ons Section - Modern Styling */
.about-section {
    padding: 120px 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.about-content .section-header h1 {
    white-space: nowrap;
    display: inline-block;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
}

.about-content .section-header {
    text-align: left;
    margin: 0 0 2rem 0;
}

.about-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    background: var(--primary);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: var(--background);
}

.feature-item span {
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.feature-item:hover span {
    color: var(--background);
}

.about-image {
    position: relative;
    padding: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 24px;
}

.image-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, var(--primary-light) 0%, transparent 70%);
    border-radius: 24px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .feature-item {
        padding: 0.75rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

/* Why Us Section - Modern & Clean */
.why-us-section {
    padding: 120px 0;
    background: var(--background);
    position: relative;
}

.why-us-section .section-header h1 {
    white-space: nowrap;
    display: inline-block;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-us-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 241, 175, 0.15);
}

.why-us-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.why-us-card:hover .card-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.why-us-card:hover .card-icon i {
    color: var(--background);
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 80px 0;
    }
    
    .why-us-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .card-icon i {
        font-size: 1.75rem;
    }
}

/* Partners Section - Modern Slider */
.partners-section {
    padding: 120px 0;
    background: var(--background);
    overflow: hidden;
}

.partners-section .section-header h1 {
    white-space: nowrap;
    display: inline-block;
}

.partner-slider {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 4rem;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(200px * 20);
    animation: scroll 40s linear infinite;
    gap: 2rem;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10));
    }
}

.slide {
    min-width: 200px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.slide img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.slide span {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.slide:hover span {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary);
}

/* Add gradient overlay effect */
.partner-slider::before,
.partner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-section {
        padding: 80px 0;
    }

    .partner-slider {
        height: 120px;
    }

    .slide {
        min-width: 160px;
        height: 120px;
        padding: 1rem;
    }

    .slide img {
        height: 45px;
    }

    .slide span {
        font-size: 0.8rem;
    }

    .slider-track {
        width: calc(160px * 20);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 10));
        }
    }
}

/* Add smooth shadow effect */
.slide {
    position: relative;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.slide:hover::after {
    width: 80%;
}

/* Add floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.slide:hover {
    animation: float 2s ease-in-out infinite;
}

/* Add subtle glow effect on hover */
.slide:hover {
    box-shadow: 0 0 20px rgba(4, 241, 175, 0.1);
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--background);
    border-radius: 24px;
    padding: 3rem;
    width: 90%;
    max-width: 700px;
    position: relative;
    margin: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary);
}

.modal-close i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.modal-close:hover i {
    color: var(--background);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 16px;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }

    .modal-header {
        margin-bottom: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .primary-button {
        width: 100%;
        padding: 1rem;
    }
}

/* Form Select Styling */
.form-group select {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    width: 100%;
    background: var(--background);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234B5563' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-4-4h8l-4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group select:hover {
    border-color: var(--primary);
}

/* Styling voor de options */
.form-group select option {
    padding: 1rem;
}

.form-group select option:first-child {
    color: var(--text-light);
}

/* Typing effect styling */
.typing-text {
    color: var(--primary);
    border-right: 3px solid var(--primary);
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
}

/* Navigatie links in gescrolde staat (witte header) */
.header.scrolled .nav-links a {
    color: #000000;
}

/* Logo aanpassing */
.logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Wit logo op zwarte achtergrond */
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    filter: none; /* Origineel logo op witte achtergrond */
}

/* Contact button styling */
.nav-button {
    background: var(--primary);
    color: #000000 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-dark);
}

/* Hover states */
.nav-links a:hover {
    color: var(--primary);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

.logo-dark {
    display: none;
}

.logo-white {
    display: block;
}

/* Logo switch on scroll */
.header.scrolled .logo-dark {
    display: block;
}

.header.scrolled .logo-white {
    display: none;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 70px;
    }
}

/* Footer logo aanpassing */
.footer-logo {
    height: 100px; /* Verhoogd van 40px naar 50px */
    width: auto;
    margin-bottom: 1rem;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .footer-logo {
        height: 45px; /* Verhoogd van 35px naar 45px */
    }
}

/* Hover effect voor menu items */
.nav-links a:not(.nav-button):hover {
    color: var(--primary);
    transform: translateY(-2px);
}

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

.nav-links a:not(.nav-button):hover::after {
    width: 100%;
}

/* Contact knop styling */
.nav-button {
    background: var(--primary);
    color: #000000 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Hover effect voor contact knop */
.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(4, 241, 175, 0.3);
    background: var(--primary-dark);
}

.nav-button:active {
    transform: translateY(-1px);
}

/* Pulse animatie voor de contact knop */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(4, 241, 175, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(4, 241, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(4, 241, 175, 0);
    }
}

.nav-button:hover {
    animation: pulse 1.5s infinite;
}

/* CTA Button styling */
.primary-button, .secondary-button {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Primary CTA button hover effect */
.primary-button {
    background: var(--primary);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.primary-button:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(4, 241, 175, 0.3);
}

.primary-button:active {
    transform: translateY(-1px);
}

/* Secondary CTA button hover effect */
.secondary-button {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
}

.secondary-button:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 6px 15px rgba(4, 241, 175, 0.1);
}

.secondary-button:active {
    transform: translateY(-1px);
}

/* Pulse animation voor primary button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(4, 241, 175, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(4, 241, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(4, 241, 175, 0);
    }
}

.primary-button:hover {
    animation: pulse 1.5s infinite;
}

/* Loader styling */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--primary);
    animation: loading 1.5s infinite;
}

/* Animaties */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes loading {
    0% { transform: translateX(-200%); }
    100% { transform: translateX(300%); }
}

/* Hide loader after page load */
.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Voorkom body scroll wanneer modal open is */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile menu styling */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background-color: #000000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
} 

/* Service Tree Styling */
.service-tree {
    margin: 2rem 0;
    border-left: 2px solid var(--border);
    padding-left: 1.5rem;
}

.tree-branch {
    margin-bottom: 2rem;
    position: relative;
}

.tree-branch::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 1rem;
    width: 1rem;
    height: 2px;
    background: var(--border);
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Branch colors */
.description .branch-header i {
    color: #3B82F6; /* Blauw */
}

.benefits .branch-header i {
    color: #10B981; /* Groen */
}

.use-cases .branch-header i {
    color: #F97316; /* Oranje */
}

.tree-branch ul {
    list-style: none;
    margin-left: 1rem;
}

.tree-branch ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.tree-branch ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 0.75rem;
    height: 2px;
    background: var(--border);
}

/* Service CTA */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #000000;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-cta:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(4, 241, 175, 0.3);
    color: #000000;
}

.service-cta:active {
    transform: scale(0.98);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .service-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* Cloud Types Styling */
.cloud-options {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cloud-option {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.cloud-option:hover {
    transform: translateX(8px);
    background: var(--primary);
    color: white;
}

.cloud-option h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.cloud-option:hover h5 {
    color: white;
}

.cloud-option p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.cloud-option:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.cloud-option ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cloud-option ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.cloud-option:hover ul li {
    color: rgba(255, 255, 255, 0.9);
}

.cloud-option ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.cloud-option:hover ul li::before {
    color: white;
}

/* Maak de laatste kaart (Cloud Solutions) volledige breedte */
.service-card:last-child {
    grid-column: auto;
}

/* Responsive aanpassing */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Verwijder onderlijning van alle knoppen */
.primary-button,
.secondary-button,
.nav-button,
.service-cta,
.service-link,
.nav-links a {
    text-decoration: none;
}

/* Verwijder ook de hover underline effect van menu items */
.nav-links a:not(.nav-button)::after {
    display: none;
}

.nav-links a:not(.nav-button):hover::after {
    display: none;
} 

/* Mindmap Styling */
.approach-section {
    padding: 120px 0;
    background: var(--background);
}

.mindmap {
    margin-top: 4rem;
    position: relative;
}

.mindmap-center {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.mindmap-branches {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.mindmap-branches::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2rem;
    background: var(--primary);
}

.mindmap-node {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mindmap-node.main {
    background: var(--primary);
    color: var(--background);
    padding: 2rem;
    border: none;
}

.mindmap-node i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.mindmap-node.main i {
    color: var(--background);
}

.mindmap-node span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mindmap-node p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.mindmap-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(4, 241, 175, 0.1);
}

/* Responsive aanpassingen */
@media (max-width: 1024px) {
    .mindmap-branches {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mindmap-branches {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mindmap-node {
        padding: 1.25rem;
    }
} 

/* 1. Subtiele hover effect voor knoppen */
.primary-button {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.primary-button:hover {
    transform: scale(1.03);
}

/* 2. Icoon rotatie bij hover */
.service-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: rotate(-8deg);
}

/* 3. Smooth fade-in voor kaarten */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* 4. Pulserende effect voor CTA's */
.cta-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 5. Loading dots voor submit buttons */
.submit-button.loading::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
}

/* 6. Smooth page transitions */
.page-transition {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* 7. Menu item hover effect */
.nav-links a {
    position: relative;
}

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

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

/* 8. Card stacking effect on hover */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 5px 10px rgba(0,0,0,0.1),
        0 15px 25px rgba(0,0,0,0.05);
}

/* SLA Packages Styling Update */
.sla-packages {
    display: grid;
    gap: 1rem;
    margin: 1rem 1.5rem;
}

.sla-package {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.sla-package h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.sla-package h4 i {
    color: var(--primary);
}

.sla-package p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.sla-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 1rem 1.5rem 0;
    font-style: italic;
}

/* Hover effects */
.sla-package:hover {
    transform: translateY(-2px);
    background: var(--primary);
}

.sla-package:hover h4,
.sla-package:hover h4 i,
.sla-package:hover p {
    color: white;
}

/* Responsive aanpassing */
@media (min-width: 768px) {
    .sla-packages {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* WhatsApp Widget Styling */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 500;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-button {
        padding: 0.75rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button i {
        font-size: 1.75rem;
    }
}

/* Why Cloud Section Styling */
.why-cloud-section {
    padding: 120px 0;
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%; /* Zorgt voor gelijke hoogte */
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1; /* Zorgt dat de ruimte tussen p en ul gelijk verdeeld wordt */
}

.benefit-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-points li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.benefit-points li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 0.75rem;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .why-cloud-section {
        padding: 80px 0;
    }

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

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }
}

/* Algemene mobiele aanpassingen */
@media (max-width: 768px) {
    /* Header & Navigatie */
    .nav-links {
        padding: 1rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Diensten Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Partners Section */
    .partner-slider {
        height: 120px;
    }

    .slide {
        min-width: 160px;
        height: 120px;
        padding: 1rem;
    }

    .slide img {
        height: 45px;
    }

    .slide span {
        font-size: 0.8rem;
    }

    .slider-track {
        width: calc(160px * 20);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 10));
        }
    }

    /* Over Ons Section */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ Section */
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 2rem;
    }

    /* Contact Modal */
    .modal-content {
        width: 90%;
        padding: 1.5rem;
    }

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

/* Extra kleine schermen */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-content {
        padding: 2rem 1rem;
    }

    .partner-slider {
        grid-template-columns: 1fr;
    }
}

/* Scroll-based animations */
.services-section.in-view .background-label {
    animation: float 8s ease-in-out infinite;
}

.services-section.in-view .service-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Contact Page Styling */
.contact-section {
    padding: 120px 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--primary-light);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 500;
    color: var(--text);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .primary-button {
    margin-top: 1rem;
    width: fit-content;
}

.map-section {
    padding: 0;
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--background), transparent);
    pointer-events: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        position: static;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        gap: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-item i {
        padding: 0.75rem;
        font-size: 1.25rem;
    }

    .map-container {
        height: 350px;
    }
}

/* Update mobile menu styling */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.mobile-menu-header .logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.menu-close {
    background: var(--primary-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.mobile-nav {
    margin-bottom: 40px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

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

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    display: block;
    padding: 16px 0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.mobile-nav a:hover::after {
    width: 40px;
}

.mobile-nav-actions {
    position: fixed;
    bottom: 32px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.3s;
}

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

.mobile-nav-actions .login-link {
    display: block;
    padding: 16px;
    text-align: center;
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-actions .login-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.mobile-nav-actions .cta-button {
    display: block;
    padding: 16px;
    text-align: center;
    background: var(--primary);
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-actions .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(4, 241, 175, 0.3);
}

/* Section Headers Centering */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h1 {
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header p {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

/* Specific section adjustments */
.why-us-section .section-header,
.about-section .section-header,
.partners-section .section-header {
    width: 100%;
    justify-content: center;
    margin-bottom: 3rem;
}

.why-us-section .section-header h1,
.about-section .section-header h1,
.partners-section .section-header h1 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 1rem;
}

.why-us-section .section-header h1::after,
.about-section .section-header h1::after,
.partners-section .section-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-page .social-links a,
.home-page .social-links a i,
.contact-page .social-links a,
.contact-page .social-links a i {
    color: #000;
}
.home-page .social-links a:hover,
.home-page .social-links a:hover i,
.contact-page .social-links a:hover,
.contact-page .social-links a:hover i {
    color: var(--primary);
}

.footer-grid-4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0 1.5rem 0;
  flex-wrap: wrap;
}
.footer-section {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 160px;
}
.footer-brand {
  align-items: flex-start;
  text-align: left;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
.footer-brand p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: left;
}
.footer-links ul, .footer-links2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.footer-links li, .footer-links2 li {
  margin-bottom: 0.7rem;
}
.footer-links a, .footer-links2 a, .footer p {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 1.05rem;
  font-weight: 500;
}
.footer-links a:hover, .footer-links2 a:hover {
  color: var(--primary);
}
.footer-section.footer-links2 a,
.footer-section.footer-links2 a:link,
.footer-section.footer-links2 a:visited,
.footer-section.footer-links2 a:active,
.footer-section.footer-links2 a:focus {
  color: #fff !important;
}
.footer-section.footer-links2 a:hover {
  color: var(--primary) !important;
}
.footer-social {
  align-items: center;
}
.footer-social .social-links {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  margin-top: 0.5rem;
}
.footer-social .social-links a {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .footer-grid-4 {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .footer-section {
    min-width: 0;
    margin-bottom: 1.2rem;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-social .social-links {
    justify-content: center;
  }
}

.footer-vertical-modern {
  background: #000;
  color: #fff;
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 2px solid #111;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.footer-vm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 1rem 1.5rem 1rem;
}
.footer-vm-logo {
  max-width: 120px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 16px #04F1AF33);
}
.footer-vm-socials {
  display: flex;
  gap: 1.3rem;
  margin-bottom: 2.2rem;
}
.footer-vm-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  background: transparent;
  transition: border-color 0.18s, color 0.18s, box-shadow 0.18s, background 0.18s;
  box-shadow: 0 2px 16px 0 rgba(4,241,175,0.06);
}
.footer-vm-socials a:hover,
.footer-vm-socials a:focus {
  border-color: var(--primary, #04F1AF);
  color: var(--primary, #04F1AF);
  background: #111;
  box-shadow: 0 0 12px 2px #04F1AF55;
}
.footer-vm-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  justify-content: center;
}
.footer-vm-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s, text-shadow 0.18s;
  opacity: 0.92;
}
.footer-vm-nav a.active,
.footer-vm-nav a:hover,
.footer-vm-nav a:focus {
  color: var(--primary, #04F1AF);
  border-bottom: 2px solid var(--primary, #04F1AF);
  text-shadow: 0 2px 12px #04F1AF55;
  opacity: 1;
}
.footer-vm-slogan {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.footer-vm-bottom {
  text-align: center;
  font-size: 1.08rem;
  color: #fff;
  opacity: 1;
  padding: 1.2rem 0 0.5rem 0;
  border-top: 1px solid #111;
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
  width: 100%;
}
.footer-btw {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .footer-vm-inner {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .footer-vm-nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }
  .footer-vm-socials {
    margin-bottom: 1.5rem;
  }
}

/* --- Typografie consistentie voor hele site (OVERSCHRIJFT ALLES) --- */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    font-style: italic !important;
}

.primary-button, .cta-button, .service-cta, .audience-cta, .nav-button {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

p, .section-header p, .about-text p, .card-content p, .feature-item span, .footer-vm-bottom p, .footer-vm-slogan {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.main-nav a, .nav-links a, .dropdown-toggle, .dropdown-item, .mobile-nav a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

.footer-vertical-modern,
.footer-vm-inner,
.footer-vm-logo,
.footer-vm-socials,
.footer-vm-socials a,
.footer-vm-nav a,
.footer-vm-slogan,
.footer-vm-bottom,
.footer-btw {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* --- Typografie: Alleen titels en knoppen Montserrat, rest standaard (Inter/Arial) --- */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    font-style: italic !important;
}

.primary-button, .cta-button, .service-cta, .audience-cta, .nav-button {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

/* Reset voor overige tekst naar standaard font (Inter/Arial) */
p, .section-header p, .about-text p, .card-content p, .feature-item span, .footer-vm-bottom p, .footer-vm-slogan,
.main-nav a, .nav-links a, .dropdown-toggle, .dropdown-item, .mobile-nav a,
.footer-vertical-modern, .footer-vm-inner, .footer-vm-logo, .footer-vm-socials, .footer-vm-socials a, .footer-vm-nav a, .footer-vm-slogan, .footer-vm-bottom, .footer-btw {
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* --- Navigatie in menubalk altijd Montserrat --- */
.main-nav a, .nav-links a, .dropdown-toggle, .dropdown-item, .mobile-nav a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

