/* Homepagina specifieke stijlen */

:root {
    --java: #14d7c0;
    --cerulean: #0a96c8;
    --mountain-meadow: #1abc9c;
    --cerulean-secondary: #0b7ea5;
    --elephant: #103348;
    --surface-color: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #95a5a6;
    --border-color: #e1e8ed;
    --border-light: #f1f2f6;
    --primary-light: #e8f8f5;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo vertical centering fix */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-image {
    height: 20px;
    width: auto;
    display: block; /* voorkomt extra ruimte onder de image */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--java);
}

.nav-link.active {
    color: var(--java);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    border-radius: 2px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.btn-login-nav {
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: var(--radius);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-login-nav:hover::before {
    left: 100%;
}

.btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
    color: white !important;
}

.btn-login-nav.active {
    background: linear-gradient(135deg, var(--mountain-meadow), var(--cerulean-secondary));
    box-shadow: 0 2px 8px rgba(20, 215, 192, 0.4);
}

.btn-login-nav.active::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Sectie */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%23103348" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 98px 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: white;
    color: var(--java);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--java);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.preview-header {
    background: var(--elephant);
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.preview-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.preview-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.preview-card-content h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.preview-card-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Features Sectie */
.features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.features-grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--java);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Sectie */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--elephant);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--java);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--java);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--java);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .hero-image {
        display: none;
    }
}

