/* ========== СТРАНИЦА POSTUPLENIE.HTML ========== */

/* Hero блок */
.hero-postup {
    background: linear-gradient(135deg, #0A2B5B 0%, #1A4B8F 100%);
    padding: 180px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
}
.hero-postup-container {
    max-width: 1200px;
    margin: 0 auto;
}
.hero-postup h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 6vw, 64px);
    margin-bottom: 20px;
}
.hero-postup h1 span {
    color: var(--accent-orange);
}
.hero-postup p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Шаги поступления */
.steps-detailed {
    padding: 80px 20px;
    background: #F5F7FB;
}
.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--logo-blue);
    text-transform: uppercase;
}
.section-header h2 span {
    color: var(--accent-orange);
}
.section-header p {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.step-detailed-card {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.step-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,86,156,0.1);
}
.step-number-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--logo-blue), var(--btn-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,86,156,0.3);
}
.step-content {
    flex: 1;
}
.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-ice);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.step-icon i {
    font-size: 28px;
    color: var(--logo-blue);
}
.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--logo-blue);
    margin-bottom: 15px;
}
.step-content > p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.step-list {
    list-style: none;
    padding: 0;
}
.step-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.step-list li i {
    color: var(--accent-orange);
    font-size: 14px;
}

@media (max-width: 768px) {
    .step-detailed-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }
    .step-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .step-list li {
        justify-content: center;
    }
}

/* Документы */
.documents-section {
    padding: 80px 20px;
    background: white;
}
.documents-container {
    max-width: 1200px;
    margin: 0 auto;
}
.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.doc-card {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eef2f7;
}
.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.doc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-ice), #E8F0FE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.doc-icon i {
    font-size: 32px;
    color: var(--logo-blue);
}
.doc-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--logo-blue);
    margin-bottom: 12px;
}
.doc-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.docs-note {
    background: #FFF8E7;
    border-radius: 16px;
    padding: 15px 25px;
    text-align: center;
    font-size: 14px;
    color: #B8860B;
    border-left: 4px solid var(--accent-orange);
}
.docs-note i {
    margin-right: 10px;
    color: var(--accent-orange);
}

@media (max-width: 1000px) {
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 550px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

/* Сроки и стоимость */
.terms-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A2B5B 0%, #1A4B8F 100%);
    color: white;
}
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
}
.terms-section .section-header h2 {
    color: white;
}
.terms-section .section-header p {
    color: rgba(255,255,255,0.8);
}
.terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.term-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 35px 30px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}
.term-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}
.term-card.highlight {
    background: rgba(245,166,35,0.2);
    border: 1px solid var(--accent-orange);
}
.term-card i {
    font-size: 42px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}
.term-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 25px;
}
.term-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.term-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}
.term-label {
    font-weight: 600;
    opacity: 0.8;
}
.term-value {
    font-weight: 700;
    text-align: right;
}
.price-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.price-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.price-level {
    font-size: 14px;
    opacity: 0.8;
}
.price-amount {
    font-weight: 800;
    font-size: 18px;
    color: var(--accent-orange);
}
.term-card ul {
    list-style: none;
    padding: 0;
}
.term-card ul li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.term-card ul li i {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--accent-orange);
}

@media (max-width: 900px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

/* Преимущества */
.why-us-postup {
    padding: 80px 20px;
    background: white;
}
.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.advantage-card {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eef2f7;
}
.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.advantage-card i {
    font-size: 44px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}
.advantage-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--logo-blue);
    margin-bottom: 15px;
}
.advantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 550px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ для страницы поступления */
.faq-postup {
    padding: 80px 20px;
    background: #F5F7FB;
}
.faq-postup .faq-container {
    max-width: 1100px;
    margin: 0 auto;
}
.faq-postup .faq-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    margin-bottom: 15px;
}
.faq-postup .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);
    background: white;
}
.faq-postup .faq-question i {
    transition: 0.4s;
    color: var(--accent-orange);
}
.faq-postup .faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-postup .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #F9FAFB;
    padding: 0 30px;
}
.faq-postup .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}
.faq-postup .faq-answer p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-postup .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
    .faq-postup .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}