/* Why Us Page Styles */
.why-hero {
    padding: 10rem 0 5rem;
    background-color: var(--bg-light);
    color: var(--text-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}

.why-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.why-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

/* Stats Grid */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25, 135, 84, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Advantages Accordion/Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.advantage-item {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 576px) {
    .advantage-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
}

.advantage-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    background-color: rgba(25, 135, 84, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.advantage-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.advantage-text p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Large Banner */
.satisfaction-banner {
    background: linear-gradient(135deg, #212529 0%, #111315 100%);
    color: #ffffff;
    border-radius: 4px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

@media (max-width: 768px) {
    .satisfaction-banner {
        padding: 2.5rem;
    }
}

.satisfaction-banner::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    bottom: -20%;
    right: -10%;
}

.satisfaction-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.satisfaction-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.satisfaction-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 2rem;
}