@media (max-width: 1024px) {
    /* Full-screen overlay menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        padding: 1rem;
        box-sizing: border-box;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-item {
        margin: 0;
        width: 100%;
        max-width: min(400px, 90vw);
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
        box-sizing: border-box;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Gestaggerde animaties */
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.4s; }

    /* Responsive navigatie links */
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        color: var(--text-primary) !important;
        font-weight: 600;
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        text-decoration: none;
        border-radius: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        background: transparent;
        border: 2px solid transparent;
        width: 100%;
        box-sizing: border-box;
        min-height: 60px;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--java), var(--cerulean));
        transition: left 0.4s ease;
        z-index: -1;
    }

    .nav-link:hover {
        color: white !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(20, 215, 192, 0.3);
        border-color: var(--java);
    }

    .nav-link:hover::before {
        left: 0;
    }

    .nav-link.active {
        background: linear-gradient(135deg, var(--java), var(--cerulean));
        color: white !important;
        box-shadow: 0 8px 25px rgba(20, 215, 192, 0.4);
        border-color: var(--java);
    }

    .nav-link i {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        width: 24px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .nav-link:hover i {
        transform: scale(1.2);
    }

    /* Responsive login button */
    .btn-login-nav {
        background: linear-gradient(135deg, var(--java), var(--cerulean)) !important;
        color: white !important;
        margin-top: 1rem;
        padding: 1.25rem 1.5rem !important;
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(20, 215, 192, 0.4);
        border: 2px solid transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        max-width: min(400px, 90vw);
        box-sizing: border-box;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .btn-login-nav:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(20, 215, 192, 0.6);
        color: white !important;
    }

    /* Responsive hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: clamp(44px, 12vw, 50px);
        height: clamp(44px, 12vw, 50px);
        background: linear-gradient(135deg, var(--java), var(--cerulean));
        border: none;
        border-radius: 12px;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 1000;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(20, 215, 192, 0.3);
    }

    .hamburger:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(20, 215, 192, 0.4);
    }

    .hamburger.active {
        background: linear-gradient(135deg, var(--java), var(--cerulean));
        backdrop-filter: blur(10px);
    }

    .bar {
        width: clamp(20px, 6vw, 20px);
        height: 2px;
        background: white;
        margin: 2.5px 0;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-radius: 1px;
        transform-origin: center;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        width: clamp(20px, 6vw, 24px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: clamp(20px, 6vw, 24px);
    }

    /* Menu header met titel */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        font-weight: 700;
        color: var(--text-primary);
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s ease 0.2s;
    }

    .nav-menu.active::before {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive close button */
    .nav-menu .close-menu {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: clamp(44px, 12vw, 50px);
        height: clamp(44px, 12vw, 50px);
        background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        opacity: 0;
        transform: scale(0.8);
    }

    .nav-menu.active .close-menu {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.3s;
    }

    .close-menu:hover {
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    }

    /* Body scroll lock */
    body.menu-open {
        overflow: hidden;
    }

    /* Background pattern */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 80%, rgba(20, 215, 192, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(10, 150, 200, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    /* Extra small devices (phones) */
    @media (max-width: 480px) {
        .nav-menu {
            padding: 0.75rem;
            gap: 0.25rem;
        }
        
        .nav-link {
            padding: 1rem 1.25rem;
            min-height: 55px;
            font-size: 1rem;
        }
        
        .btn-login-nav {
            padding: 1rem 1.25rem !important;
            min-height: 55px;
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        
        .nav-item {
            max-width: 95vw;
        }
        
        .nav-menu::before {
            top: 1rem;
            left: 1rem;
        }
        
        .nav-menu .close-menu {
            top: 1rem;
            right: 1rem;
        }
    }

    /* Landscape mode aanpassingen */
    @media (max-height: 600px) and (orientation: landscape) {
        .nav-menu {
            justify-content: flex-start;
            padding-top: 4rem;
            overflow-y: auto;
        }
        
        .nav-item {
            margin-bottom: 0.5rem;
        }
        
        .nav-link {
            padding: 0.75rem 1.5rem;
            min-height: 50px;
        }
        
        .btn-login-nav {
            margin-top: 0.5rem;
            padding: 0.75rem 1.5rem !important;
            min-height: 50px;
        }
    }
}

/* Icons voor menu items - voeg Font Awesome toe of gebruik emoji */
.nav-link[href="index.php"] i::before { content: "🏠"; }
.nav-link[href="erp-modules.php"] i::before { content: "📦"; }
.nav-link[href="solutions.php"] i::before { content: "💡"; }
.nav-link[href="prices.php"] i::before { content: "💰"; }
.nav-link[href="about.php"] i::before { content: "👥"; }
.nav-link[href="contact.php"] i::before { content: "📞"; }

@media (max-width: 384px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    .hero-image {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .section-header {
    animation: fadeInUp 0.6s ease-out;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card {
        border: 2px solid var(--elephant);
    }
    
    .btn {
        border: 2px solid;
    }
    
    .nav-link.active {
        border-bottom: 3px solid var(--java);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Prijzen Pagina Specifieke Stijlen */

/* Prices Hero */
.prices-hero {
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    padding: 154px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prices-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%23103348" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.prices-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.prices-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.prices-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.billing-option {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    cursor: pointer;
}

.billing-option.active {
    color: white;
}

.toggle-switch {
    position: relative;
    display: inline-block;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    display: block;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-checkbox:checked + .toggle-label {
    background: var(--mountain-meadow);
}

.toggle-checkbox:checked + .toggle-label::after {
    transform: translateX(30px);
}

.discount-badge {
    position: absolute;
    top: -25px;
    right: -20px;
    background: #ff6b6b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--java);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--java);
}

.yearly-price {
    display: none;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.features-list {
    list-style: none;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    width: 20px;
    text-align: center;
}

.feature-item i.fa-check {
    color: var(--java);
}

.feature-item i.fa-times {
    color: var(--text-light);
}

.feature-item.disabled {
    color: var(--text-light);
}

.pricing-actions {
    margin-top: auto;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
}

/* Features Comparison */
.features-comparison {
    padding: 6rem 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--elephant);
    color: white;
    font-weight: 600;
    padding: 1.5rem 2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.comparison-row:nth-child(even) {
    background: #f8fafc;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-plan {
    text-align: center;
    color: var(--text-secondary);
}

.comparison-plan i {
    color: var(--java);
}

.comparison-plan i.fa-times {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--java);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Prices CTA */
.prices-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
}

/* Responsive Design voor Prijzen */
@media (max-width: 768px) {
    .prices-hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
    }
    
    .comparison-header .comparison-feature,
    .comparison-row .comparison-feature {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 1rem;
    }
    
    .discount-badge {
        position: static;
        margin-top: 0.5rem;
    }
    .hero-image {
        display: none;
    }
}

@media (max-width: 384px) {
    .prices-hero-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

/* Features Pagina Specifieke Stijlen - Verbeterde Versie */

/* Features Hero */
.features-hero {
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.features-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.features-hero-content {
    max-width: 100%;
}

.features-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.features-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.features-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 140px;
    height: 140px;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.floating-card i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.floating-card span {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

/* Beter gepositioneerde floating cards */
.card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1.2s;
}

.card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2.4s;
}

.card-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3.6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(1deg); 
    }
    66% { 
        transform: translateY(-8px) rotate(-1deg); 
    }
}

/* Features Overview - Verbeterd */
.features-overview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.features-categories {
    margin-top: 3rem;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.category-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.1), transparent);
    transition: left 0.5s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    color: var(--java);
    border-color: var(--java);
}

.category-btn.active {
    background: var(--java);
    border-color: var(--java);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
}

/* ALLE FUNCTIONALITEITEN - ONDER ELKAAR */
.feature-category {
    margin-bottom: 5rem;
    display: block;
}

.feature-category[style*="display: none"] {
    display: none !important;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Standaard layout: functies onder elkaar */
.category-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--java), var(--cerulean));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-detail-card:hover::before {
    transform: scaleY(1);
}

.feature-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.25rem;
    box-shadow: 0 8px 25px rgba(20, 215, 192, 0.3);
    transition: all 0.4s ease;
}

.feature-detail-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(20, 215, 192, 0.4);
}

.feature-content h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.feature-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.feature-benefits li:hover {
    color: var(--java);
}

.feature-benefits li::before {
    content: '✓';
    color: var(--java);
    font-weight: bold;
    font-size: 1.1rem;
    background: var(--primary-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Integrations Section - Verbeterd */
.integrations-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.05), transparent);
    transition: left 0.6s ease;
}

