/* ========== СТИЛИ ГЛАВНОЙ СТРАНИЦЫ (index.css) ========== */
/* Только уникальные блоки, которые не дублируются в style.css */

/* ===== HERO ГЛАВНОЙ ===== */
.hero-main {
    background: linear-gradient(135deg, #0A2B5B 0%, #1A4B8F 100%);
    padding: 180px 20px 60px;
    position: relative;
    overflow: hidden;
}
.hero-main::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-main-container {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Плашка доверия */
.hero-main-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.hero-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 60px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
    justify-content: center;
}
.hero-main-badge i {
    color: var(--accent-orange);
    margin-right: 4px;
}
.hero-main-badge-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* Заголовок */
.hero-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5.5vw, 52px);
    line-height: 1.2;
    color: white;
    text-align: center;
    margin-bottom: 18px;
}
.hero-main-title-accent {
    color: var(--accent-orange);
}

/* Подзаголовок */
.hero-main-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

/* Приёмная комиссия */
.hero-main-office {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    overflow: hidden;
    max-width: 880px;
    margin: 0 auto 24px;
}
.hero-main-office-photo {
    flex: 0 0 38%;
    min-height: 200px;
}
.hero-main-office-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-main-office-info {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.hero-main-office-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.hero-main-office-row i {
    font-size: 18px;
    color: var(--accent-orange);
    margin-top: 3px;
}
.hero-main-office-row strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
}
.hero-main-office-row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

/* Карточки-направления */
.hero-main-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}
.hero-main-choice-card {
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}
.hero-main-choice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-orange);
}
.hero-main-choice-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent-ice);
    color: var(--logo-blue);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}
.hero-main-choice-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-ice);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.hero-main-choice-icon i {
    font-size: 28px;
    color: var(--logo-blue);
}
.hero-main-choice-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--logo-blue);
    margin-bottom: 10px;
}
.hero-main-choice-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}
.hero-main-choice-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.hero-main-choice-list li {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-main-choice-list li i {
    color: var(--accent-orange);
    font-size: 12px;
    width: 16px;
    text-align: center;
}
.hero-main-choice-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.hero-main-choice-card:hover .hero-main-choice-link {
    gap: 8px;
}

/* Ссылка на тест */
.hero-main-test-link {
    text-align: center;
    margin-top: 24px;
}
.hero-main-test-link a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
    transition: color 0.2s, border-color 0.2s;
    font-size: 14px;
}
.hero-main-test-link a:hover {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* ===== БЛОК «ЧТО ПРИВЕЛО ВАС К НАМ?» ===== */
.reasons-section {
    padding: 80px 20px;
    background: #F5F7FB;
}
.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.reason-card {
    background: #FFFFFF;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 0 0 28px 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 86, 156, 0.08);
    border-color: var(--accent-orange);
}
.reason-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #E1F0FF 0%, #F0F4F9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.reason-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.reason-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--logo-blue);
    padding: 22px 25px 0;
    margin-bottom: 8px;
}
.reason-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    padding: 0 25px;
    flex: 1;
    margin-bottom: 16px;
}
.reason-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.reason-card:hover .reason-card-link {
    gap: 8px;
}

/* ===== БЛОК «СЛОЖНО РАЗОБРАТЬСЯ?» ===== */
.confusion-block {
    padding: 0 20px;
    background: #F5F7FB;
}
.confusion-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFFFFF 100%);
    border: 2px solid var(--accent-orange);
    border-radius: 28px;
    padding: 45px 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.confusion-left {
    flex: 1;
}
.confusion-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
}
.confusion-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}
.confusion-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}
.confusion-btn:hover {
    background: #E8960A;
    transform: translateY(-2px);
}
.confusion-hint {
    font-size: 12px;
    color: #999;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.confusion-hint i {
    color: var(--accent-orange);
}
.confusion-right {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.confusion-img {
    width: 100%;
    height: auto;
    max-width: 280px;
    display: block;
    border-radius: 20px;
}

/* ===== БЛОК «ВАШ ПУТЬ К ДИПЛОМУ» ===== */
.path-section {
    padding: 80px 20px;
    background: #F5F7FB;
}
.path-container {
    max-width: 1200px;
    margin: 0 auto;
}
.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.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;
}
.path-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.path-card-num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--logo-blue);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 86, 156, 0.3);
}
.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;
}

