.contacts-centre * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contacts-centre {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #F9FCFF 0%, #F0F5FD 100%);
    border-radius: 2rem;
    padding: 1.8rem 2rem 2rem 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 20, 40, 0.2), 0 1px 2px rgba(0,0,0,0.02);
    border: 1px solid rgba(255,255,255,0.6);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.contacts-centre .hotlines-header {
    text-align: center;
    margin-bottom: 1.8rem;
}
.contacts-centre .hotlines-header h2 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(120deg, #0B2F5F, #1B4A7A);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.contacts-centre .region-sub {
    font-size: 1rem;
    font-weight: 500;
    color: #2c6280;
    background: rgba(43, 98, 128, 0.08);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 60px;
    margin-top: 0.25rem;
}
.contacts-centre .divider-light {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #2C7DA0, #61A5C2);
    margin: 0.8rem auto 0 auto;
    border-radius: 4px;
}

.contacts-centre .ins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 1.5rem 0 1.8rem 0;
}

.contacts-centre .ins-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.75rem;
    padding: 1.5rem 1.25rem 1.6rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255,255,255,0.8);
}
.contacts-centre .ins-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 36px -12px rgba(28, 65, 87, 0.2);
    background: white;
    border-color: rgba(97, 165, 194, 0.25);
}

.contacts-centre .company-name {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0D3B4F;
    border-left: 4px solid #2C7DA0;
    padding-left: 0.85rem;
    margin-bottom: 0.4rem;
}
.contacts-centre .company-sub {
    font-size: 0.95rem;
    color: #5c6f87;
    margin-bottom: 1.1rem;
    margin-top: 0.2rem;
    padding-left: 0.9rem;
    font-weight: 450;
    border-left: 2px solid #B3D4E5;
}

.contacts-centre .phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.5rem;
}
.contacts-centre .phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F7FBFE;
    padding: 0.65rem 1rem;
    border-radius: 1.2rem;
    transition: background 0.2s;
    border: 1px solid #E9F0F5;
    flex-wrap: wrap;
}
.contacts-centre .phone-item:hover {
    background: #EFF6FA;
    border-color: #CEE2EC;
}
.contacts-centre .phone-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
/* номера телефонов — без переносов */
.contacts-centre .phone-number {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    font-family: 'Inter', 'SF Mono', monospace;
    color: #1E5B7A;
    text-decoration: none;
    white-space: nowrap;
    word-break: keep-all;
    transition: color 0.2s;
}
.contacts-centre .phone-number:hover {
    color: #0F4C6B;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contacts-centre .note-free {
    font-size: 0.85rem;
    color: #6e8aa5;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .contacts-centre .phone-item {
        gap: 6px;
    }
    .contacts-centre .phone-number {
        font-size: 1rem;
        white-space: nowrap;
    }
    .contacts-centre .note-free {
        white-space: normal;
        font-size: 0.65rem;
    }
}

/* Блок ЕДИНЫЙ КОНТАКТ-ЦЕНТР */
.contacts-centre .unified-center {
    background: linear-gradient(115deg, #FFFFFF 0%, #F4FAFE 100%);
    border-radius: 1.8rem;
    padding: 1.4rem 1.6rem;
    margin: 1.2rem 0 1.5rem 0;
    text-align: center;
    border: 1px solid rgba(44, 125, 160, 0.35);
    box-shadow: 0 6px 14px rgba(0, 30, 40, 0.05);
}
.contacts-centre .unified-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #0C4E6E;
    text-transform: uppercase;
    background: rgba(44, 124, 160, 0.1);
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    margin-bottom: 0.7rem;
}
.contacts-centre .unified-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1C5A7A;
    margin-bottom: 0.5rem;
}
.contacts-centre .unified-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #FFFFFFEE;
    padding: 0.6rem 1.2rem;
    border-radius: 3rem;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.contacts-centre .unified-phone .phone-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #005A8C;
    white-space: nowrap;
}
.contacts-centre .unified-phone .note-free {
    font-size: 1rem;
    font-weight: 500;
    background: #E3F0F5;
    padding: 0.2rem 0.7rem;
    border-radius: 32px;
    white-space: nowrap;
}

.contacts-centre .footer-note {
    margin-top: 1rem;
    padding-top: 0.8rem;
    text-align: center;
    font-size: 0.9rem;
    color: #5c6e8a;
    border-top: 1px solid rgba(44, 124, 160, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.contacts-centre .badge {
    background: #E3F0F5;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #175873;
}

@media (max-width: 600px) {
    .contacts-centre {
        padding: 1.2rem 1rem 1.5rem 1rem;
    }
    .contacts-centre .hotlines-header h2 {
        font-size: 1.45rem;
    }
    .contacts-centre .company-name {
        font-size: 1.2rem;
    }
    .contacts-centre .unified-phone .phone-number {
        font-size: 1.3rem;
    }
}
.contacts-centre a {
    text-decoration: none;
}