.integration-card:hover::before {
    left: 100%;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.integration-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--java);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.integration-card:hover .integration-logo {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
}

.integration-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.integration-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Use Cases Section - Verbeterd */
.use-cases-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.use-cases-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.use-case-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.1), transparent);
    transition: left 0.5s;
}

.use-case-btn:hover::before {
    left: 100%;
}

.use-case-btn:hover {
    color: var(--java);
    border-color: var(--java);
}

.use-case-btn.active {
    background: var(--java);
    border-color: var(--java);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
}

.use-case {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.use-case.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.use-case-text h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.use-case-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
}

.use-case-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.use-case-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.use-case-benefits li:hover {
    color: var(--java);
}

.use-case-benefits li:last-child {
    border-bottom: none;
}

.use-case-benefits li::before {
    content: '✓';
    color: var(--java);
    font-weight: bold;
    font-size: 1.25rem;
    background: var(--primary-light);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.use-case-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sme-dashboard-preview,
.enterprise-dashboard-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.use-case.active .sme-dashboard-preview,
.use-case.active .enterprise-dashboard-preview {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-header {
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.dashboard-content {
    display: grid;
    gap: 1.5rem;
}

.metric-card {
    background: var(--primary-light);
    padding: 1.75rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(20, 215, 192, 0.3);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.2);
}

.metric-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--java);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.chart-placeholder {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(20, 215, 192, 0.3) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(20, 215, 192, 0.3) 50%, transparent 51%);
    background-size: 20px 20px;
}

.data-grid {
    background: #f8fafc;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.data-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s ease;
}

.data-row:hover {
    background: white;
}

.data-row:first-child {
    background: var(--elephant);
    color: white;
    font-weight: 700;
}

.data-row:last-child {
    border-bottom: none;
}

/* Features CTA */
.features-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.features-cta .container {
    position: relative;
    z-index: 2;
}

