        /* Stagger effect for cards */
        .trending-grid .tool-card, .all-tools-grid .tool-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.5s ease, box-shadow 0.3s ease;
        }

        .trending-grid.visible .tool-card, .all-tools-grid.visible .tool-card {
            opacity: 1;
            transform: translateY(0);
        }

        .trending-grid.visible .tool-card:nth-child(1) { transition-delay: 0.05s; }
        .trending-grid.visible .tool-card:nth-child(2) { transition-delay: 0.15s; }
        .trending-grid.visible .tool-card:nth-child(3) { transition-delay: 0.25s; }
        .trending-grid.visible .tool-card:nth-child(4) { transition-delay: 0.35s; }

        /* ========== TRENDING SECTION ========== */
        .section-label {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 2.5rem 0 1.8rem 0;
        }

        .section-label i {
            font-size: 2rem;
            color: #e67e22;
            background: #fff0e4;
            padding: 0.6rem;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

        body.dark .section-label i {
            background: #2d2a1f;
        }

        .section-label.visible i {
            transform: scale(1.05);
        }

        .section-label h2 {
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body.dark .page-title h1 {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .tool-card {
            background: var(--card-bg);
            border-radius: 32px;
            padding: 2rem 1rem 1.8rem;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            border: 1px solid var(--card-border);
            aspect-ratio: 1 / 1;
            width: 100%;
        }

        .tool-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: #d9e6f2;
        }

        body.dark .tool-card:hover {
            border-color: #3b82f6;
        }

        .card-image {
            width: 96px;
            height: 96px;
            background: var(--icon-bg);
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            font-size: 2.8rem;
            color: var(--icon-color);
            transition: all 0.3s;
        }

        .tool-card:hover .card-image {
            background: #e6f0f8;
            transform: scale(1.05);
        }

        body.dark .tool-card:hover .card-image {
            background: #3b82f620;
        }

        .tool-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .tool-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            max-width: 140px;
        }

        .trend-badge {
            background: var(--trend-badge-bg);
            color: var(--trend-badge-text);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.25rem 1rem;
            border-radius: 40px;
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
            transition: transform 0.2s ease;
        }

        .tool-card:hover .trend-badge {
            transform: scale(1.05);
        }

        /* ========== WHY CHOOSE US SECTION ========== */
        .why-choose-us {
            background: var(--why-bg);
            border-radius: 48px;
            padding: 3rem 2rem;
            margin: 4rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--why-border);
            transition: all 0.5s ease;
        }

        .why-choose-us.visible {
            box-shadow: 0 20px 40px -12px rgba(26, 75, 110, 0.15);
        }

        .why-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .why-header h2 {
            font-size: 2.3rem;
            font-weight: 800;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: linear-gradient(135deg, #1a4b6e, #3182ae);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        body.dark .why-header h2 {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .why-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        .feature-item {
            text-align: center;
            padding: 1.5rem 1rem;
            background: var(--feature-bg);
            border-radius: 28px;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid var(--feature-border);
            opacity: 0;
            transform: translateY(30px);
        }

        .why-choose-us.visible .feature-item {
            opacity: 1;
            transform: translateY(0);
        }

        .why-choose-us.visible .feature-item:nth-child(1) { transition-delay: 0.05s; }
        .why-choose-us.visible .feature-item:nth-child(2) { transition-delay: 0.12s; }
        .why-choose-us.visible .feature-item:nth-child(3) { transition-delay: 0.19s; }
        .why-choose-us.visible .feature-item:nth-child(4) { transition-delay: 0.26s; }
        .why-choose-us.visible .feature-item:nth-child(5) { transition-delay: 0.33s; }

        .feature-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
            border-color: #cde3f2;
        }

        body.dark .feature-item:hover {
            border-color: #3b82f6;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--icon-bg);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 2rem;
            color: var(--icon-color);
            transition: transform 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.08);
        }

        .feature-item h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .feature-item p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* ========== ALL TOOLS ========== */
        .all-tools-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin: 2.5rem 0 1.8rem;
        }

        .all-tools-header h2 {
            font-size: 2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-box {
            background: var(--search-bg);
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            border-radius: 60px;
            display: flex;
            align-items: center;
            box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--search-border);
            min-width: 280px;
            transition: all 0.3s ease;
        }

        .search-box:focus-within {
            border-color: #2b6c9e;
            box-shadow: 0 8px 22px -12px #2b6c9e40;
            transform: scale(1.01);
        }

        .search-box i {
            color: var(--text-secondary);
            transition: color 0.2s;
        }

        .search-box:focus-within i {
            color: #2b6c9e;
        }

        .search-box input {
            border: none;
            padding: 0.8rem 0.8rem;
            font-size: 1rem;
            background: transparent;
            outline: none;
            width: 100%;
            font-family: 'Inter', sans-serif;
            color: var(--text-primary);
        }

        .search-box input::placeholder {
            color: var(--text-secondary);
        }

        .all-tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0 3rem;
        }

        /* Responsive fix voor mobiel - voorkomt uitlopen */
@media (max-width: 768px) {
    /* Algemene container padding */
    .wrapper {
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: hidden;
    }
    
    /* Trending grid - 2 kolommen op mobiel */
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* All tools grid - FORCEREN 2 kolommen op mobiel */
    .all-tools-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    /* Features grid wordt stacked op mobiel */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Tool cards aanpassen voor mobiel */
    .tool-card {
        padding: 1.2rem 0.8rem 1rem;
        aspect-ratio: auto;
        min-height: 180px;
    }
    
    .card-image {
        width: 64px;
        height: 64px;
        font-size: 2rem;
        border-radius: 24px;
    }
    
    .tool-card h3 {
        font-size: 1rem;
    }
    
    .tool-card p {
        font-size: 0.75rem;
    }
    
    /* Search box aanpassen */
    .all-tools-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
        width: 100%;
    }
    
    /* Why choose us section */
    .why-choose-us {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .why-header h2 {
        font-size: 1.8rem;
    }
    
    .why-header p {
        font-size: 0.95rem;
    }
    
    .section-label h2 {
        font-size: 1.6rem;
    }
    
    .section-label i {
        font-size: 1.5rem;
        padding: 0.4rem;
    }
}

/* Voor extra kleine schermen (onder 400px) */
@media (max-width: 480px) {
    .trending-grid {
        gap: 0.8rem;
    }
    
    .all-tools-grid {
        gap: 0.8rem;
    }
    
    .tool-card {
        padding: 1rem 0.5rem 0.8rem;
    }
    
    .card-image {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        border-radius: 20px;
        margin-bottom: 0.8rem;
    }
    
    .tool-card h3 {
        font-size: 0.9rem;
    }
    
    .trend-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.8rem;
    }
}