/* ===== CSS Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-green: #2d7a4f;
    --primary-green-dark: #1f5738;
    --primary-green-light: #3d9a65;
    --accent-green: #4caf50;
    --white: #ffffff;
    --off-white: #fafbfc;
    --light-gray: #f5f7f9;
    --medium-gray: #e1e8ed;
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;
    --text-light: #718096;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, #2d7a4f 0%, #4caf50 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 122, 79, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1001;
    transition: var(--transition-normal);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 95px;
    width: auto;
    transition: all var(--transition-normal);
    display: block;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width var(--transition-normal);
}

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

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

.nav-cta .btn-primary {
    padding: 12px 30px;
    font-size: 14px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f9f7 50%, #fafbfc 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(45, 122, 79, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(76, 175, 80, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(45, 122, 79, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(45, 122, 79, 0.04) 60px,
            rgba(45, 122, 79, 0.04) 62px
        );
}

/* Decorative circles in background */
.hero-pattern::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-pattern::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.85;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(45, 122, 79, 0.15),
        0 0 0 1px rgba(45, 122, 79, 0.05);
    max-width: 450px;
    width: 100%;
    background: white;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.05) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    will-change: transform;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(45, 122, 79, 0.08) 100%);
    border-radius: 50%;
    z-index: -1;
}

.image-decoration::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, rgba(45, 122, 79, 0.1) 0%, rgba(76, 175, 80, 0.06) 100%);
    border-radius: 50%;
}

/* ===== Features Section ===== */
.features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f5f9f7 0%, #ffffff 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.features .section-header {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 2px solid rgba(45, 122, 79, 0.08);
    box-shadow: 0 4px 15px rgba(45, 122, 79, 0.08);
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(45, 122, 79, 0.15);
    border-color: var(--primary-green);
    background: var(--white);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
    will-change: transform;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* ===== Over Mij Section ===== */
.over-mij {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #fafbfc 0%, #f5f9f7 30%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.over-mij::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.over-mij::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: pulse 10s ease-in-out infinite;
}

.over-mij-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-grid {
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(45, 122, 79, 0.2),
        0 0 0 1px rgba(45, 122, 79, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.main-image:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(45, 122, 79, 0.25),
        0 0 0 1px rgba(45, 122, 79, 0.1);
}

.image-decoration-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(45, 122, 79, 0.12) 100%);
    border-radius: 50%;
    z-index: 0;
}

.image-decoration-2::before {
    content: '';
    position: absolute;
    top: -35px;
    right: -35px;
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, rgba(45, 122, 79, 0.1) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-radius: 50%;
}

.section-label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.12) 0%, rgba(76, 175, 80, 0.1) 100%);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(45, 122, 79, 0.15);
    box-shadow: 0 2px 10px rgba(45, 122, 79, 0.08);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
    line-height: 1.2;
}

.text-content p {
    margin-bottom: 24px;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.85;
}

.quote {
    margin-top: 40px;
    padding: 30px 40px;
    background: var(--gradient-green);
    color: var(--white);
    border-radius: 16px;
    font-size: 19px;
    font-weight: 500;
    font-style: italic;
    border-left: 5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 15px 40px rgba(45, 122, 79, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 100px;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

/* ===== Diensten Section ===== */
.diensten {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f5f9f7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.diensten::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: pulse 12s ease-in-out infinite;
}

.diensten::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    animation: pulse 14s ease-in-out infinite 2s;
}

.diensten .section-header {
    position: relative;
    z-index: 1;
}

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

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    margin-top: 16px;
    line-height: 1.7;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Special styling for 5 items grid */
.diensten-grid .dienst-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1100px) {
    .diensten-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diensten-grid .dienst-card:nth-child(5) {
        grid-column: 1 / -1;
    }
}

.dienst-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 45px 40px;
    border-radius: 24px;
    transition: all var(--transition-normal);
    border: 2px solid rgba(45, 122, 79, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.08);
}

.dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.dienst-card:hover::before {
    transform: scaleX(1);
}

.dienst-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 122, 79, 0.18);
    background: var(--white);
    border-color: var(--primary-green);
}

.dienst-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 15px rgba(45, 122, 79, 0.2);
    will-change: transform;
}

.dienst-card:hover .dienst-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(45, 122, 79, 0.35);
}

.dienst-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.dienst-card h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-dark);
    line-height: 1.3;
}