/* Responsive Design voor Features - Verbeterd */
@media (max-width: 1024px) {
    .features-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .features-hero-image {
        order: -1;
        height: 400px;
    }
    
    .floating-cards {
        width: 400px;
        height: 400px;
    }
    
    .use-case {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .use-case.active .sme-dashboard-preview,
    .use-case.active .enterprise-dashboard-preview {
        animation: slideInUp 0.6s ease-out;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 768px) {
    .features-hero-title {
        font-size: 2.75rem;
    }
    
    .feature-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .feature-benefits {
        grid-template-columns: 1fr;
    }
    
    .category-nav,
    .use-case-nav {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
    }
    
    .category-btn,
    .use-case-btn {
        text-align: center;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cards {
        width: 320px;
        height: 320px;
    }
    
    .floating-card {
        width: 120px;
        height: 120px;
        padding: 1.5rem;
    }
}

@media (max-width: 384px) {
    .features-hero-title {
        font-size: 2.25rem;
    }
    
    .features-hero {
        padding: 100px 0 60px;
    }
    
    .feature-detail-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .floating-card {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.75rem;
    }
    
    .floating-card span {
        font-size: 0.85rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
}

/* Over Ons Pagina Specifieke Stijlen */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    padding: 174px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-number-none {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ons Verhaal Sectie */
.our-story {
    padding: 6rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text {
    margin-bottom: 3rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.founder-quote {
    background: var(--primary-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--java);
    position: relative;
}

.quote-content {
    position: relative;
}

.quote-content i {
    font-size: 2rem;
    color: var(--java);
    margin-bottom: 1rem;
    display: block;
}

.quote-content p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--java);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--java), var(--cerulean));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--java);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--java);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--java);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Onze Waarden Sectie */
.our-values {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--java);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Sectie */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-member {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--java);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-social a:hover {
    background: var(--java);
    color: white;
    transform: translateY(-2px);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    color: var(--java);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-cta {
    text-align: center;
    background: var(--primary-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 215, 192, 0.3);
}

.team-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Sectie */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-content i {
    font-size: 1.5rem;
    color: var(--java);
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.about-cta .container {
    position: relative;
    z-index: 2;
}

/* Responsive Design voor Over Ons */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content .section-title {
        text-align: center;
    }
    
    .timeline {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
        width: 0px;
        height: 100%;
    }
    
    .timeline-item {
        padding-left: 0;
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .timeline-item::before {
        left: 50%;
        transform: translateX(-50%);
        top: -1.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-quote {
        padding: 2rem;
    }
}

@media (max-width: 384px) {
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .value-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .team-cta {
        padding: 2rem 1.5rem;
    }
    
    .team-cta h3 {
        font-size: 1.75rem;
    }
}

/* Contact Pagina Specifieke Stijlen */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    padding: 154px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-label i {
    color: var(--java);
    width: 16px;
}

.form-control {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--java);
    box-shadow: 0 0 0 3px rgba(20, 215, 192, 0.1);
}

.form-control.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2314d7c0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.btn-submit {
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.btn-submit.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-method:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--java);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.method-info p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.social-links-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--java);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(20, 215, 192, 0.3);
}

.social-link:hover {
    background: var(--java);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
}

/* FAQ Contact */
.faq-contact {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.faq-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.faq-items {
    margin-bottom: 2rem;
}

.faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
    opacity: 0.3;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
}

.alert i {
    font-size: 1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}

/* Responsive Design voor Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.75rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card,
    .faq-contact {
        padding: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .method-icon {
        align-self: center;
    }
}

@media (max-width: 384px) {
    .contact-hero-title {
        font-size: 2.25rem;
    }
    
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .info-card,
    .faq-contact {
        padding: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ERP Dashboard Preview */
.erp-dashboard-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

.preview-header {
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
}

.preview-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.preview-content {
    padding: 1.5rem;
}

.preview-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.widget {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.widget-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.widget-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.widget-content p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-secondary);
}

/* Demo Aanvraag Pagina Stijlen */
.demo-hero {
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
    padding: 154px 0 80px;
    text-align: center;
}

.demo-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.demo-form-section {
    padding: 4rem 0;
    background: white;
}

.demo-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-form-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--java);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--java);
    border-color: var(--java);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.demo-benefits {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--java);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

