/* Waarom Kiezen Page Styles */

/* Page Header */
.page-header {
    background: #ffffff;
    padding: 1.5rem 0 0.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

/* Stats Section */
.stats--why-choose {
    background: #1e293b;
    color: white;
    padding: 4rem 0;
}

.stats--why-choose .stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stats--why-choose .stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats--why-choose .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stats--why-choose .stat-label {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: #ffffff;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose__card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.why-choose__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-choose__card--speed::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.why-choose__card--price::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.why-choose__card--quality::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.why-choose__card--support::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.why-choose__card--allinone::before {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.why-choose__card--team::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #10b981;
}

.why-choose__card--speed .card__icon {
    color: #3b82f6;
}

.why-choose__card--price .card__icon {
    color: #f59e0b;
}

.why-choose__card--quality .card__icon {
    color: #8b5cf6;
}

.why-choose__card--support .card__icon {
    color: #ef4444;
}

.why-choose__card--allinone .card__icon {
    color: #06b6d4;
}

.why-choose__card--team .card__icon {
    color: #10b981;
}

.card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.card__description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card__features li {
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: #f8fafc;
}

.comparison__table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.comparison__header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #1e293b;
    color: white;
    font-weight: 700;
}

.comparison__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison__row:last-child {
    border-bottom: none;
}

.comparison__row:nth-child(even) {
    background: #f8fafc;
}

.comparison__feature,
.comparison__us,
.comparison__them {
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.comparison__header .comparison__feature {
    font-weight: 600;
    color: #ffffff;
}

.comparison__feature {
    font-weight: 600;
    color: #374151;
}

.comparison__us {
    color: #10b981;
    font-weight: 600;
    justify-content: center;
}

.comparison__them {
    color: #ef4444;
    font-weight: 600;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta__subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 1rem 0 0.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .why-choose__grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose__card {
        padding: 2rem;
    }
    
    .comparison__header,
    .comparison__row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison__feature,
    .comparison__us,
    .comparison__them {
        padding: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .comparison__feature {
        background: #f1f5f9;
        font-weight: 700;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .cta__subtitle {
        font-size: 1.1rem;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 0.75rem 0 0.25rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .why-choose__card {
        padding: 1.5rem;
    }
    
    .card__icon {
        width: 60px;
        height: 60px;
    }
    
    .stats--why-choose .stat-number {
        font-size: 2.5rem;
    }
}