/* Кнопка после этапов */
.path-cta {
    text-align: center;
    margin-top: 40px;
}
.path-cta-btn {
    display: inline-block;
    background: var(--btn-accent);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.path-cta-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

/* ===== БАННЕР «СКИДКИ И ВЫГОДЫ» ===== */
.benefits-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #FFFFFF;
    border: 2px solid var(--accent-orange);
    border-radius: 28px;
    overflow: hidden;
    margin-top: 40px;
    padding: 0;
}
.benefits-banner-img {
    flex: 0 0 380px;
    min-height: 280px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefits-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.benefits-banner-content {
    flex: 1;
    padding: 40px 40px 40px 0;
}
.benefits-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--logo-blue);
    margin-bottom: 14px;
}
.benefits-banner-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
}
.benefits-banner-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.benefits-banner-list span {
    font-size: 14px;
    color: var(--logo-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.benefits-banner-list span::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 13px;
}
.benefits-banner-note {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 22px;
}
.benefits-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}
.benefits-banner-btn:hover {
    background: #E8960A;
    transform: translateY(-2px);
}

/* ===== ПОПУЛЯРНЫЕ НАПРАВЛЕНИЯ ===== */
.popular-section {
    padding: 80px 20px;
    background: #fff;
}
.popular-section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}
.popular-card {
    background: white;
    border-radius: 24px;
    padding: 28px 25px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eef2f7;
    position: relative;
}
.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 86, 156, 0.1);
}
.popular-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: white;
}
.popular-card-badge.map {
    background: linear-gradient(135deg, #E67E22, #F5A623);
}
.popular-card-badge.mti {
    background: linear-gradient(135deg, #00569C, #0078D4);
}
.popular-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-ice);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.popular-card-icon i {
    font-size: 24px;
    color: var(--logo-blue);
}
.popular-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--logo-blue);
    margin-bottom: 4px;
    padding-right: 60px;
}
.popular-card-prof {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 14px;
}
.popular-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--logo-blue);
}
.popular-all-link {
    text-align: center;
}

/* ===== БЛОК «ПРОСТИТЕ, НО...» ===== */
.door-block {
    padding: 80px 20px;
    background: #F5F7FB;
}
.door-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
}
.door-img {
    flex: 0 0 420px;
    min-height: 300px;
    background: linear-gradient(135deg, #E1F0FF 0%, #F0F4F9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.door-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.door-content {
    flex: 1;
    padding: 40px 45px;
}
.door-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--logo-blue);
    line-height: 1.2;
    margin-bottom: 6px;
}
.door-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-orange);
    line-height: 1.5;
    margin-bottom: 16px;
}
.door-address,
.door-hours {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.door-address i,
.door-hours i {
    color: var(--accent-orange);
    font-size: 16px;
    width: 18px;
    text-align: center;
}
.door-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.3s, background 0.3s;
}
.door-btn:hover {
    background: #E8960A;
    transform: translateY(-2px);
}
.door-coffee {
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
}
.door-coffee i {
    color: var(--accent-orange);
    font-size: 15px;
}

/* ===== МОДАЛКА «ОСТАЛИСЬ ВОПРОСЫ?» ===== */
.question-messenger-label {
    display: flex !important;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px 16px;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}
.question-messenger-label:has(input:checked) {
    border-color: var(--logo-blue);
    background: #E1F0FF;
}
.question-messenger-label:hover {
    border-color: #aaa;
}

