/* ========== СТРАНИЦА ВУЗА (institut.html) ========== */

/* ===== ЕДИНЫЕ ОТСТУПЫ ===== */
/* Основные секции: 80px, мобильные: 50px */

/* ===== HERO ===== */
.hero-institut {
    background: linear-gradient(135deg, #0A2B5B 0%, #1A4B8F 100%);
    padding: 150px 20px 70px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-institut::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(245,166,35,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.hero-institut-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-institut-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-institut-title span { color: var(--accent-orange); }
.hero-institut-subtitle {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}
.hero-institut-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.hero-institut-btn {
    background: var(--btn-accent);
    color: #fff;
    padding: 15px 34px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-institut-btn:hover { background: var(--accent-orange); transform: translateY(-2px); }
.hero-institut-btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: 15px 34px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-institut-btn-outline:hover { background: #fff; color: var(--logo-blue); }

.hero-representative {
    margin-bottom: 22px;
}
.hero-representative span {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* Блок «Приёмная комиссия» */
.hero-trust {
    display: flex;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-photo {
    flex: 0 0 36%;
    min-height: 200px;
}
.hero-trust-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-trust-info {
    flex: 1;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.hero-trust-address,
.hero-trust-phone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.hero-trust-address i,
.hero-trust-phone i {
    font-size: 18px;
    color: var(--accent-orange);
    margin-top: 3px;
}
.hero-trust-address strong,
.hero-trust-phone strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}
.hero-trust-address span,
.hero-trust-phone span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}
.hero-trust-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76,175,80,0.2);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    color: #81C784;
    width: fit-content;
}

/* ===== ИНФОРМАЦИОННЫЙ БЛОК: НЕТ ЕГЭ ===== */
.hint-block {
    padding: 80px 20px;
    background: transparent;
}
.hint-container {
    max-width: 760px;
    margin: 0 auto;
}
.hint-card {
    background: #FAFBFC;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    position: relative;
    padding: 30px 32px 22px;
}
.hint-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--logo-blue);
    color: #fff;
    padding: 4px 14px;
    border-radius: 0 0 10px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.85;
}
.hint-body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.hint-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.hint-icon i {
    font-size: 18px;
    color: var(--logo-blue);
    opacity: 0.6;
}
.hint-content {
    flex: 1;
}
.hint-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}
.hint-text strong {
    color: #333;
    font-weight: 700;
}
.hint-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    margin-left: 38px;
    flex-wrap: wrap;
}
.hint-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4CAF50;
    font-weight: 600;
}
.hint-free-badge i {
    font-size: 14px;
}
.hint-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.hint-btn:hover {
    background: #E8960A;
    transform: translateY(-1px);
}
.hint-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFF8E7;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 14px;
    border: 1px solid #FFE0B2;
}
.hint-warning i {
    font-size: 16px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 1px;
}
.hint-warning span {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== МОДАЛКА ВЫБОРА ЕГЭ ===== */
.ege-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 43, 91, 0.85);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ege-modal-overlay.active {
    display: flex;
}
.ege-modal-card {
    background: #fff;
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    padding: 35px 28px 28px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    text-align: center;
}
.ege-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    color: #b0b0b0;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}
.ege-modal-close:hover { color: #333; }
.ege-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--logo-blue);
    margin-bottom: 8px;
}
.ege-modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}
.ege-modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ege-option-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    background: #F9FAFB;
    border: 2px solid #eef2f7;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    color: #333;
    text-align: left;
}
.ege-option-btn:hover {
    border-color: var(--accent-orange);
    background: #FFF8E7;
}
.ege-option-btn i {
    font-size: 22px;
    color: var(--accent-orange);
    width: 28px;
    text-align: center;
}
.ege-modal-form {
    margin-top: 20px;
}
.ege-field {
    margin-bottom: 14px;
}
.ege-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
    text-align: left;
}
.ege-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #fff;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}
.ege-input:focus {
    border-color: #00569C;
    box-shadow: 0 0 0 3px rgba(0,86,156,0.08);
}
.ege-submit {
    width: 100%;
    background: #F5A623;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 6px;
}
.ege-submit:hover { background: #e8960a; }
.ege-privacy {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

/* ===== ПРОГРАММЫ ВУЗА ===== */
.institut-programs {
    padding: 80px 20px;
    background: white;
}
.institut-programs-container { max-width: 1300px; margin: 0 auto; }

/* ===== ВКЛАДКИ ПРОГРАММ ===== */
.programs-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.programs-tab {
    background: white;
    border: 2px solid #eef2f7;
    padding: 16px 32px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: #555;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.programs-tab:hover { border-color: var(--accent-orange); }
.programs-tab.active { border-color: var(--accent-orange); background: #FFF8E7; color: var(--logo-blue); }
.tab-logo { height: 34px; width: auto; }
.programs-tab span { text-align: left; line-height: 1.3; font-size: 15px; }
.programs-tab small { font-weight: 400; color: #888; font-size: 12px; }

.programs-grid { display: none; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; margin-bottom: 20px; }
.programs-grid.active { display: grid; }

/* КАРТОЧКА ПРОГРАММЫ */
.program-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    transition: all 0.35s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,86,156,0.12); }
.program-card-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #E67E22, #F5A623);
}
.program-card-badge.mti { background: linear-gradient(135deg, #00569C, #0078D4); }
.program-card-icon {
    width: 56px;
    height: 56px;
    background: #E1F0FF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.program-card-icon i { font-size: 26px; color: var(--logo-blue); }
.program-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--logo-blue);
    margin-bottom: 6px;
    padding-right: 55px;
    line-height: 1.3;
}
.program-card-profile { font-size: 13px; color: var(--accent-orange); font-weight: 700; margin-bottom: 10px; }
.program-card-desc { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 16px; flex: 1; }

/* ОСНОВНЫЕ СТИЛИ ДЕТАЛЕЙ КАРТОЧКИ (БЕЗ КОНФЛИКТОВ) */
.program-card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    flex-wrap: wrap;
    gap: 8px;
}
.program-card-details i {
    color: var(--accent-orange);
}
.program-card-duration {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 8px;
}
.program-card-btn {
    width: 100%;
    background: #E1F0FF;
    border: none;
    padding: 13px;
    border-radius: 40px;
    font-weight: 700;
    color: var(--logo-blue);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
    font-size: 14px;
}
.program-card-btn:hover { background: var(--logo-blue); color: white; }

/* МОБИЛЬНАЯ ВЕРСИЯ: ПЕРЕНОС ЦЕНЫ */
@media (max-width: 600px) {
    .program-card-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .program-card-details span {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .program-card-duration {
        flex-direction: column;
        gap: 4px;
    }
}

/* НАВИГАТОР */
.navigator-banner {
    background: linear-gradient(135deg, #0A2B5B 0%, #1A4B8F 100%);
    border-radius: 22px;
    padding: 44px 38px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}
.navigator-banner h3 { font-size: 26px; margin-bottom: 14px; }
.navigator-banner p { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 24px; line-height: 1.6; }
.navigator-benefits { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; }
.navigator-benefits span { font-size: 16px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.95); }
.navigator-benefits i { color: var(--accent-orange); font-size: 15px; }
.navigator-btn {
    background: var(--accent-orange);
    color: #fff;
    padding: 18px 44px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.navigator-btn:hover { background: #FFD166; color: var(--logo-blue); transform: translateY(-2px); }

.programs-all-link { text-align: center; margin-top: 10px; }
.btn-outline {
    background: transparent;
    border: 2px solid var(--logo-blue);
    color: var(--logo-blue);
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
.btn-outline:hover { background: var(--logo-blue); color: white; }

/* ===== УСЛОВИЯ ПОСТУПЛЕНИЯ ===== */
.college-conditions { padding: 80px 20px; background: #F5F7FB; }
.college-conditions-container { max-width: 1100px; margin: 0 auto; }
.conditions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.condition-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px 30px;
    border: 1px solid #eef2f7;
    transition: 0.3s;
    text-align: left;
}
.condition-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,86,156,0.06); }
.condition-card-logo { text-align: center; margin-bottom: 20px; }
.condition-card-logo img { height: 48px; }
.condition-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; color: var(--logo-blue); margin-bottom: 20px; text-align: center; }
.condition-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0; }
.condition-list li { font-size: 15px; color: #444; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; padding: 13px 0; border-bottom: 1px solid #f0f0f0; }
.condition-list li:last-child { border-bottom: none; }
.condition-list li i { color: var(--accent-orange); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.conditions-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFF8E7;
    padding: 14px 26px;
    border-radius: 40px;
    width: fit-content;
    margin: 0 auto;
}
.conditions-note i { color: var(--accent-orange); font-size: 15px; }

/* ===== СКРИНШОТЫ ===== */
.college-proof { padding: 80px 20px; background: white; }
.college-proof-container { max-width: 1200px; margin: 0 auto; }
.howto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.howto-card { text-align: center; }
.howto-photo {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: #E1F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
}
.howto-photo img { width: 100%; height: 100%; object-fit: cover; }
.howto-photo-placeholder { font-size: 48px; color: var(--logo-blue); opacity: 0.3; }
.howto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}
.howto-card:hover .howto-overlay { opacity: 1; }
.howto-overlay i { font-size: 36px; color: #fff; }
.howto-card h3 { font-size: 16px; color: var(--logo-blue); font-weight: 700; }

.screenshot-gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}
.screenshot-gallery-overlay.active { display: flex; }
.screenshot-gallery-close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}
.screenshot-gallery-close:hover { color: var(--accent-orange); }
.screenshot-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    font-size: 36px;
    padding: 16px 12px;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
    border-radius: 4px;
}
.screenshot-gallery-arrow:hover { background: rgba(255,255,255,0.25); }
.screenshot-gallery-prev { left: 15px; }
.screenshot-gallery-next { right: 15px; }
#screenshotGalleryImage {
    max-width: 88%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.screenshot-gallery-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ===== ГАРАНТИЯ ===== */