.demo-contact-info {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.demo-contact-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.demo-contact-info p {
    color: var(--text-secondary);
    margin: 0.25rem 0;
}

.demo-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-success i {
    color: #28a745;
    font-size: 1.5rem;
}

.alert h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.alert p {
    margin: 0;
}

@media (max-width: 768px) {
    .demo-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-hero-title {
        font-size: 2rem;
    }
}

/* ERP Modules Pagina Specifieke Stijlen */

/* Modules Hero */
.modules-hero {
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.modules-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.modules-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.modules-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.modules-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

/* Modules Overview */
.modules-overview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.modules-categories {
    margin-top: 3rem;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.category-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.1), transparent);
    transition: left 0.5s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    color: var(--java);
    border-color: var(--java);
}

.category-btn.active {
    background: var(--java);
    border-color: var(--java);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
}

/* Modules Grid Detailed */
.modules-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.module-category {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.module-category[style*="display: none"] {
    display: none !important;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--java), var(--cerulean));
    border-radius: 2px;
}

.category-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.module-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.module-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.03), transparent);
    transition: left 0.6s ease;
}

.module-detail-card:hover::before {
    left: 100%;
}

.module-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

/* ERP Modules Pagina Specifieke Stijlen */

/* Modules Hero */
.erp-modules-hero {
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    padding: 154px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.erp-modules-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.erp-modules-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.erp-modules-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.erp-modules-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

/* Modules Overview */
.erp-modules-overview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.erp-modules-categories {
    margin-top: 3rem;
}

.erp-category-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 999;
}

.erp-category-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.erp-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.1), transparent);
    transition: left 0.5s;
}

.erp-category-btn:hover::before {
    left: 100%;
}

.erp-category-btn:hover {
    color: var(--java);
    border-color: var(--java);
}

.erp-category-btn.active {
    background: var(--java);
    border-color: var(--java);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
}

/* Modules Grid Detailed */
.erp-modules-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.erp-module-category {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.erp-module-category[style*="display: none"] {
    display: none !important;
}

.erp-category-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.erp-category-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--java), var(--cerulean));
    border-radius: 2px;
}

.erp-category-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.erp-module-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.erp-module-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.03), transparent);
    transition: left 0.6s ease;
}

.erp-module-detail-card:hover::before {
    left: 100%;
}

.erp-module-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.erp-module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-light), #f8fafc);
    border-bottom: 1px solid var(--border-light);
}

.erp-module-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
    transition: all 0.3s ease;
}

.erp-module-detail-card:hover .erp-module-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(20, 215, 192, 0.4);
}

