:root {
    --primary: #0f172a;
    --primary-dark: #020617;
    --secondary: #3b82f6;
    --secondary-dark: #2563eb;
    --accent: #06b6d4;
    --gray: #475569;
    --gray-light: #64748b;
    --gray-bg: #f8fafc;
    --white: #ffffff;
    --projects-bg: #fef9f1;
    --about-bg: #ffffff;
    --trust-bg: #ffffff;
    --team-bg: #ffffff;
    --contact-bg: #fef9f1;
    --intro-bg: #ffffff;
    --hero-bg: #f8fafc;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Header */
header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.btn-login {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
}

.btn-login:hover {
    background: var(--secondary);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.6rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #0f172a 100%);
    padding: 100px 0 60px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59,130,246,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.typed-text {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.typed-cursor {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(59,130,246,0.15);
    color: var(--secondary);
    border-radius: 30px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(59,130,246,0.3);
}

.hero p {
    font-size: 1rem;
    color: var(--gray);
    margin: 1rem 0 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(59,130,246,0.2);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(59,130,246,0.2);
}

.floating-card i { color: var(--secondary); }
.floating-card-1 { top: -15px; right: -15px; animation-delay: 0s; }
.floating-card-2 { bottom: 40px; left: -20px; animation-delay: 1s; }
.floating-card-3 { bottom: -15px; right: 20px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--trust-bg);
    text-align: center;
}

.trust-section p {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.client-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.client-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.client-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.client-industry {
    font-size: 0.65rem;
    color: var(--gray-light);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--about-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--secondary-light);
    color: var(--secondary-dark);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--gray-bg);
    border-radius: 14px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
}

.feature-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.values-section .section-title h2 {
    color: white;
}

.values-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--secondary);
    font-size: 1.6rem;
    transition: all 0.5s;
}

.value-card:hover .value-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: rotateY(180deg);
}

.value-card h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.value-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Projecten Sectie */
.projects-carousel-section {
    padding: 2rem 0 3rem;
    background: var(--projects-bg);
    overflow-x: hidden;
}

.projects-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--intro-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.intro-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1rem;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: var(--gray-bg);
    border-radius: 10px;
}

.highlight:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: var(--shadow-md);
}

.highlight i {
    width: 40px;
    height: 40px;
    background: var(--secondary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
}

.highlight strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.1rem;
    font-size: 0.85rem;
}

.highlight span {
    font-size: 0.7rem;
    color: var(--gray-light);
}

.intro-quote {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 1.2rem;
    border-radius: 16px;
    color: white;
    position: relative;
}

.intro-quote i {
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0.5;
    margin-bottom: 0.5rem;
    display: block;
}

