/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px 30px;
}

.reason-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-orange);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    color: var(--secondary-teal);
    transform: scale(1.1);
}

.reason-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 20px;
    }
    
    .why-choose-us h2 {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .reason-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us h2 {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 31, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.values-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.values-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.8;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(90, 31, 166, 0.2);
    border-radius: 12px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(90, 31, 166, 0.08);
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.value-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.value-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 20px;
    }
    
    .values-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .values-intro {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .values-grid {
        gap: 25px;
    }
    
    .value-item {
        padding: 35px 25px;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
    }
}