/* ===== МОДАЛКА КВИЗА ===== */
.quiz-modal-card {
    max-width: 460px;
    padding: 35px 28px 30px !important;
    position: relative;
}
.quiz-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 5;
    line-height: 1;
}
.quiz-close:hover {
    color: #333;
}
.quiz-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}
.quiz-progress-dot {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: background 0.3s;
}
.quiz-progress-dot.done {
    background: var(--accent-orange);
}
.quiz-progress-dot.current {
    background: var(--logo-blue);
}
.quiz-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--logo-blue);
    margin-bottom: 20px;
    text-align: center;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.quiz-option-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: #F9FAFB;
    border: 2px solid #eef2f7;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}
.quiz-option-btn:hover {
    border-color: var(--accent-orange);
    background: #FFF8E7;
}
.quiz-option-btn.selected {
    border-color: var(--logo-blue);
    background: #E1F0FF;
}
.quiz-next-btn {
    width: 100%;
    padding: 16px;
    background: var(--btn-accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.quiz-next-btn:hover {
    background: var(--accent-orange);
}
.quiz-next-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.quiz-phone-wrap {
    display: flex;
    align-items: center;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    padding: 0 16px;
    margin-bottom: 14px;
}
.quiz-phone-wrap span {
    font-weight: 700;
    color: #333;
    font-size: 15px;
}
.quiz-phone-wrap input {
    width: 100%;
    padding: 14px 0 14px 8px;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
}
.quiz-phone-wrap:focus-within {
    border-color: var(--logo-blue);
}
.quiz-messenger-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.quiz-messenger-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px 16px;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}
.quiz-messenger-label:has(input:checked) {
    border-color: var(--logo-blue);
    background: #E1F0FF;
}
.quiz-messenger-label input {
    display: none;
}

/* ===== КУРСОР НА КАРТОЧКАХ ВУЗОВ ===== */
.hero-main-uni-card {
    cursor: pointer;
}

/* ===== УБИРАЕМ ПОДЧЁРКИВАНИЯ ===== */
#contactModal .modal-card a,
#questionModal .modal-card a,
.hero-main-uni-card,
.hero-main-uni-card:hover,
.hero-main-uni-card:visited,
.hero-main-uni-card:active {
    text-decoration: none !important;
    border-bottom: none !important;
    color: inherit;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1000px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-main {
        padding: 150px 15px 40px;
    }
    .hero-main-badge {
        font-size: 12px;
        gap: 8px;
        padding: 10px 18px;
    }
    .hero-main-badge-sep {
        display: none;
    }
    .hero-main-choices {
        grid-template-columns: 1fr;
    }
    .hero-main-choice-card {
        padding: 26px 22px;
    }
    .hero-main-office {
        flex-direction: column;
    }
    .hero-main-office-photo {
        height: 180px;
    }
    .hero-main-office-info {
        padding: 22px 20px;
    }

    .reasons-section,
    .path-section,
    .popular-section,
    .faq-block,
    .form-section {
        padding: 50px 15px;
    }
    .confusion-block {
        padding: 0 15px 50px;
    }
    .door-block {
        padding: 50px 15px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
    .reason-card-img {
        height: 180px;
    }
    .reason-card-title {
        font-size: 16px;
        padding: 18px 20px 0;
    }
    .reason-card-desc {
        padding: 0 20px;
    }
    .reason-card-link {
        padding: 0 20px;
    }

    .confusion-card {
        flex-direction: column;
        padding: 30px 24px;
        gap: 25px;
    }
    .confusion-right {
        flex: 0 0 auto;
        width: 100%;
    }
    .confusion-title {
        font-size: 17px;
    }
    .confusion-btn {
        width: 100%;
        justify-content: center;
    }

    .path-grid {
        grid-template-columns: 1fr;
    }
    .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;
    }

    .benefits-banner {
        flex-direction: column;
        margin: 30px 0 0;
    }
    .benefits-banner-img {
        flex: 0 0 auto;
        width: 100%;
        min-height: 200px;
        max-height: 240px;
    }
    .benefits-banner-content {
        padding: 25px 20px 30px;
    }
    .benefits-banner-title {
        font-size: 20px;
    }
    .benefits-banner-list {
        grid-template-columns: 1fr;
    }
    .benefits-banner-btn {
        width: 100%;
        justify-content: center;
    }

    .popular-grid {
        grid-template-columns: 1fr;
    }

    .door-card {
        flex-direction: column;
    }
    .door-img {
        flex: 0 0 auto;
        width: 100%;
        min-height: 220px;
        max-height: 260px;
    }
    .door-content {
        padding: 25px 20px 30px;
    }
    .door-title {
        font-size: 24px;
    }
    .door-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-main-title {
        font-size: 24px;
    }
    .hero-main-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .hero-main-open {
        flex-direction: column;
        gap: 6px;
        padding: 12px 16px;
        margin: 0 15px 20px;
    }
    .hero-main-open-text {
        font-size: 13px;
    }
    .quiz-modal-card {
        max-width: 95% !important;
        padding: 25px 18px 25px !important;
    }
}

@media (max-width: 768px) {
    .path-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 500px) {
    .quiz-modal-card {
        max-width: 95% !important;
        padding: 25px 18px 25px !important;
    }
}

/* ===== СРОКИ ОБУЧЕНИЯ В PATH-CARD ===== */
.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;
}

