/* ===== Страница «Почему выбирают нас» ===== */

.why-page-hero {
    text-align: center;
    padding: 48px 24px 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    border-radius: 0 0 32px 32px;
    margin: -10px -20px 40px;
    color: #1e3a8a;
    position: relative;
    overflow: hidden;
}

.why-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(102, 126, 234, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.why-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.why-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--aurora-indigo) 60%, var(--aurora-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-page-hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.why-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #e8ecf4;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.15);
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-aurora, linear-gradient(90deg, #6366f1, #a855f7, #ec4899));
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.why-feature-card:nth-child(2) .why-feature-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.why-feature-card:nth-child(3) .why-feature-icon { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.why-feature-card:nth-child(4) .why-feature-icon { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.why-feature-card:nth-child(5) .why-feature-icon { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.why-feature-card:nth-child(6) .why-feature-icon { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.why-feature-card:nth-child(7) .why-feature-icon { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }

.why-feature-card h2 {
    font-size: 20px;
    color: #1e3a8a;
    margin: 0 0 12px;
    font-weight: 700;
}

.why-feature-card p {
    color: #4a5568;
    line-height: 1.75;
    margin: 0 0 12px;
    font-size: 15px;
}

.why-feature-card ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: #4a5568;
    line-height: 1.7;
    font-size: 14px;
}

.why-feature-card ul li {
    margin-bottom: 6px;
}

.why-highlight-banner {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 24px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    margin-bottom: 48px;
}

.why-highlight-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #1e3a8a;
    margin: 0 0 12px;
}

.why-highlight-banner p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 24px;
}

.why-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.why-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.why-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.45);
    color: #fff;
}

.why-cta-btn--outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: none;
}

.why-cta-btn--outline:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
    box-shadow: none;
}

@media (max-width: 768px) {
    .why-page-hero {
        margin-left: -12px;
        margin-right: -12px;
        border-radius: 0 0 20px 20px;
        padding: 36px 16px 32px;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    .why-feature-card {
        padding: 24px 20px;
    }
}
