/* ==========================================================================
   Admission Page - CLEAN BLUE (UNIFIED WITH MISSION STYLE) - Optimized
   ========================================================================== */

:root {
    --blue: #2F80ED;
    --blue-dark: #1C4FA1;
    --blue-light: #EAF2FF;

    --white: #FFFFFF;
    --black: #111111;
    --gray: #6B7280;

    --bg: #f7f9fc;
}

/* ===== BODY ===== */
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, #eef6ff, #f5faff);
    color: var(--black);
    line-height: 1.65;
}

/* ===== GLOBAL LAYOUT SPACING ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 64px 0;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

/* ===== CARD (mission-card) ===== */
.mission-card {
    background: linear-gradient(135deg, var(--white), #f3f6fb);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid rgba(47, 128, 237, 0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(47, 128, 237, 0.15);
    border-color: rgba(47, 128, 237, 0.25);
}

/* ===== PROGRAM CARDS ===== */
.mission-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a8a;
}

/* ===== QUICK LINKS ===== */
.mission-card.text-center {
    text-align: center;
    padding: 36px 28px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(47, 128, 237, 0.12);
    transition: all 0.3s ease;
}

.mission-card.text-center:hover {
    transform: translateY(-6px);
    background: #f7fbff;
    border-color: rgba(47, 128, 237, 0.25);
}

.mission-card.text-center .text-4xl {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ===== BUTTON ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--blue), #56A8FF);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 32px;     /* Добавлен отступ сверху */
    margin-bottom: 12px;  /* Добавлен небольшой отступ снизу */
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(47, 128, 237, 0.25);
}

/* ===== FAQ SECTION - Специальные отступы для кнопки "Все вопросы" ===== */
.faq-section .text-center {
    margin-top: 40px;     /* Отступ сверху от карточек FAQ до кнопки */
}

.faq-section .btn-primary {
    margin-top: 24px;
    margin-bottom: 8px;
}

/* ===== ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    section {
        padding: 56px 0;
    }
    .mission-card {
        padding: 32px;
    }
    .btn-primary {
        margin-top: 28px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 48px 0;
    }
    .mission-card {
        padding: 28px;
    }
    .hero-banner {
        min-height: 65vh;
    }
    .faq-section .text-center {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .mission-card {
        padding: 24px;
        border-radius: 20px;
    }
    .btn-primary {
        margin-top: 20px;
        padding: 13px 24px;
    }
}