/* Немного увеличим отступы для desc */
.path-card-desc {
    margin-bottom: 16px !important;
}

/* ===== ИКОНКИ ВМЕСТО ЦИФР ===== */
.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-img {
    position: relative;
    overflow: hidden;
}
.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 ===== */
.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;
}

.path-card-desc {
    margin-bottom: 16px !important;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ: ПЕРЕНОС МЕСЯЦЕВ ===== */
@media (max-width: 600px) {
    .duration-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }
    .duration-row span {
        font-size: 13px;
    }
    .duration-row strong {
        font-size: 16px;
    }
}

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

/* Базовые секции */
.reasons-section,
.path-section,
.popular-section,
.faq-block,
.form-section,
.door-block,
.benefits-banner,
.confusion-block,
.professions-block,
.section-stats-full,
.college-reviews,
.timer-section,
.accordion-section,
.test-banner-section,
.duration-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Hero — отдельно */
.hero-main {
    padding-top: 120px;
    padding-bottom: 40px;
}

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

/* ===== МОБИЛЬНЫЕ (768px и меньше) ===== */
@media (max-width: 768px) {
    .reasons-section,
    .path-section,
    .popular-section,
    .faq-block,
    .form-section,
    .door-block,
    .benefits-banner,
    .confusion-block,
    .professions-block,
    .section-stats-full,
    .college-reviews,
    .timer-section,
    .accordion-section,
    .test-banner-section,
    .duration-section {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .hero-main {
        padding-top: 120px;
        padding-bottom: 25px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
}

/* ===== ОЧЕНЬ МАЛЕНЬКИЕ (480px и меньше) ===== */
@media (max-width: 480px) {
    .reasons-section,
    .path-section,
    .popular-section,
    .faq-block,
    .form-section,
    .door-block,
    .benefits-banner,
    .confusion-block,
    .professions-block,
    .section-stats-full,
    .college-reviews,
    .timer-section,
    .accordion-section,
    .test-banner-section,
    .duration-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .hero-main {
        padding-top: 165px;
        padding-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
}

/* ===== КНОПКА "СМОТРЕТЬ ВСЕ НАПРАВЛЕНИЯ" ===== */
.popular-all-link {
    text-align: center;
    margin-top: 30px;
}

.popular-all-link .btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--logo-blue);
    color: var(--logo-blue);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-all-link .btn-outline:hover {
    background: var(--logo-blue);
    color: white;
    transform: translateY(-2px);
}

/* Адаптив для мобильных */
@media (max-width: 600px) {
    .popular-all-link {
        margin-top: 20px;
    }
    .popular-all-link .btn-outline {
        padding: 10px 24px;
        font-size: 14px;
    }
}