.erp-module-header h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.erp-module-content {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.erp-module-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.erp-module-features-detailed {
    list-style: none;
    margin-top: auto;
}

.erp-module-features-detailed li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.erp-module-features-detailed li:hover {
    color: var(--java);
}

.erp-module-features-detailed li:last-child {
    border-bottom: none;
}

.erp-module-features-detailed li i {
    color: var(--java);
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

/* Integration Sectie */
.erp-modules-integration {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.erp-modules-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.erp-integration-workflow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.erp-workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    min-width: 180px;
}

.erp-workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.erp-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--java);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.erp-workflow-step:hover .erp-step-icon {
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
    transform: scale(1.1);
}

.erp-step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.erp-step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.erp-workflow-arrow {
    color: var(--java);
    font-size: 1.5rem;
    font-weight: bold;
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* CTA Sectie */
.erp-modules-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.erp-modules-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.erp-modules-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.erp-modules-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.erp-modules-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design voor ERP Modules */
@media (max-width: 1024px) {
    .erp-integration-workflow {
        gap: 1.5rem;
    }
    
    .erp-workflow-step {
        min-width: 160px;
        padding: 1.5rem 1rem;
    }
    
    .erp-category-modules {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .erp-modules-hero-title {
        font-size: 2.75rem;
    }
    
    .erp-category-nav {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }
    
    .erp-category-btn {
        text-align: center;
    }
    
    .erp-category-modules {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .erp-integration-workflow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .erp-workflow-arrow {
        transform: rotate(90deg);
    }
    
    .erp-workflow-step {
        min-width: 200px;
    }
    
    .erp-modules-cta-content h2 {
        font-size: 2rem;
    }
    
    .erp-modules-cta-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 3840px) {
    .erp-modules-hero {
        padding: 160px 0 60px;
    }
    
    .erp-modules-hero-title {
        font-size: 2.25rem;
    }
    
    .erp-modules-overview {
        padding: 4rem 0;
    }
    
    .erp-modules-integration {
        padding: 4rem 0;
    }
    
    .erp-modules-cta {
        padding: 4rem 0;
    }
    
    .erp-module-header {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .erp-module-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .erp-category-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation voor module categories */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.erp-module-category {
    animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
    .erp-module-detail-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .erp-module-detail-card:hover {
        transform: none;
    }
    
    .erp-integration-workflow {
        flex-wrap: wrap;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .erp-module-detail-card {
        border: 2px solid var(--text-primary);
    }
    
    .erp-workflow-step {
        border: 2px solid var(--text-primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .erp-module-detail-card,
    .erp-module-icon,
    .erp-workflow-step,
    .erp-step-icon,
    .erp-workflow-arrow {
        transition: none;
        animation: none;
    }
    
    .erp-module-detail-card:hover {
        transform: none;
    }
    
    .erp-workflow-step:hover {
        transform: none;
    }
}

/* Solutions Pagina Stijlen */
.solutions-hero {
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
    padding: 154px 0 80px;
    text-align: center;
}

.solutions-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.solutions-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: var(--java);
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.industry-nav-section {
    padding: 2rem 0;
    background: white;
    position: sticky;
    top: 74px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.industry-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.industry-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text-secondary);
}

.industry-btn:hover,
.industry-btn.active {
    border-color: var(--java);
    background: var(--java);
    color: white;
    transform: translateY(-2px);
}

.industry-btn i {
    font-size: 1.125rem;
}

.industry-solution {
    display: none;
    padding: 4rem 0;
}

.industry-solution.active {
    display: block;
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--java);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--java);
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-weight: 500;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    color: var(--java);
    font-weight: bold;
    margin-right: 0.5rem;
}

.solution-benefits {
    margin-bottom: 4rem;
}

.solution-benefits h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.benefit-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.solution-cta {
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(20, 215, 192, 0.3);
}

.solution-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.case-studies-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.case-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.case-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.case-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.case-study-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.case-results {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--java);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.enterprise-solutions {
    padding: 6rem 0;
    background: white;
}

.enterprise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.enterprise-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.enterprise-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.enterprise-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enterprise-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.enterprise-feature i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--java);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.enterprise-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.enterprise-feature p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.enterprise-cta {
    text-align: center;
    background: var(--primary-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 215, 192, 0.3);
}

.enterprise-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.enterprise-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.solutions-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
    text-align: center;
}

.solutions-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.solutions-cta .cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .industry-nav {
        gap: 0.5rem;
    }
    
    .industry-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .industry-nav-section {
        position: sticky;
        top: 98px;
        padding: 1rem 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 99;
    }
}

@media (max-width: 768px) {
    .solutions-hero-title {
        font-size: 2.25rem;
    }
    
    .industry-nav-section {
        position: sticky;
        top: 98px;
        padding: 1rem 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 99;
    }
    
    .industry-nav {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .industry-btn {
        padding: 0;
        border-radius: 8px;
        border: 1px solid var(--border-light);
        background: white;
        transition: all 0.3s ease;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        font-size: 0; /* Dit verbergt de tekst in de button */

    }
    
    .industry-btn i {
        font-size: 1.25rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);/* Neemt kleur van button over */
    }
    
    .industry-btn.active {
        background: var(--java);
        color: white;
        border-color: var(--java);
    }
    
    .industry-solution {
        padding-top: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 384px) {
    .solutions-hero-title {
        font-size: 2rem;
    }
    
    .solution-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .benefit-item,
    .case-study-card {
        padding: 1.5rem;
    }
    
    .solution-cta,
    .enterprise-cta {
        padding: 2rem 1.5rem;
    }
}

/* Add-on Modules Styling */
.addon-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.addon-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.addon-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.addon-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--java);
    font-size: 1.5rem;
}

.addon-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--java);
    margin-bottom: 0.5rem;
}

