
    .contacts-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin: 40px 0;
    }
    .contact-card {
        background: #fff;
        border-radius: 24px;
        padding: 25px 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transition: transform 0.2s, box-shadow 0.2s;
        text-align: center;
        border: 1px solid #eef2f6;
    }
    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .contact-card-title {
        font-size: 1.3rem;
        margin: 0 0 15px 0;
        color: #1e3c72;
    }
    .contact-card-phone {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 10px 0;
    }
    .contact-card-phone a {
        color: #2a7fff;
        text-decoration: none;
    }
    .contact-card-time {
        font-size: 1.2rem;
        font-weight: bold;
        margin: 10px 0;
    }
    .holiday {
        display: inline-block;
        background: #e63946;
        color: white;
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        margin-left: 8px;
        white-space: nowrap;
    }
    .contact-card-desc {
        color: #4a5568;
        margin: 15px 0;
        line-height: 1.4;
    }
    .contact-card-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    .contact-btn {
        display: inline-block;
        background: #e9ecef;
        color: #1e3c72;
        padding: 10px 15px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }
    .call-btn {
        background: #ff6b35;
        color: white;
    }
    .callback-btn {
        background: #2a7fff;
        color: white;
    }
    .districts-btn {
        background: #50b432;
        color: white;
        display: inline-block;
        margin-top: 10px;
    }
    .contact-btn:hover {
        transform: scale(1.02);
        opacity: 0.9;
    }
    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    .social-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #e9ecef;
        padding: 8px 18px;
        border-radius: 40px;
        text-decoration: none;
        color: #1e3c72;
        font-weight: 500;
        transition: 0.2s;
    }
    .social-link.telegram:hover {
        background: #0088cc;
        color: white;
    }
    .social-link.max:hover {
        background: #ff6b35;
        color: white;
    }
    @media (max-width: 900px) {
        .contacts-cards-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }
    @media (max-width: 600px) {
        .contacts-cards-grid {
            grid-template-columns: 1fr;
        }
        .contact-card-phone {
            font-size: 1.2rem;
        }
        .holiday {
            white-space: normal;
            margin-top: 5px;
            display: inline-block;
        }
    }



    .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin: 40px 0;
    }
    .trust-card {
        background: #fff;
        border-radius: 24px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transition: transform 0.2s, box-shadow 0.2s;
        border: 1px solid #eef2f6;
    }
    .trust-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 30px rgba(0,0,0,0.1);
    }
    .trust-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    .trust-title {
        font-size: 1.4rem;
        margin: 0 0 10px;
        color: #1e3c72;
    }
    .trust-desc {
        font-size: 0.95rem;
        color: #4a5568;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    .trust-btn {
        display: inline-block;
        background: #2a7fff;
        color: white;
        padding: 10px 20px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.2s;
        cursor: pointer;
    }
    .trust-btn:hover {
        background: #1a5fbf;
    }
    @media (max-width: 900px) {
        .trust-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }
    @media (max-width: 550px) {
        .trust-grid {
            grid-template-columns: 1fr;
        }
    }


    /* Блок клиентов */
    .clients-block {
        margin: 40px 0;
        background: #f8fafc;
        border-radius: 28px;
        padding: 30px 20px;
    }
    .clients-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    .clients-map {
        flex: 1;
        min-width: 250px;
        text-align: center;
    }
    .reviews-links {
        flex: 1;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .review-card {
        display: flex;
        align-items: center;
        gap: 15px;
        background: white;
        padding: 15px 20px;
        border-radius: 60px;
        text-decoration: none;
        transition: all 0.2s;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    }
    .review-card:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        border-color: #cbd5e1;
    }
    .review-card.yandex:hover {
        background: #fff6e5;
    }
    .review-card.google:hover {
        background: #e8f0fe;
    }
    .review-icon {
        font-size: 2rem;
    }
    .review-text {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .review-text strong {
        font-size: 1rem;
        color: #1e293b;
    }
    .review-text span {
        font-size: 0.8rem;
        color: #475569;
    }
    .review-arrow {
        font-size: 1.2rem;
        color: #94a3b8;
    }

    /* Финальный CTA-блок */
    .final-cta {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-radius: 32px;
        padding: 40px 30px;
        margin: 50px 0 30px;
        text-align: center;
        color: white;
    }
    .final-cta-content {
        max-width: 800px;
        margin: 0 auto;
    }
    .final-cta-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    .final-cta h3 {
        font-size: 1.8rem;
        margin: 0 0 10px;
        color: white;
    }
    .final-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
        opacity: 0.9;
    }
    .final-cta-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .cta-phone {
        background: #ff6b35;
        color: white;
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.2s;
    }
    .cta-phone:hover {
        background: #e55a2b;
    }
    .cta-callback {
        background: #2a7fff;
        border: none;
        padding: 12px 24px;
        border-radius: 50px;
        color: white;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s;
    }
    .cta-callback:hover {
        background: #1a5fbf;
    }

    @media (max-width: 700px) {
        .final-cta h3 {
            font-size: 1.4rem;
        }
        .cta-phone, .cta-callback {
            width: 100%;
            text-align: center;
        }
        .review-card {
            border-radius: 20px;
        }
    }