.guarantee-block { padding: 80px 20px; background: #F0F8F4; }
.guarantee-container { max-width: 720px; margin: 0 auto; }
.guarantee-card {
    background: #fff;
    border: 2px solid #E8F5E9;
    border-radius: 30px;
    padding: 50px 42px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(76,175,80,0.06);
}
.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guarantee-icon i { font-size: 38px; color: #388E3C; }
.guarantee-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: var(--logo-blue);
    margin-bottom: 10px;
}
.guarantee-card h2 span { color: #4CAF50; }
.guarantee-subtitle { font-size: 16px; color: #666; margin-bottom: 32px; }
.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-bottom: 30px;
}
.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #F9FAFB;
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid #eef2f7;
}
.guarantee-item-icon {
    width: 44px;
    height: 44px;
    background: var(--logo-blue);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.guarantee-item-text strong { display: block; font-size: 16px; color: var(--logo-blue); margin-bottom: 4px; }
.guarantee-item-text span { font-size: 15px; color: #555; line-height: 1.6; display: block; }
.guarantee-btn {
    background: #4CAF50;
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(76,175,80,0.25);
}
.guarantee-btn:hover { background: #388E3C; transform: translateY(-2px); }

/* ===== ДВА ПУТИ (СРАВНЕНИЕ) ===== */
.college-compare { padding: 80px 20px; background: #F5F7FB; }
.college-compare-container { max-width: 1100px; margin: 0 auto; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 25px; }
.compare-col {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid #eef2f7;
}
.compare-col-header { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; font-size: 20px; color: var(--logo-blue); }
.compare-col-header i { font-size: 28px; color: var(--accent-orange); }
.compare-col-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    margin: 0;
}
.compare-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.compare-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #555;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
}
.compare-list li span { font-size: 14px; }
.compare-list li strong { color: #333; font-weight: 700; }
.compare-who { font-size: 13px; color: #888; font-style: italic; margin-top: 15px; line-height: 1.5; }
.compare-footer {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 14px 25px;
    border-radius: 40px;
    width: fit-content;
    margin: 0 auto;
}

/* ===== ОПЛАТА ===== */
.college-payment { padding: 80px 20px; background: white; }
.college-payment-container { max-width: 1200px; margin: 0 auto; }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 30px; }
.payment-card {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 32px 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eef2f7;
}
.payment-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,86,156,0.08); }
.payment-icon { font-size: 42px; color: var(--accent-orange); margin-bottom: 18px; display: block; }
.payment-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--logo-blue); margin-bottom: 10px; }
.payment-price { font-size: 24px; font-weight: 800; color: var(--accent-orange); margin-bottom: 6px; }
.payment-card p { font-size: 14px; color: #666; line-height: 1.6; }

.tax-block {
    background: #E8F5E9;
    border-radius: 24px;
    padding: 35px 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border: 1px solid #C8E6C9;
}
.tax-icon { font-size: 48px; color: #4CAF50; flex-shrink: 0; }
.tax-text h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--logo-blue); margin-bottom: 10px; }
.tax-text p { font-size: 15px; color: #444; line-height: 1.6; }

/* ===== СКИДКИ ===== */
.college-discounts { padding: 80px 20px; background: #F5F7FB; }
.college-discounts-container { max-width: 1200px; margin: 0 auto; }
.discounts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 25px; }
.discount-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: all 0.3s;
}
.discount-card:hover { transform: translateY(-5px); }
.discount-card.highlight { border: 2px solid var(--accent-orange); background: #FFF8E7; }
.discount-percent { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 38px; color: var(--accent-orange); margin-bottom: 8px; }
.discount-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; color: var(--logo-blue); margin-bottom: 8px; }
.discount-card p { font-size: 13px; color: #666; line-height: 1.5; }
.discounts-info { text-align: center; font-size: 14px; color: #888; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 30px; }
.discounts-info i { color: var(--accent-orange); }

.discount-banner {
    background: linear-gradient(135deg, #0A2B5B 0%, #1A4B8F 100%);
    border-radius: 24px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.discount-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(245,166,35,0.1);
    border-radius: 50%;
}
.discount-banner-content { position: relative; z-index: 2; }
.discount-banner h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: white; margin-bottom: 8px; }
.discount-banner h3 span { color: var(--accent-orange); font-size: 32px; }
.discount-banner p { font-size: 15px; color: rgba(255,255,255,0.8); margin: 0; }
.discount-banner-btn {
    background: var(--accent-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.discount-banner-btn:hover { background: #FFD166; color: var(--logo-blue); transform: translateY(-2px); }
.discounts-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 20px;
    background: transparent;
}
.discounts-note i { color: var(--accent-orange); }

/* ===== ЛИЦЕНЗИИ ===== */
.college-license { padding: 80px 20px; background: white; }
.college-license-container { max-width: 1100px; margin: 0 auto; }
.license-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 25px; }
.license-card {
    background: #F9FAFB;
    border-radius: 22px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #eef2f7;
}
.license-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--logo-blue); margin-bottom: 18px; }
.license-logo { height: 45px; margin-bottom: 15px; }
.license-docs { display: flex; flex-direction: column; gap: 10px; }
.license-doc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--logo-blue);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #eef2f7;
    transition: 0.3s;
}
.license-doc-link:hover { border-color: var(--accent-orange); background: #FFF8E7; }
.license-doc-link i.fa-file-pdf { color: #E74C3C; }
.law-card { background: #FFF8E7; border-color: var(--accent-orange); }
.law-icon { font-size: 42px; color: var(--accent-orange); margin-bottom: 15px; display: block; }
.law-card p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 15px; }
.license-note { text-align: center; font-size: 14px; color: #888; }
.license-note a { color: var(--logo-blue); font-weight: 600; }

/* ===== ОТЗЫВЫ ===== */
.college-reviews { padding: 80px 20px; background: #F5F7FB; }
.college-reviews-container { max-width: 1200px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 35px; }
.review-card-large {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    cursor: pointer;
}
.review-card-large:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,86,156,0.1); }
.review-screenshot {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #E8F0FE;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.review-screenshot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.review-screenshot-placeholder { text-align: center; color: #aaa; font-size: 14px; }
.review-screenshot-placeholder i { font-size: 48px; display: block; margin-bottom: 10px; color: var(--logo-blue); opacity: 0.3; }
.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.review-card-large:hover .review-overlay { opacity: 1; }
.review-overlay i { font-size: 36px; color: #fff; }
.review-content { padding: 22px 25px 28px; }
.review-badge {
    display: inline-block;
    background: #FFF8E7;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
}
.review-stars { font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: #333; line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.review-author strong { display: block; color: var(--logo-blue); font-size: 15px; }
.review-author span { font-size: 12px; color: #888; }

.review-gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}
.review-gallery-overlay.active { display: flex; }
.review-gallery-close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}
.review-gallery-close:hover { color: var(--accent-orange); }
.review-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    font-size: 36px;
    padding: 16px 12px;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
    border-radius: 4px;
}
.review-gallery-arrow:hover { background: rgba(255,255,255,0.25); }
.review-gallery-prev { left: 15px; }
.review-gallery-next { right: 15px; }
#reviewGalleryImage {
    max-width: 88%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.review-gallery-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ===== FAQ ===== */
.college-faq { padding: 80px 20px; background: white; }
.college-faq-container { max-width: 1100px; margin: 0 auto; }
.faq-accordion { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: #F9FAFB; border-radius: 22px; overflow: hidden; border: 1px solid #eef2f7; transition: all 0.3s; }
.faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.faq-question {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--logo-blue);
}
.faq-question i { transition: 0.4s; color: var(--accent-orange); }
.faq-item.active .faq-question { background: #FFF8E7; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: white; padding: 0 30px; }
.faq-item.active .faq-answer { max-height: 400px; padding: 0 30px 25px 30px; }
.faq-answer p { font-size: 15px; color: #444; line-height: 1.7; }

/* ===== МОДАЛКИ ===== */
.navigator-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 43, 91, 0.85);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.navigator-modal-overlay.active { display: flex; }
.navigator-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    padding: 40px 30px 30px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.navigator-modal-close {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 30px;
    color: #b0b0b0;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
}
.navigator-modal-close:hover { color: #333; }
.navigator-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #00569C;
    text-align: center;
    margin-bottom: 24px;
}
.navigator-modal-form { display: flex; flex-direction: column; }
.navigator-field { margin-bottom: 16px; }
.navigator-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
}
.navigator-input,
.navigator-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #fff;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}
.navigator-input:focus,
.navigator-select:focus {
    border-color: #00569C;
    box-shadow: 0 0 0 3px rgba(0,86,156,0.08);
}
.navigator-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.navigator-submit {
    width: 100%;
    background: #F5A623;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 8px;
}
.navigator-submit:hover { background: #e8960a; transform: translateY(-1px); }
.navigator-privacy {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 14px;
}

.discount-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 43, 91, 0.85);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.discount-modal-overlay.active { display: flex; }
.discount-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    padding: 40px 30px 30px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.discount-modal-close {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 30px;
    color: #b0b0b0;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
}
.discount-modal-close:hover { color: #333; }
.discount-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #00569C;
    text-align: center;
    margin-bottom: 10px;
}
.discount-modal-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 24px;
}
.discount-modal-form { display: flex; flex-direction: column; }
.discount-field { margin-bottom: 16px; }
.discount-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
}
.discount-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #fff;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}
.discount-input:focus { border-color: #00569C; box-shadow: 0 0 0 3px rgba(0,86,156,0.08); }
.discount-submit {
    width: 100%;
    background: #F5A623;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 8px;
}
.discount-submit:hover { background: #e8960a; transform: translateY(-1px); }
.discount-privacy {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 14px;
}

#notification {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    z-index: 10000;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* ===== КТО НАШ СТУДЕНТ (АККОРДЕОН) ===== */
.who-student {
    padding: 80px 20px;
    background: #fff;
}
.who-student-container {
    max-width: 850px;
    margin: 0 auto;
}
.who-card {
    background: #F9FAFB;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
}
.who-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 30px;
}
.who-acc-item {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}
.who-acc-item.active {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(245,166,35,0.08);
}
.who-acc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.who-acc-header:hover {
    background: #FFF8E7;
}
.who-acc-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 42px;
    text-align: center;
}
.who-acc-title {
    font-weight: 700;
    font-size: 17px;
    color: var(--logo-blue);
    flex: 1;
}
.who-acc-arrow {
    font-size: 14px;
    color: var(--accent-orange);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.who-acc-item.active .who-acc-arrow {
    transform: rotate(180deg);
}
.who-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s;
}
.who-acc-item.active .who-acc-body {
    max-height: 600px;
}
.who-acc-body p {
    padding: 0 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.who-acc-situation {
    margin-bottom: 12px !important;
}
.who-acc-situation strong {
    color: var(--logo-blue);
}
.who-acc-reason {
    margin-top: 12px !important;
    margin-bottom: 20px !important;
}
.who-acc-reason strong {
    color: var(--logo-blue);
}
.who-btn {
    background: var(--accent-orange);
    color: #fff;
    padding: 18px 44px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.who-btn:hover {
    background: #e8960a;
    transform: translateY(-2px);
}

/* ===== НАВИГАТОР ЗАЧИСЛЕНИЯ 2026 ===== */
.quiz-block {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F8FAFE 0%, #FFFFFF 100%);
}
.quiz-container {
    max-width: 760px;
    margin: 0 auto;
}
.quiz-header {
    text-align: center;
    margin-bottom: 24px;
}
.quiz-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 4vw, 34px);
    color: var(--logo-blue);
    margin-bottom: 10px;
}
.quiz-header h2 span {
    color: var(--accent-orange);
}
.quiz-header p {
    font-size: 15px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}
.quiz-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 15px 45px rgba(0, 86, 156, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 1px solid #e8eaed;
}
.quiz-screen {
    display: none;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    box-sizing: border-box;
}
.quiz-screen.active {
    display: flex;
}
.quiz-badge {
    display: inline-block;
    background: var(--accent-ice);
    color: var(--logo-blue);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    align-self: flex-start;
}
.quiz-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--bg-gradient-start);
    margin-bottom: 20px;
    line-height: 1.3;
}
.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
    align-content: center;
}
.quiz-option {
    border: 2px solid #edf2f7;
    padding: 18px 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    text-align: center;
}
.quiz-option:hover {
    border-color: var(--logo-blue);
    background: var(--accent-ice);
    transform: translateY(-3px);
}
.quiz-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    background: none;
    border: none;
    color: var(--logo-blue);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    transition: opacity 0.2s;
    align-self: flex-start;
}
.quiz-back:hover {
    opacity: 0.7;
}
.quiz-result-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--logo-blue);
    text-align: center;
    margin-bottom: 12px;
}
.quiz-result-text {
    font-size: 15px;
    color: #555;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
}
.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
}
.quiz-form-group {
    width: 100%;
}
.quiz-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #fff;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}
.quiz-input:focus {
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(0,86,156,0.08);
}
.quiz-submit {
    width: 100%;
    background: var(--accent-orange);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.quiz-submit:hover {
    background: #E8960A;
    transform: translateY(-1px);
}
.quiz-privacy {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 4px;
}
.quiz-college-note {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #eef2f7;
}
.quiz-college-note p {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}
.quiz-college-btn {
    display: inline-block;
    background: var(--logo-blue);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.quiz-college-btn:hover { background: var(--accent-orange); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.quiz-screen.active {
    animation: fadeIn 0.4s ease forwards;
}

/* ===== БЛОК: СРОКИ ОБУЧЕНИЯ ===== */
.path-section {
    padding: 80px 20px;
    background: #F5F7FB;
}
.path-container {
    max-width: 1200px;
    margin: 0 auto;
}
.path-grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.path-card {
    background: #FFFFFF;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 0 0 28px 0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 86, 156, 0.08);
}
.path-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #E1F0FF 0%, #F0F4F9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.path-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.path-card-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    background: var(--logo-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.path-card-icon i {
    font-size: 18px;
    color: white;
}
.path-card-badge-img {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #4CAF50;
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 24px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-transform: uppercase;
}
.badge-large {
    font-size: 14px;
    padding: 7px 18px;
}
.path-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--logo-blue);
    padding: 22px 25px 0;
    margin-bottom: 8px;
}
.path-card-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    padding: 0 25px;
    flex: 1;
    margin-bottom: 14px;
}
.path-card-list {
    list-style: none;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.path-card-list li {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}
.path-card-list li i {
    color: var(--accent-orange);
    font-size: 11px;
    width: 14px;
    text-align: center;
}
.duration-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eef2f7;
}
.duration-row:last-child {
    border-bottom: none;
}
.duration-row span {
    font-size: 13px;
    color: #666;
}
.duration-row strong {
    font-size: 16px;
    color: var(--accent-orange);
    font-weight: 800;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .hero-institut { padding: 130px 15px 45px; }
    .hero-trust { flex-direction: column; }
    .hero-trust-photo { height: 180px; }
    .hero-trust-info { padding: 20px; }
    .hero-institut-btn, .hero-institut-btn-outline { width: 100%; justify-content: center; }
    
    .hint-footer { flex-direction: column; align-items: center; margin-left: 0; }
    .hint-btn { width: 100%; justify-content: center; }
    
    .howto-grid { grid-template-columns: 1fr 1fr; }
    
    .conditions-grid { grid-template-columns: 1fr; gap: 20px; }
    .condition-card { padding: 24px 18px; }
    .condition-card-logo img { height: 38px; }
    .condition-card h3 { font-size: 18px; margin-bottom: 16px; }
    .condition-list li { font-size: 13px; padding: 10px 0; gap: 10px; }
    .condition-list li i { font-size: 13px; width: 18px; margin-top: 2px; }
    .conditions-note { font-size: 12px; padding: 10px 16px; flex-wrap: wrap; gap: 6px; }
    
    .compare-grid { grid-template-columns: 1fr; gap: 20px; }
    .compare-col { padding: 25px 20px; }
    .compare-col-header h3 { font-size: 18px; }
    .compare-list li { font-size: 13px; flex-wrap: wrap; gap: 8px; justify-content: space-between; }
    .compare-footer { font-size: 14px; padding: 12px 20px; }
    
    .payment-grid { grid-template-columns: 1fr 1fr; }
    .discounts-grid { grid-template-columns: 1fr 1fr; }
    .discount-banner { flex-direction: column; text-align: center; }
    .discount-banner h3 { font-size: 22px; }
    
    .howto-grid { grid-template-columns: 1fr 1fr; }
    .license-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .tax-block { flex-direction: column; text-align: center; }
    .guarantee-card { padding: 30px 20px; }
    .guarantee-card h2 { font-size: 22px; }
    
    .programs-tab {
        flex-direction: column;
        text-align: center;
        padding: 12px 20px;
        min-width: 140px;
    }
    .programs-tab span { text-align: center; }
    .tab-logo { height: 30px; margin-bottom: 6px; }
    .programs-tabs { gap: 10px; }
    
    .quiz-card { padding: 35px 22px; min-height: 480px; }
    .quiz-options { grid-template-columns: 1fr; }
    .quiz-question { font-size: 22px; }
    .quiz-option { padding: 15px 14px; font-size: 14px; }
    
    .path-grid-2cols {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .path-card-img {
        height: 180px;
    }
    .path-card-title {
        font-size: 16px;
        padding: 18px 20px 0;
    }
    .path-card-desc,
    .path-card-list {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    header#mainHeader { top: 0; padding: 0; }
    .header-inner { border-radius: 0 0 24px 24px; }
    .hero-institut { padding-top: 180px; }
}

@media (max-width: 600px) {
    .hint-card { padding: 26px 18px 18px; }
    .hint-body { flex-direction: column; align-items: center; text-align: center; }
    .hint-icon { margin-bottom: 4px; }
    .hint-footer { margin-left: 0; gap: 12px; }
    
    .howto-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    
    .who-card { padding: 25px 18px; }
    .who-acc-header { padding: 16px 18px; }
    .who-acc-title { font-size: 15px; }
    .who-acc-body p { padding: 0 18px; font-size: 13px; }
    .who-btn { width: 100%; }
    
    .programs-tab {
        padding: 10px 14px;
        min-width: 120px;
    }
    .programs-tab span { font-size: 13px; }
    .programs-tab small { font-size: 10px; }
    .tab-logo { height: 24px; }
    
    .duration-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }
    .duration-row strong {
        font-size: 15px;
    }
    .path-card-badge-img {
        font-size: 11px;
        padding: 5px 12px;
    }
    .badge-large {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 500px) {
    .payment-grid { grid-template-columns: 1fr; }
    .discounts-grid { grid-template-columns: 1fr; }
    .howto-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .condition-card { padding: 18px 14px; }
    .condition-card h3 { font-size: 16px; }
    .condition-list li { font-size: 12px; padding: 8px 0; }
    .condition-list li i { font-size: 12px; width: 16px; }
    .conditions-note { font-size: 11px; padding: 8px 12px; border-radius: 30px; }
    
    .compare-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ===== ФИКС КАРТОЧЕК НА МАЛЕНЬКИХ ЭКРАНАХ ===== */
@media (max-width: 450px) {
    .programs-grid {
        grid-template-columns: 1fr !important;
    }
    .program-card {
        min-width: 0 !important;
        width: 100% !important;
    }
}

/* ===== ЕДИНЫЙ СТАНДАРТ ОТСТУПОВ (40px + 40px = 80px между контентом) ===== */

/* Базовые секции */
.institut-programs,
.college-programs,
.college-conditions,
.guarantee-block,
.who-student,
.college-compare,
.college-payment,
.college-discounts,
.college-proof,
.college-license,
.college-reviews,
.college-faq,
.quiz-block,
.path-section,
.lead-magnet,
.hint-block {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Hero — отдельно (больше сверху, меньше снизу) */
.hero-institut,
.hero-college {
    padding-top: 130px;
    padding-bottom: 40px;
}

/* Заголовки секций */
.section-header {
    margin-bottom: 40px;
}

/* ===== МОБИЛЬНЫЕ (768px и меньше) ===== */
@media (max-width: 768px) {
    .institut-programs,
    .college-programs,
    .college-conditions,
    .guarantee-block,
    .who-student,
    .college-compare,
    .college-payment,
    .college-discounts,
    .college-proof,
    .college-license,
    .college-reviews,
    .college-faq,
    .quiz-block,
    .path-section,
    .lead-magnet,
    .hint-block {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .hero-institut,
    .hero-college {
        padding-top: 130px;
        padding-bottom: 25px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
}

/* ===== ОЧЕНЬ МАЛЕНЬКИЕ (480px и меньше) ===== */
@media (max-width: 480px) {
    .institut-programs,
    .college-programs,
    .college-conditions,
    .guarantee-block,
    .who-student,
    .college-compare,
    .college-payment,
    .college-discounts,
    .college-proof,
    .college-license,
    .college-reviews,
    .college-faq,
    .quiz-block,
    .path-section,
    .lead-magnet,
    .hint-block {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .hero-institut,
    .hero-college {
        padding-top: 155px;
        padding-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
}