.dienst-card > p {
    color: var(--text-medium);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.dienst-list {
    list-style: none;
    margin-top: 24px;
}

.dienst-list li {
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 15px;
    position: relative;
    padding-left: 32px;
    line-height: 1.6;
}

.dienst-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.15) 0%, rgba(76, 175, 80, 0.12) 100%);
    color: var(--primary-green);
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dienst-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 28px;
    background: var(--gradient-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

.dienst-cta-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dienst-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
    background: linear-gradient(135deg, #1f5738 0%, #3d9a65 100%);
}

.dienst-card:hover .dienst-cta-btn {
    box-shadow: 0 8px 25px rgba(45, 122, 79, 0.45);
}

/* Special highlight for the APK card */
.diensten-grid .dienst-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 249, 247, 0.9) 100%);
    border: 2px solid rgba(45, 122, 79, 0.15);
}

.diensten-grid .dienst-card:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 24px 24px 0 0;
}

.diensten-grid .dienst-card:nth-child(5) .dienst-icon {
    width: 85px;
    height: 85px;
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.25);
}

.diensten-grid .dienst-card:nth-child(5):hover .dienst-icon {
    box-shadow: 0 15px 40px rgba(45, 122, 79, 0.4);
}

/* ===== Tarieven Section ===== */
.tarieven {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #fafbfc 0%, #f5f9f7 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.tarieven::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: pulse 15s ease-in-out infinite;
}

.tarieven::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    animation: pulse 13s ease-in-out infinite 3s;
}

.tarieven .section-header {
    position: relative;
    z-index: 1;
}

.pricing-card {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 55px 50px;
    box-shadow: 
        0 25px 70px rgba(45, 122, 79, 0.15),
        0 0 0 1px rgba(45, 122, 79, 0.08);
    border: 3px solid rgba(45, 122, 79, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-green);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 90px rgba(45, 122, 79, 0.2),
        0 0 0 1px rgba(45, 122, 79, 0.12);
    border-color: var(--primary-green);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pricing-header h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.amount {
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 22px;
    color: var(--text-medium);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(45, 122, 79, 0.1);
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 26px;
    height: 26px;
    color: var(--primary-green);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.12) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-radius: 50%;
    padding: 4px;
}

.pricing-note {
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.08) 0%, rgba(76, 175, 80, 0.06) 100%);
    padding: 24px;
    border-radius: 16px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
    border: 1px solid rgba(45, 122, 79, 0.12);
    position: relative;
    z-index: 1;
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 17px;
    position: relative;
    z-index: 1;
}

/* ===== Succesverhalen Section ===== */
.succesverhalen {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f5f9f7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.succesverhalen::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: pulse 14s ease-in-out infinite;
}

.succesverhalen::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(75px);
    pointer-events: none;
    animation: pulse 16s ease-in-out infinite 4s;
}

.succesverhalen .section-header {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 500px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 45px 40px;
    border-radius: 24px;
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid rgba(45, 122, 79, 0.1);
    box-shadow: 0 8px 25px rgba(45, 122, 79, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(45, 122, 79, 0.06);
    line-height: 1;
    z-index: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 122, 79, 0.18);
    background: var(--white);
    border-color: var(--primary-green);
}

.stars {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.stars svg {
    width: 22px;
    height: 22px;
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 17px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

/* ===== FAQ Section ===== */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #fafbfc 0%, #f5f9f7 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: pulse 18s ease-in-out infinite;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    animation: pulse 16s ease-in-out infinite 5s;
}

.faq .section-header {
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid rgba(45, 122, 79, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(45, 122, 79, 0.08);
}

.faq-item:hover {
    border-color: rgba(45, 122, 79, 0.2);
    box-shadow: 0 8px 25px rgba(45, 122, 79, 0.12);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(45, 122, 79, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all var(--transition-normal);
}

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

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.1) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-radius: 50%;
    padding: 6px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--gradient-green);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px 32px;
}

.faq-answer p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
    padding-top: 8px;
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f5738 0%, #2d7a4f 30%, #3d9a65 70%, #2d7a4f 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 70px,
            rgba(255, 255, 255, 0.02) 70px,
            rgba(255, 255, 255, 0.02) 71px
        ),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.4;
}

.cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(50px);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -35%;
    right: -12%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(55px);
    animation: float 18s ease-in-out infinite reverse;
    z-index: 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.5px;
}

.cta-content > p:first-of-type {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
}

.cta-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 38px;
    opacity: 0.92;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.cta-button svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 122, 79, 0.12), transparent);
    transition: left 0.6s;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.35);
    background: #fefefe;
}

