/* =============================================
   HERO CTA STRIP — Telegram / Max / Звонок
   Общий компонент (inc/hero-cta-strip.php),
   вынесен из seo-service.css при сужении его
   области подключения (Фаза 1 унификации).
   ============================================= */

.seo-cta-strip {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #6ee7b7 100%);
    padding: 20px 0;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    /*
     * QA 13.08.2026. Было 1200px при контейнере страницы 1320px — полоса контактов
     * оказывалась уже остального контента и «проваливалась» внутрь макета.
     * На мобильном при этом прижималась вплотную к краям экрана: боковых полей нет.
     */
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}
.seo-cta-strip::before {
    display: none;
}
.seo-cta-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.seo-cta-strip__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.seo-cta-strip__btn svg {
    width: 18px;
    height: 18px;
}
.seo-cta-strip__btn--telegram,
.seo-cta-strip__btn--max {
    background: rgba(5, 150, 105, 0.12);
    /* QA 13.08.2026: #047857 давал 3,89:1 на светлой подложке полосы. #065F46 — 5,5:1. */
    color: #065F46;
    border: 1px solid rgba(5, 150, 105, 0.2);
}
.seo-cta-strip__btn--telegram:hover,
.seo-cta-strip__btn--max:hover {
    background: rgba(5, 150, 105, 0.2);
    border-color: rgba(5, 150, 105, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.15);
    color: #047857;
    text-decoration: none;
}
.seo-cta-strip__btn--call {
    background: #059669;
    color: #fff;
    border: 1px solid #059669;
}
.seo-cta-strip__btn--call:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 992px) {
    .seo-cta-strip__inner {
        gap: 10px;
    }
    .seo-cta-strip__btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .seo-cta-strip__inner {
        flex-direction: column;
        gap: 8px;
    }
    .seo-cta-strip__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .seo-cta-strip__btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* QA 13.08.2026: боковые поля на узком экране — полоса прижималась к краям вплотную. */
@media (max-width: 768px) {
    .seo-cta-strip {
        margin-left: 16px;
        margin-right: 16px;
    }
}