.addon-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Implementation Section */
.implementation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.implementation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.implementation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.implementation-text > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.implementation-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--java);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.implementation-pricing {
    position: sticky;
    top: 2rem;
}

.pricing-card-small {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.pricing-card-small h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.pricing-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.option-name {
    font-weight: 500;
    color: var(--text-primary);
}

.option-price {
    font-weight: 700;
    color: var(--java);
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--java);
    font-size: 1.75rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.expertise-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.expertise-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.expertise-features li {
    padding: 0.5rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 6rem 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--java);
}

.tech-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Updated Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-cta {
    text-align: center;
    background: var(--primary-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 215, 192, 0.3);
}

.team-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Updated Values */
.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .implementation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .implementation-steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-features {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 384px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-card,
    .tech-item {
        padding: 1.5rem;
    }
    
    .team-cta {
        padding: 2rem 1.5rem;
    }
    
    .team-cta h3 {
        font-size: 1.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
}

/* ERP Modules Sectie op Homepage */
.erp-modules {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.05), transparent);
    transition: left 0.6s ease;
}

.module-card:hover::before {
    left: 100%;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), #e1f5fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--java);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.module-card:hover .module-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.module-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.module-features {
    list-style: none;
    text-align: left;
}

.module-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.module-features li:hover {
    color: var(--java);
}

.module-features li:last-child {
    border-bottom: none;
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--java);
    font-weight: bold;
    font-size: 1rem;
}

/* Integration Sectie op Homepage */
.integration-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.integration-text > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.integration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    border: 1px solid rgba(20, 215, 192, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--java);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.integration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.flow-item {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: white;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.flow-item:hover::before {
    left: 100%;
}

.flow-item.sales {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.flow-item.inventory {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.flow-item.finance {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.flow-item.reporting {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.flow-arrow {
    color: var(--java);
    font-size: 1.5rem;
    font-weight: bold;
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* CTA Sectie op Homepage */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design voor Homepage Modules */
@media (max-width: 1024px) {
    .integration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .integration-flow {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 2rem;
        background: linear-gradient(135deg, #f8fafc, #ffffff);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(20, 215, 192, 0.1);
        position: relative;
    }
    
    .integration-flow::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--java), var(--cerulean));
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE (768px) ===== */
@media (max-width: 768px) {
    .integration-visual {
        display: none;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .module-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== SMALL MOBILE (384px) ===== */
@media (max-width: 384px) {
    .module-card {
        padding: 1.5rem;
    }
}

/* Animation voor module cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-card {
    animation: fadeInUp 0.6s ease-out;
}

.module-card:nth-child(1) { animation-delay: 0.1s; }
.module-card:nth-child(2) { animation-delay: 0.2s; }
.module-card:nth-child(3) { animation-delay: 0.3s; }
.module-card:nth-child(4) { animation-delay: 0.4s; }
.module-card:nth-child(5) { animation-delay: 0.5s; }
.module-card:nth-child(6) { animation-delay: 0.6s; }

/* Hover effects voor integration flow */
.flow-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Speciale styling voor de hero feature badges op homepage */
.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero-features {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }

}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-badge i {
    font-size: 0.8rem;
    color: var(--java);
}

/* Case Studies Sectie */
.industry-cases {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.industry-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 215, 192, 0.03), transparent);
    transition: left 0.6s ease;
}

.case-card:hover::before {
    left: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--java);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, var(--primary-light), #f8fafc);
}

.case-logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(20, 215, 192, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.case-card:hover .case-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(20, 215, 192, 0.4);
}

.case-info {
    flex: 1;
}

.case-info h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.case-info span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
}

.case-content {
    padding: 2rem;
}

.case-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--java);
}

.case-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--java);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.result-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    border: 1px solid rgba(20, 215, 192, 0.2);
    transition: all 0.3s ease;
}

.case-card:hover .result-item {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(20, 215, 192, 0.15);
}

.result-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--java);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.result-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Industry Specific CTA */
.industry-specific-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--java) 0%, var(--cerulean) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-specific-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.industry-specific-cta .container {
    position: relative;
    z-index: 2;
}