.cta-button:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 70px 0 0;
    border-top: 4px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 122, 79, 0.5), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity var(--transition-normal);
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-green);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(45, 122, 79, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a,
.footer-column ul li span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-green);
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content,
    .over-mij-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Hamburger Menu voor Tablets en Mobiel */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    /* Menu Overlay Backdrop */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        will-change: opacity;
        z-index: -1;
    }
    
    .nav-links.active::before {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 340px;
        max-width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 120px 0 60px 0;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        box-shadow: 
            -10px 0 50px rgba(45, 122, 79, 0.08),
            -3px 0 20px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        overflow-y: auto;
        border-left: 2px solid rgba(45, 122, 79, 0.12);
    }
    
    /* Decorative Elements */
    .nav-links::after {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(
            circle, 
            rgba(45, 122, 79, 0.08) 0%, 
            transparent 60%
        );
        border-radius: 50%;
        filter: blur(30px);
        pointer-events: none;
        will-change: transform;
    }
    

    
    .nav-links.active {
        transform: translateX(0);
    }
    
    /* Menu Header */
    .nav-links li:first-child::after {
        content: 'Navigatie';
        position: absolute;
        top: -80px;
        left: 40px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--primary-green);
        opacity: 0.7;
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        will-change: opacity, transform;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-links a {
        display: block;
        padding: 20px 40px;
        font-size: 17px;
        font-weight: 500;
        position: relative;
        transition: color 0.2s ease, padding 0.2s ease;
        color: var(--text-dark);
        border-radius: 0;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: rgba(45, 122, 79, 0.05);
        transition: width 0.2s ease;
        will-change: width;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 40%;
        background: var(--primary-green);
        transition: width 0.2s ease;
        will-change: width;
        border-radius: 0 4px 4px 0;
    }
    
    .nav-links a:hover::before {
        width: 100%;
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 4px;
    }
    
    .nav-links a:hover {
        color: var(--primary-green);
        padding-left: 48px;
    }
    
    /* Add Contact Button at Bottom of Mobile Menu */
    .nav-links li:last-child {
        margin-top: auto;
        padding: 20px 40px 0;
        border-top: 2px solid rgba(45, 122, 79, 0.08);
        position: relative;
    }
    
    .nav-links li:last-child::before {
        display: none;
    }
    
    .nav-links li:last-child a {
        background: var(--gradient-green);
        color: white;
        text-align: center;
        border-radius: 50px;
        padding: 16px 32px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        will-change: transform;
    }
    
    .nav-links li:last-child a::before,
    .nav-links li:last-child a::after {
        display: none;
    }
    
    .nav-links li:last-child a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
    }
    
    .nav-cta {
        display: none;
    }
    
    .diensten-grid {
        grid-template-columns: 1fr;
    }
    
    .diensten-grid .dienst-card:nth-child(5) {
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .navbar {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 10px 0;
    }
    
    .logo img {
        height: 70px;
    }
    
    .nav-cta .btn-primary {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .feature-card,
    .dienst-card,
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .over-mij-content {
        gap: 40px;
    }
    
    .quote {
        padding: 24px 28px;
        font-size: 17px;
    }
    
    .pricing-card {
        padding: 40px 28px;
    }
    
    .amount {
        font-size: 52px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content > p:first-of-type {
        font-size: 20px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 16px 38px;
        font-size: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-wrapper {
        position: relative;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-label {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .btn-large,
    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 14px 32px;
        font-size: 15px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .over-mij-content {
        gap: 32px;
    }
    
    .text-content p {
        font-size: 15px;
    }
    
    .quote {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .dienst-card {
        padding: 32px 24px;
    }
    
    .dienst-icon {
        width: 60px;
        height: 60px;
    }
    
    .dienst-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .dienst-card h3 {
        font-size: 22px;
    }
    
    .dienst-card > p {
        font-size: 15px;
    }
    
    .dienst-list li {
        font-size: 14px;
    }
    
    .dienst-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-header h3 {
        font-size: 24px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .period {
        font-size: 18px;
    }
    
    .pricing-features li {
        font-size: 15px;
        padding: 14px 0;
    }
    
    .pricing-note {
        font-size: 14px;
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author {
        font-size: 16px;
    }
    
    .faq-container {
        padding: 0 4px;
    }
    
    .faq-question {
        padding: 22px 24px;
        font-size: 16px;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 22px 24px;
    }
    
    .cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content > p:first-of-type {
        font-size: 18px;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-main {
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column ul li a,
    .footer-column ul li span {
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 0;
    }
    
    .footer-copyright,
    .footer-bottom-links a,
    .footer-bottom-links span {
        font-size: 13px;
    }
}

/* ===== Smooth Scrolling ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Selection ===== */
::selection {
    background: var(--primary-green);
    color: var(--white);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}