/**
 * ST landings — VOICE component.
 * Selectors: .st-voice, .st-voice-wrap, .st-voice-feature*.
 * Token-driven: respects --st-primary, --st-cream, --st-border, etc.
 */

.st-voice {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--st-cream) 0%, var(--st-secondary) 60%, var(--st-cream) 100%);
}

.st-voice-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.st-voice-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(var(--st-primary-rgb), 0.12);
    color: var(--st-primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.st-voice-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--st-text);
    line-height: 1.15;
    margin: 0 0 16px;
    max-width: 760px;
}

.st-voice-subtitle {
    font-size: 17px;
    color: var(--st-text-md);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 0 44px;
}

.st-voice-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.st-voice-feature {
    background: var(--st-white);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 8px 30px rgba(45, 45, 45, 0.05);
    border: 1px solid var(--st-border);
    text-align: center;
    transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), box-shadow 0.3s;
}

.st-voice-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(var(--st-primary-rgb), 0.15);
}

.st-voice-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--st-primary-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--st-primary);
}

.st-voice-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--st-text);
    margin: 0 0 8px;
}

.st-voice-feature-text {
    font-size: 14px;
    color: var(--st-text-md);
    line-height: 1.55;
    margin: 0;
}

.st-voice-cta {
    margin-top: 8px;
}

.st-voice-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--st-text-lt);
    line-height: 1.4;
    max-width: 480px;
}

@media (max-width: 900px) {
    .st-voice {
        padding: 56px 20px;
    }
    .st-voice-title {
        font-size: 30px;
    }
    .st-voice-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }
    .st-voice-features {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .st-voice-title {
        font-size: 26px;
    }
}