.intro-quote p {
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.quote-author {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.quote-author strong {
    display: block;
    font-size: 0.85rem;
}

.quote-author span {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* DESKTOP 3D CAROUSEL */
.desktop-carousel {
    display: block;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    overflow: visible;
    perspective: 1200px;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-card-3d {
    position: absolute;
    width: 260px;
    height: 340px;
    left: 50%;
    top: 50%;
    margin-left: -130px;
    margin-top: -170px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
}

.carousel-card-3d:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 45px rgba(0,0,0,0.25);
}

.carousel-card-3d .card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.carousel-card-3d .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card-3d .card-content {
    padding: 0.8rem;
}

.carousel-card-3d .card-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.carousel-card-3d .card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-3d .card-tech {
    color: #3b82f6;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-3d .card-desc {
    font-size: 0.7rem;
    color: #475569;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-card-3d .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #3b82f6;
    color: white;
    border-radius: 30px;
    font-size: 0.7rem;
    text-decoration: none;
    transition: all 0.3s;
}

.carousel-card-3d .card-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
    position: relative;
    z-index: 10;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: #f97316;
    color: white;
    transform: scale(1.05);
}

.carousel-dots-3d {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.dot-3d {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.dot-3d.active {
    background: #f97316;
    width: 25px;
    border-radius: 5px;
}

/* MOBIELE HORIZONTALE SCROLL */
.mobile-scroll,
.mobile-team-scroll,
.mobile-only {
    display: none;
}

.mobile-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
}

.mobile-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.mobile-scroll-container::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.mobile-scroll-container::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.mobile-scroll-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0.25rem 1rem;
}

.mobile-project-card {
    flex: 0 0 calc(85% - 0.5rem);
    min-width: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(59,130,246,0.15);
}

.mobile-project-card .card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.mobile-project-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-project-card .card-content {
    padding: 0.8rem;
}

.mobile-project-card .card-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mobile-project-card .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-project-card .card-tech {
    color: #3b82f6;
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-project-card .card-desc {
    font-size: 0.7rem;
    color: #475569;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-project-card .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #3b82f6;
    color: white;
    border-radius: 30px;
    font-size: 0.7rem;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-project-card .card-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.mobile-team-card-scroll {
    flex: 0 0 calc(85% - 0.5rem);
    min-width: 0;
}

.mobile-team-card-scroll .team-card {
    margin: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mobile-team-card-scroll .team-card .team-image {
    height: 200px;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--team-bg);
}

.desktop-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--secondary);
    color: white;
}

.team-info {
    padding: 1.2rem;
}

.team-info h3 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.team-title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

.team-bio {
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--secondary);
}

.cta-section .btn-primary:hover {
    background: var(--primary);
    color: white;
}

/* Contact Section - Alleen zichtbaar op desktop */
.contact-section {
    padding: 5rem 0;
    background: var(--contact-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 2rem;
    border-radius: 24px;
    color: white;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gray-bg);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Contact Popup (mobiel) */
.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.contact-popup.active {
    display: flex;
}

.contact-popup-content {
    background: white;
    width: 90%;
    max-width: 400px;
    max-height: 85vh;
    border-radius: 24px;
    overflow-y: auto;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-popup-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.contact-popup-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.contact-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.contact-popup-body {
    padding: 1.2rem;
}

.contact-popup-body .form-group {
    margin-bottom: 1rem;
}

.contact-popup-body .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.contact-popup-body .form-group input,
.contact-popup-body .form-group textarea,
.contact-popup-body .form-group select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.85rem;
}

.contact-popup-body .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-popup-body .btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.privacy-link {
    color: var(--secondary);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.privacy-link:hover {
    color: var(--secondary-dark);
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section h3 span {
    color: var(--secondary);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* Modal Styles */
.value-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(30,42,58,0.92) 0%, rgba(15,23,42,0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 560px;
    border-radius: 24px;
    overflow: hidden;
    animation: modalFadeIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 32px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.88) translateY(20px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.modal-header {
    padding: 1.5rem 1.6rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-header h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-header h2 i {
    color: var(--secondary);
    margin-right: 0.6rem;
}

.modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.modal-close:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: scale(1.1);
}

.modal-body {
    padding: 1.4rem 1.6rem;
    max-height: 58vh;
    overflow-y: auto;
}

.modal-body p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-body h3 {
    color: #ffffff;
    font-size: 1rem;
    margin: 1.2rem 0 0.6rem;
    font-weight: 600;
}

.modal-body ul {
    margin: 0.5rem 0 1rem;
    padding-left: 0;
    list-style: none;
}

.modal-body li {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.6rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.modal-body li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 6px; height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.modal-body li strong {
    color: #ffffff;
    font-weight: 600;
}

.modal-quote {
    background: rgba(255,255,255,0.06);
    padding: 1rem 1.2rem;
    border-radius: 14px;
    margin: 1.2rem 0 0.5rem;
    border-left: 3px solid var(--secondary);
}

.modal-quote i {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-quote p {
    font-style: italic;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
}

.modal-quote cite {
    color: var(--secondary);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.4rem;
    font-style: normal;
}

.modal-footer {
    padding: 1rem 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: flex-end;
}

.modal-footer .btn {
    background: var(--secondary);
    color: #fff;
    padding: 0.6rem 1.6rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
}

.modal-footer .btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Lightbox CSS */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    cursor: default;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.lightbox-caption h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 1.2rem;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 1.5rem;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    color: white;
    font-size: 0.85rem;
}

.screenshot-image {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ============================================ */
/* RESPONSIVE - MOBIEL */
/* ============================================ */

@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .desktop-team { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .projects-intro { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
    .lightbox-prev, .lightbox-next { width: 35px; height: 35px; font-size: 0.9rem; }
    .lightbox-prev { left: -15px; }
    .lightbox-next { right: -15px; }
}

@media (max-width: 968px) {
    /* Header mobiel */
    header .container {
        padding: 0.6rem 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    .logo-icon i {
        font-size: 1rem;
    }
    .logo a {
        gap: 0.4rem;
    }
    
    /* Verberg desktop taal selector op mobiel */
    .language-dropdown {
        display: none !important;
    }
    
    /* Mobiele taal selector - naast hamburger */
    .mobile-lang-dropdown {
        position: relative;
        display: inline-block;
        margin-right: 0.5rem;
        vertical-align: middle;
    }
    
    .mobile-lang-btn {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.3rem 0.6rem;
        background: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .mobile-lang-btn:hover {
        background: var(--secondary);
    }
    
    .mobile-lang-btn img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-btn i {
        font-size: 0.6rem;
        color: var(--gray);
    }
    
    .mobile-lang-btn:hover i {
        color: white;
    }
    
    .mobile-lang-dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background: white;
        min-width: 120px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 12px;
        overflow: hidden;
        z-index: 1000;
    }
    
    .mobile-lang-dropdown-content.show {
        display: block;
    }
    
    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        text-decoration: none;
        transition: all 0.2s;
        border-bottom: 1px solid #f0f0f0;
        color: #1f2937;
    }
    
    .mobile-lang-option:last-child {
        border-bottom: none;
    }
    
    .mobile-lang-option:hover {
        background: var(--secondary);
        color: white;
    }
    
    .mobile-lang-option img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-option span {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Hamburger menu */
    .hamburger {
        display: block;
    }
    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        gap: 0.8rem;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    
    /* Hero mobiel */
    .typed-text, .typed-cursor { font-size: 1.8rem; }
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1rem; }
    .hero-buttons { justify-content: center; flex-direction: column; align-items: center; gap: 0.8rem; }
    .hero-buttons .btn { width: 100%; max-width: 220px; justify-content: center; }
    .hero-image { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-image { order: -1; text-align: center; }
    .about-image img { max-width: 70%; margin: 0 auto; }
    
    /* VERBERG DESKTOP ELEMENTEN OP MOBIEL */
    .desktop-carousel { display: none !important; }
    .desktop-team { display: none !important; }
    .contact-section { display: none !important; }
    
    /* TOON MOBIELE HORIZONTALE SCROLL */
    .mobile-scroll { display: block !important; }
    .mobile-team-scroll { display: block !important; }
    .mobile-only { display: block !important; }
    
    /* Client logos op mobiel */
    .client-logos {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0.8rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .client-card {
        flex: 0 0 calc(45% - 0.4rem);
        min-width: 0;
    }
    
    /* Mobiele project kaarten */
    .mobile-project-card {
        flex: 0 0 calc(85% - 0.5rem);
    }
    .mobile-project-card .card-image {
        height: 140px;
    }
    .mobile-project-card .card-content {
        padding: 0.7rem;
    }
    
    /* Mobiele team kaarten */
    .mobile-team-card-scroll {
        flex: 0 0 calc(85% - 0.5rem);
    }
    .mobile-team-card-scroll .team-card .team-image {
        height: 200px;
    }
    .mobile-team-card-scroll .team-info {
        padding: 0.7rem;
    }
}

@media (max-width: 768px) {
    .container { width: 94%; }
    
    /* Typografie */
    h1 { font-size: 1.8rem; margin-bottom: 0.8rem; }
    h2 { font-size: 1.5rem; margin-bottom: 0.8rem; }
    .section-title { margin-bottom: 1.5rem; }
    .section-title h2 { font-size: 1.4rem; }
    .section-title h2:after { bottom: -8px; width: 45px; height: 2px; }
    .section-title p { font-size: 0.85rem; margin-top: 0.8rem; }
    
    /* Hero compact */
    .hero { padding: 70px 0 30px; }
    .hero-badge { font-size: 0.65rem; padding: 0.25rem 0.7rem; margin-bottom: 0.8rem; }
    .hero p { font-size: 0.85rem; margin: 0.6rem 0 1rem; }
    .hero-stats { padding-top: 0.8rem; }
    .stat-number { font-size: 1.2rem; }
    .stat-label { font-size: 0.65rem; }
    
    /* Knop "Bekijk" op mobiel */
    .hero-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    .hero-btn i {
        font-size: 0.8rem;
    }
    
    /* Values compact */
    .values-section { padding: 2.5rem 0; }
    .values-grid { gap: 0.8rem; max-width: 450px; margin: 0 auto; }
    .value-card { padding: 0.8rem; }
    .value-icon { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 0.5rem; }
    .value-card h3 { font-size: 0.85rem; margin-bottom: 0.3rem; }
    .value-card p { font-size: 0.65rem; line-height: 1.3; }
    
    /* About compact */
    .about-section { padding: 2.5rem 0; }
    .about-features { gap: 0.6rem; margin-top: 1rem; }
    .feature-item { padding: 0.6rem; gap: 0.6rem; }
    .feature-icon { width: 35px; height: 35px; font-size: 0.85rem; }
    .feature-text h4 { font-size: 0.8rem; }
    .feature-text p { font-size: 0.7rem; }
    
    /* Projects Intro compact */
    .projects-intro { margin-bottom: 1rem; padding: 0.8rem; }
    .intro-text p { font-size: 0.85rem; margin-bottom: 0.8rem; }
    .intro-highlights { gap: 0.5rem; margin-top: 0.8rem; }
    .highlight { padding: 0.4rem; gap: 0.5rem; }
    .highlight i { width: 30px; height: 30px; font-size: 0.8rem; }
    .highlight strong { font-size: 0.75rem; }
    .highlight span { font-size: 0.6rem; }
    .intro-quote { padding: 0.8rem; }
    .intro-quote i { font-size: 1.2rem; margin-bottom: 0.3rem; }
    .intro-quote p { font-size: 0.75rem; margin-bottom: 0.5rem; }
    .quote-author strong { font-size: 0.75rem; }
    .quote-author span { font-size: 0.6rem; }
    
    /* Trust compact */
    .trust-section { padding: 2rem 0; }
    .trust-section p { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .client-card { padding: 0.8rem; }
    .client-icon { width: 45px; height: 45px; margin-bottom: 0.5rem; }
    .client-icon i { font-size: 1.2rem; }
    .client-name { font-size: 0.8rem; }
    .client-industry { font-size: 0.55rem; }
    
    /* CTA compact */
    .cta-section { padding: 2.5rem 0; }
    .cta-section h2 { font-size: 1.3rem; margin-bottom: 0.8rem; }
    .cta-section p { font-size: 0.85rem; margin-bottom: 1.2rem; }
    
    /* Mobiele project kaarten */
    .mobile-project-card .card-image {
        height: 120px;
    }
    .mobile-project-card .card-content {
        padding: 0.6rem;
    }
    .mobile-project-card .card-title {
        font-size: 0.85rem;
    }
    .mobile-project-card .card-desc {
        font-size: 0.65rem;
    }
    .mobile-project-card .card-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
    
    /* Mobiele team kaarten */
    .mobile-team-card-scroll .team-card .team-image {
        height: 170px;
    }
    .mobile-team-card-scroll .team-info {
        padding: 0.6rem;
    }
    .mobile-team-card-scroll .team-info h3 {
        font-size: 0.9rem;
    }
    .mobile-team-card-scroll .team-bio {
        font-size: 0.65rem;
    }
    
    /* Contact popup */
    .contact-popup-content {
        width: 95%;
        max-height: 90vh;
    }
    .contact-popup-header h3 {
        font-size: 1rem;
    }
    .contact-popup-body {
        padding: 1rem;
    }
    .contact-popup-body .form-group input,
    .contact-popup-body .form-group textarea,
    .contact-popup-body .form-group select {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    .contact-popup-body .btn-submit {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    /* Footer compact - alleen contactgegevens op mobiel */
    footer .footer-section:first-child,
    footer .footer-section:nth-child(2),
    footer .footer-section:nth-child(3) {
        display: none;
    }
    
    footer .footer-section:last-child {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    footer .footer-section:last-child h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    footer .footer-section:last-child p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    footer .footer-section:last-child p i {
        width: 25px;
        color: var(--secondary);
    }
    
    .social-links {
        display: none;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.7rem;
    }
    
    footer {
        padding: 1.5rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .container { width: 92%; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    .section-title h2 { font-size: 1.2rem; }
    
    /* Logo extra klein */
    .logo-text {
        font-size: 0.8rem;
    }
    .logo-icon {
        width: 26px;
        height: 26px;
    }
    .logo-icon i {
        font-size: 0.8rem;
    }
    
    /* Mobiele taal knop */
    .mobile-lang-btn {
        padding: 0.2rem 0.4rem;
    }
    .mobile-lang-btn img {
        width: 16px;
        height: 11px;
    }
    .mobile-lang-btn i {
        font-size: 0.5rem;
    }
    
    /* Hamburger nog kleiner */
    .hamburger span {
        width: 18px;
        height: 2px;
        margin: 3px 0;
    }
    
    /* Hero extra compact */
    .hero { padding: 60px 0 25px; }
    .typed-text, .typed-cursor { font-size: 1.5rem; }
    .hero-badge { font-size: 0.6rem; }
    .hero p { font-size: 0.8rem; }
    .hero-buttons .btn { max-width: 200px; padding: 0.6rem 1.2rem; font-size: 0.8rem; }
    .stat-number { font-size: 1rem; }
    .stat-label { font-size: 0.6rem; }
    
    /* Values extra compact */
    .values-grid { max-width: 260px; }
    .value-card { padding: 0.6rem; }
    .value-icon { width: 35px; height: 35px; font-size: 0.9rem; }
    .value-card h3 { font-size: 0.8rem; }
    .value-card p { font-size: 0.6rem; }
    
    /* Trust extra compact */
    .client-card { padding: 0.6rem; }
    .client-icon { width: 40px; height: 40px; }
    .client-icon i { font-size: 1rem; }
    .client-name { font-size: 0.7rem; }
    
    /* Mobiele project kaarten */
    .mobile-project-card .card-image {
        height: 100px;
    }
    .mobile-project-card .card-content {
        padding: 0.5rem;
    }
    .mobile-project-card .card-title {
        font-size: 0.8rem;
    }
    .mobile-project-card .card-desc {
        font-size: 0.6rem;
    }
    .mobile-project-card .card-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
    
    /* Mobiele team kaarten */
    .mobile-team-card-scroll .team-card .team-image {
        height: 150px;
    }
    .mobile-team-card-scroll .team-info {
        padding: 0.5rem;
    }
    .mobile-team-card-scroll .team-info h3 {
        font-size: 0.85rem;
    }
    .mobile-team-card-scroll .team-bio {
        font-size: 0.6rem;
    }
    
    /* Footer extra compact */
    footer .footer-section:last-child p {
        font-size: 0.7rem;
        gap: 0.5rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    footer .footer-section:last-child p i {
        width: 20px;
        font-size: 0.75rem;
    }
    
    footer .footer-section:last-child h4 {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .footer-bottom {
        font-size: 0.6rem;
        text-align: left;
    }

/* ============================================ */
/* MOBIEL - VERBERG DESKTOP TAAL DROPDOWN */
/* ============================================ */

@media (max-width: 968px) {
    .language-dropdown {
        display: none !important;
    }
}
/* ============================================ */
/* MOBIEL - VERBERG TAAL DROPDOWN */
/* ============================================ */

@media (max-width: 968px) {
    .language-dropdown {
        display: none !important;
    }
}
/* ============================================ */
/* MOBIEL - TAAL KNAP NAAST HAMBURGER */
/* ============================================ */

@media (max-width: 968px) {
    /* Verberg desktop taal dropdown op mobiel */
    .language-dropdown {
        display: none !important;
    }
    
    /* Toon mobiele taal wrapper */
    .mobile-lang-wrapper {
        position: relative;
        display: inline-block;
        margin-right: 0.5rem;
        vertical-align: middle;
    }
    
    .mobile-lang-btn {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.3rem 0.6rem;
        background: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .mobile-lang-btn img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-btn i {
        font-size: 0.6rem;
        color: var(--gray);
    }
    
    .mobile-lang-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background: white;
        min-width: 120px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 12px;
        overflow: hidden;
        z-index: 1000;
    }
    
    .mobile-lang-dropdown.show {
        display: block;
    }
    
    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        text-decoration: none;
        transition: all 0.2s;
        border-bottom: 1px solid #f0f0f0;
        color: #1f2937;
    }
    
    .mobile-lang-option:last-child {
        border-bottom: none;
    }
    
    .mobile-lang-option:hover {
        background: var(--secondary);
        color: white;
    }
    
    .mobile-lang-option img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-option span {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Hamburger blijft zichtbaar */
    .hamburger {
        display: block;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }
    
    /* Mobiel menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        gap: 0.8rem;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
/* ============================================ */
/* MOBIEL - TAAL KNAP NAAST HAMBURGER */
/* ============================================ */

@media (max-width: 968px) {
    /* Toon mobiele taal wrapper */
    .mobile-lang-wrapper {
        display: inline-block !important;
        position: relative;
        margin-right: 0.5rem;
        vertical-align: middle;
    }
    
    .mobile-lang-btn {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.3rem 0.6rem;
        background: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .mobile-lang-btn img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-btn i {
        font-size: 0.6rem;
        color: var(--gray);
    }
    
    .mobile-lang-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background: white;
        min-width: 120px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 12px;
        overflow: hidden;
        z-index: 1000;
    }
    
    .mobile-lang-dropdown.show {
        display: block;
    }
    
    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        text-decoration: none;
        transition: all 0.2s;
        border-bottom: 1px solid #f0f0f0;
        color: #1f2937;
    }
    
    .mobile-lang-option:last-child {
        border-bottom: none;
    }
    
    .mobile-lang-option:hover {
        background: var(--secondary);
        color: white;
    }
    
    .mobile-lang-option img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-option span {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Hamburger zichtbaar maken */
    .hamburger {
        display: block !important;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }
    
    /* Mobiel menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        gap: 0.8rem;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
/* ============================================ */
/* MOBIEL - HAMBURGER EN TAAL KNOP TERUG */
/* ============================================ */

@media (max-width: 968px) {
    /* Zorg dat de hamburger zichtbaar is */
    .hamburger {
        display: block !important;
    }
    
    /* Zorg dat de mobiele taal wrapper zichtbaar is */
    .mobile-lang-wrapper {
        display: inline-block !important;
        position: relative;
        margin-right: 0.5rem;
        vertical-align: middle;
    }
    
    .mobile-lang-btn {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.3rem 0.6rem;
        background: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .mobile-lang-btn img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-btn i {
        font-size: 0.6rem;
        color: var(--gray);
    }
    
    .mobile-lang-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background: white;
        min-width: 120px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 12px;
        overflow: hidden;
        z-index: 1000;
    }
    
    .mobile-lang-dropdown.show {
        display: block;
    }
    
    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        text-decoration: none;
        transition: all 0.2s;
        border-bottom: 1px solid #f0f0f0;
        color: #1f2937;
    }
    
    .mobile-lang-option:last-child {
        border-bottom: none;
    }
    
    .mobile-lang-option:hover {
        background: var(--secondary);
        color: white;
    }
    
    .mobile-lang-option img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-option span {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Hamburger stijl */
    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
        background: var(--primary);
    }
    
    /* Mobiel menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        gap: 0.8rem;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
/* ============================================ */
/* MOBIEL - KNOBBEN ZICHTBAAR MAKEN */
/* ============================================ */

@media (max-width: 968px) {
    /* Hamburger zichtbaar maken */
    .hamburger {
        display: block !important;
    }
    
    /* Mobiele taal wrapper zichtbaar maken */
    .mobile-lang-wrapper {
        display: inline-block !important;
        position: relative;
        margin-right: 0.5rem;
        vertical-align: middle;
    }
    
    .mobile-lang-btn {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.3rem 0.6rem;
        background: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .mobile-lang-btn img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-btn i {
        font-size: 0.6rem;
        color: var(--gray);
    }
    
    .mobile-lang-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background: white;
        min-width: 120px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 12px;
        overflow: hidden;
        z-index: 1000;
    }
    
    .mobile-lang-dropdown.show {
        display: block;
    }
    
    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        text-decoration: none;
        transition: all 0.2s;
        border-bottom: 1px solid #f0f0f0;
        color: #1f2937;
    }
    
    .mobile-lang-option:last-child {
        border-bottom: none;
    }
    
    .mobile-lang-option:hover {
        background: var(--secondary);
        color: white;
    }
    
    .mobile-lang-option img {
        width: 18px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }
    
    .mobile-lang-option span {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Hamburger stijl */
    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
        background: var(--primary);
    }
    
    /* Zorg dat nav en header goed staan */
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    /* Verberg desktop taal dropdown op mobiel */
    .language-dropdown {
        display: none !important;
    }
}