/* =============================================
   iTOP для клиник — Вступление (ic-intro)
   ============================================= */
.ic-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: #f0f4ff;
    border-radius: 20px;
    padding: 32px;
    margin-top: 24px;
    align-items: stretch;
}

.ic-intro__media {
    display: flex;
    align-items: stretch;
    position: relative;
}

.ic-intro__photo {
    flex: 0 0 55%;
    width: 55%;
    height: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.ic-intro__stat {
    flex: 1;
    background: #003baa;
    border-radius: 16px;
    padding: 24px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    margin-left: -2px;
    position: relative;
    z-index: 2;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
}

.ic-intro__stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ic-intro__stat-label {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.75;
}

.ic-intro__stat-value {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.ic-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.ic-intro__title {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: #003baa;
    margin: 0;
    line-height: 1.2;
}

.ic-intro__text {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    margin: 0;
}

.ic-intro__text strong {
    font-weight: 600;
}

.ic-intro__cta {
    align-self: flex-start;
}

.ic-intro__cta.btn {
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 22px;
    line-height: 1.2;
}

/* =============================================
   iTOP для клиник — Баннер «Обучение подойдёт» (ic-banner)
   ============================================= */
.ic-banner {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}

.ic-banner__header {
    background: linear-gradient(to bottom, #003baa, #fff);
    padding: 40px 40px 30px;
}

.ic-banner__title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin: 0;
}

.ic-banner__inner {
    background: #fff;
    padding: 0 40px 40px;
}

.ic-banner__body {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.ic-banner__photo {
    flex: 0 0 55%;
    display: flex;
}

.ic-banner__photo img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.ic-banner__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.ic-banner__pill {
    background: #2760cc;
    border-radius: 40px;
    padding: 16px 24px;
    transition: background 0.2s;
}

.ic-banner__pill:hover {
    background: #1a4fba;
}

.ic-banner__pill-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* =============================================
   iTOP для клиник — Две части курса (ic-parts)
   ============================================= */
.ic-parts {
    background: #003baa;
    border-radius: 20px;
    padding: 40px 48px;
    margin-top: 40px;
}

.ic-parts__title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin: 0 0 28px;
}

.ic-parts__item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.ic-parts__item:last-child {
    margin-bottom: 0;
}

.ic-parts__tab {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 44px 16px 28px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px 9999px 9999px 0;
    align-self: flex-start;
    min-width: 260px;
}

.ic-parts__item-title {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.ic-parts__icon {
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.ic-parts__icon svg {
    width: 22px;
    height: 22px;
}

.ic-parts__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 36px;
    padding: 24px 32px 32px;
    align-items: start;
}

.ic-parts__list {
    column-count: 2;
    column-gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #fff;
}

.ic-parts__list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 14px;
    break-inside: avoid;
}

.ic-parts__list li:last-child {
    margin-bottom: 0;
}

.ic-parts__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.ic-parts__photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* =============================================
   iTOP для клиник — Условия проведения (ic-terms)
   ============================================= */
.ic-terms {
    margin-top: 40px;
}

.ic-terms__title {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: #003baa;
    margin: 0 0 24px;
    line-height: 1.2;
}

.ic-terms__notice {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f0f4ff;
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 32px;
}

.ic-terms__notice-icon {
    flex: 0 0 56px;
    width: 56px;
}

.ic-terms__notice-icon img {
    width: 100%;
    display: block;
}

.ic-terms__notice-text {
    margin: 0;
    color: #003baa;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.ic-terms__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ic-terms__col-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
    line-height: 1.3;
}

.ic-terms__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ic-terms__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: #222;
}

.ic-terms__list li:last-child {
    margin-bottom: 0;
}

.ic-terms__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #003baa;
    border-radius: 50%;
}

.ic-terms__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.ic-terms__btn.btn {
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    line-height: 1.2;
    font-size: 15px;
}

.ic-terms__btn--outline.btn {
    background: transparent;
    color: #003baa;
    border: 2px solid #003baa;
}

.ic-terms__btn--outline.btn:hover {
    background: #003baa;
    color: #fff;
}

/* =============================================
   iTOP для клиник — Шапка отзывов (ic-reviews-header)
   Заголовок + кнопка «Оставить отзыв».
   Сам список и попап стилизуются в шаблонах компонентов.
   ============================================= */
.ic-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    margin: 40px 0 24px;
}

.ic-reviews-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.ic-reviews-header .sg-review-popup-trigger {
    flex-shrink: 0;
}

/* =============================================
   iTOP для клиник — Контакты менеджера (ic-info)
   Одна синяя плашка во всю ширину: иконка слева, контент справа.
   ============================================= */
.ic-info {
    margin-top: 40px;
}

.ic-info__card {
    background: #2760cc;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.ic-info__icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.ic-info__body {
    flex: 1;
    min-width: 0;
}

.ic-info__heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ic-info__list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.6;
}

.ic-info__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.ic-info__list li:last-child {
    margin-bottom: 0;
}

.ic-info__list li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.ic-info__list a {
    color: #fff;
    text-decoration: underline;
}

.ic-info__list a:hover {
    color: #fff;
    text-decoration: none;
}