.industry-specific-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.industry-specific-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations voor case cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-card {
    animation: slideInUp 0.6s ease-out;
}

.case-card:nth-child(1) { animation-delay: 0.1s; }
.case-card:nth-child(2) { animation-delay: 0.2s; }
.case-card:nth-child(3) { animation-delay: 0.3s; }

/* Hover effects voor result items */
.result-item:hover {
    background: white;
    border-color: var(--java);
}

.result-item:hover strong {
    color: var(--cerulean);
}

/* Responsive Design voor Case Studies */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .case-results {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .industry-cases {
        padding: 4rem 0;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .case-content {
        padding: 1.5rem;
    }
    
    .case-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .case-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .result-item {
        padding: 0.75rem 0.25rem;
    }
    
    .result-item strong {
        font-size: 1.25rem;
    }
    
    .result-item span {
        font-size: 0.75rem;
    }
    
    .industry-specific-cta h2 {
        font-size: 2rem;
    }
    
    .industry-specific-cta p {
        font-size: 1.125rem;
    }
}

@media (max-width: 384px) {
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        margin: 0 0.5rem;
    }
    
    .industry-specific-cta {
        padding: 4rem 0;
    }
    
    .industry-specific-cta h2 {
        font-size: 1.75rem;
    }
    
    .industry-specific-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Speciale styling voor verschillende industrie icons in cases */
.case-card:nth-child(1) .case-logo {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.case-card:nth-child(2) .case-logo {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.case-card:nth-child(3) .case-logo {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* Enhanced hover effects */
.case-card:hover .case-header {
    background: linear-gradient(135deg, rgba(20, 215, 192, 0.05), rgba(10, 150, 200, 0.05));
}

.case-card:hover .case-quote {
    color: var(--text-primary);
}

/* Performance metrics highlight */
.result-item:nth-child(1) strong {
    color: #43e97b;
}

.result-item:nth-child(2) strong {
    color: #4facfe;
}

.result-item:nth-child(3) strong {
    color: #f093fb;
}

.case-card:hover .result-item:nth-child(1) strong {
    color: #38c172;
}

.case-card:hover .result-item:nth-child(2) strong {
    color: #3490dc;
}

.case-card:hover .result-item:nth-child(3) strong {
    color: #e3342f;
}

/* Loading animation voor case cards */
.case-card {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

/* Print styles voor case studies */
@media print {
    .case-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .case-card:hover {
        transform: none;
    }
    
    .result-item {
        background: #f8f9fa;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .case-card {
        border: 2px solid var(--text-primary);
    }
    
    .result-item {
        border: 1px solid var(--text-primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .case-card,
    .case-logo,
    .result-item {
        transition: none;
        animation: none;
    }
    
    .case-card:hover {
        transform: none;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding-top: 74px;
}

.legal-hero {
    background: linear-gradient(135deg, var(--java), var(--cerulean));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.legal-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.legal-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-nav {
    position: sticky;
    top: 140px;
    height: fit-content;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.legal-nav h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--java);
    padding-bottom: 0.5rem;
}

.legal-nav ul {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 0.75rem;
}

.legal-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.legal-nav a:hover,
.legal-nav a:focus {
    color: var(--java);
}

.legal-text {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.legal-text section {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
}

.legal-text section:last-child {
    margin-bottom: 0;
}

.legal-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--java);
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

.legal-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--text-primary);
}

.legal-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-text ul {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Cookies Table */
.cookies-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookies-table th {
    background: var(--elephant);
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookies-table tr:nth-child(even) {
    background: var(--primary-light);
}

/* Contact Info */
.contact-info {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--java);
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    font-size: 1.125rem;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-light);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: var(--text-primary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-grid {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    .legal-page {
        padding-top: 98px;
    }
}

@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-nav {
        position: static;
        order: 2;
    }
    
    .legal-text {
        padding: 2rem;
        order: 1;
    }
    
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 384px) {
    .legal-text {
        padding: 1.5rem;
    }
    
    .legal-hero {
        padding: 3rem 0;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .cookies-table {
        font-size: 0.875rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}