/* === КАСТОМНЫЙ ШРИФТ LC Chalk === */
@font-face {
    font-family: 'LC Chalk';
    src: url('/fonts/LCChalk.woff2') format('woff2'),
         url('/fonts/LCChalk.woff') format('woff'),
         url('/fonts/LCChalk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* === ПЕРЕМЕННЫЕ === */
:root {
    --red: #a41b1b;
    --red-hover: #8a1515;
    --pink-bg: #fcebeb;
    --text-main: #000000;
    --text-light: #ffffff;
    --container-width: 1200px;
    --radius-lg: 30px;
    --radius-pill: 20px;
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Prosto One', sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* === КОНТЕЙНЕР === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== */
/* === СЕКЦИЯ: HEADER === */
/* ===================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 500;
    background: #ffffff;
    margin: 0 -20px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 16px -8px rgba(0,0,0,0.10);
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 38px !important;
    max-height: 38px !important;
    max-width: 180px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

.nav {
    display: flex;
    gap: 12px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid var(--red);
    border-radius: var(--radius-pill);
    color: var(--red);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(164, 27, 27, 0.08);
}

.nav-link.active {
    background-color: var(--red);
    color: var(--text-light);
}

.nav-link.active:hover {
    background-color: var(--red-hover);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: var(--red);
    font-size: 14px;
    border-bottom: 1px solid var(--red);
    transition: opacity 0.3s ease;
}

.phone:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--red);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--red-hover);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--text-light);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--red);
    color: white;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--red-hover);
}

/* === МОБИЛЬНОЕ МЕНЮ === */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
    animation: mobile-menu-in .22s ease-out;
}
.mobile-menu[hidden] { display: none; }
@keyframes mobile-menu-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    background: #f5f5f5;
    border-radius: 50%;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}
.mobile-menu-close:hover { background: #b0181e; color: #fff; }
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 14px;
}
.mobile-menu__link {
    font-family: 'Prosto One', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #0e0e0e;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}
.mobile-menu__link:hover { color: #b0181e; }
.mobile-menu__phone {
    display: inline-block;
    font-family: 'Prosto One', sans-serif;
    font-size: 22px;
    color: #b0181e;
    text-decoration: none;
    margin: 6px 0 14px;
}
.mobile-menu__socials { display: flex; gap: 14px; }
.mobile-menu__socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fcebeb;
    color: #b0181e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu__socials svg { width: 22px; height: 22px; fill: currentColor; }
html.mobile-menu-open,
body.mobile-menu-open { overflow: hidden; }

/* =================== */
/* === СЕКЦИЯ: HERO === */
/* =================== */
.hero {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 60px;
    align-items: stretch;
    overflow: visible;
}

.hero-left {
    background-color: var(--pink-bg);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--red);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.4;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

.buttons-group {
    display: flex;
    gap: 14px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 30px;
    font-family: 'Prosto One', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: 2px solid var(--red);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--red);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--red-hover);
    border-color: var(--red-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--red);
}

.btn-outline:hover {
    background-color: rgba(164, 27, 27, 0.08);
}

.hero-right {
    background-color: var(--red);
    border-radius: var(--radius-lg);
    padding: 44px 44px 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    position: relative;
    min-height: 480px;
}

.hero-right-title {
    font-family: 'LC Chalk', 'Prosto One', sans-serif;
    color: var(--text-light);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.students-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 225%;
    max-height: 88%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
    display: block;
}

.mobile-buttons {
    display: none;
}

/* ====================== */
/* === АНИМАЦИИ ВХОДА === */
/* ====================== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }

/* ======================== */
/* === АДАПТИВ: TABLET === */
/* ======================== */
@media (max-width: 1024px) {
    .nav { display: none; }
    .header-contacts .phone { display: none; }
    .header-contacts .social-icons { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { grid-template-columns: 1fr 1fr; }
    .hero-left { padding: 36px 30px; }
    .hero-right { padding: 30px 30px 0; min-height: 440px; }
    .hero-title { font-size: 24px; }
    .hero-right-title { font-size: 28px; font-weight: 300; }
    .students-img { width: 210%; max-height: 78%; }
    .buttons-group.desktop-only { display: none; }
    .mobile-buttons { display: flex; gap: 14px; margin-top: 0; }
    .mobile-buttons .btn { flex: 1; }
}

/* ======================== */
/* === АДАПТИВ: MOBILE === */
/* ======================== */
@media (max-width: 680px) {
    .hero { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
    .hero-left { padding: 28px 20px; }
    .hero-right { padding: 18px 20px 0; min-height: 320px; overflow: hidden; }
    .hero-title { font-size: 22px; margin-bottom: 24px; }
    .features-list li { font-size: 14px; gap: 10px; margin-bottom: 12px; }
    .check-icon { width: 20px; height: 20px; }
    .hero-right-title {
        font-size: 22px;
        font-weight: 300;
        position: relative;
        z-index: 3;
        text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 2px 10px rgba(0,0,0,0.30);
    }
    .students-img {
        width: 145%;
        max-width: none;
        max-height: 78%;
        margin-left: 0;
        z-index: 1;
    }
    .mobile-buttons { flex-direction: column; }
    .mobile-buttons .btn { width: 100%; }
    .logo img { height: 32px !important; max-height: 32px !important; max-width: 150px !important; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 19px; }
    .features-list li { font-size: 13px; }
    .hero-right-title { font-size: 21px; font-weight: 300; }
    .btn { padding: 14px 24px; font-size: 12px; }
}

/* ============================ */
/* === СЕКЦИЯ: ОБ ИНСТИТУТЕ === */
/* ============================ */
.about { margin-bottom: 60px; }

.about-title {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.about-text {
    font-family: 'Prosto One', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-main);
}

.about-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.about-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 2px solid var(--red);
    border-radius: var(--radius-pill);
    color: var(--red);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: 'Prosto One', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s;
}
a.badge:hover {
    background: var(--red);
    color: #fff;
}

.badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--red);
}

.about-accreditation-note {
    font-family: 'Prosto One', sans-serif;
    font-size: 16px;
    color: var(--text-main);
    text-align: right;
    margin-top: 8px;
    line-height: 1.4;
}

.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.about-video {
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--red-hover);
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 3px;
}

.video-label {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 14px 24px;
    font-size: 13px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    letter-spacing: 0.02em;
}

.about-stats { display: flex; flex-direction: column; gap: 0; }

.stat-main {
    background-color: var(--pink-bg);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.stat-main-icon { flex-shrink: 0; }
.stat-main-icon svg { width: 36px; height: 36px; fill: var(--red); }

.stat-main-number {
    font-size: 48px;
    color: var(--red);
    font-family: 'Prosto One', sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

.stat-main-label {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Prosto One', sans-serif;
    line-height: 1.25;
}

.stat-main-text { display: flex; align-items: center; gap: 14px; }

.stats-list { display: flex; flex-direction: column; gap: 24px; padding-left: 4px; }

.stat-item { display: flex; align-items: flex-start; gap: 20px; }

.stat-number {
    font-size: 40px;
    color: var(--red);
    font-family: 'Prosto One', sans-serif;
    line-height: 1;
    flex-shrink: 0;
    min-width: 130px;
    padding-top: 2px;
}

.stat-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-main);
    font-family: 'Prosto One', sans-serif;
    padding-top: 6px;
}

.stat-number-suffix { font-size: 20px; text-transform: uppercase; }

@media (max-width: 1024px) {
    .about-top { grid-template-columns: 1fr; }
    .about-top-right { align-items: flex-start; }
    .about-accreditation-note { text-align: left; }
    .about-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .about-title { font-size: 24px; }
    .about-text { font-size: 13px; }
    .stat-main { padding: 24px 20px; }
    .stat-main-number { font-size: 32px; }
    .stat-main-label { font-size: 18px; }
    .stat-number { font-size: 32px; }
    .stat-desc { font-size: 12px; }
    .badge { font-size: 11px; padding: 8px 18px; }
}

/* ====================================== */
/* === СЕКЦИЯ: НАПРАВЛЕНИЯ ОБУЧЕНИЯ === */
/* ====================================== */
.directions { margin-bottom: 60px; }

.directions-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}

.directions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.direction-card {
    background-color: var(--pink-bg);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.direction-name {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
    padding-right: 100px;
}

.direction-formats { font-size: 11px; color: #555; margin-bottom: 20px; line-height: 1.4; padding-right: 100px; }

.direction-bottom { display: flex; align-items: center; gap: 16px; margin-top: auto; }

.direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 20px;
    background-color: var(--red);
    color: var(--text-light);
    font-family: 'Prosto One', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.direction-btn:hover { background-color: var(--red-hover); }

.direction-prices { display: flex; align-items: center; gap: 12px; position: relative; }
.price-stack { display: flex; flex-direction: column; gap: 2px; }
.price-old { font-size: 12px; color: #999; text-decoration: line-through; line-height: 1; }

.price-new {
    font-size: 20px;
    color: var(--text-main);
    font-family: 'Prosto One', sans-serif;
    font-weight: 400;
    line-height: 1;
}

.price-discount {
    background-color: var(--red);
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Prosto One', sans-serif;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 400;
    transform: rotate(-8deg);
    flex-shrink: 0;
}

.direction-icon { position: absolute; right: 20px; top: 20px; bottom: auto; width: 86px; height: 86px; object-fit: contain; pointer-events: none; }
.direction-icon img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 1024px) {
    .directions-title { font-size: 28px; }
    .direction-name { font-size: 17px; }
}

@media (max-width: 680px) {
    .directions-grid { grid-template-columns: 1fr; }
    .directions-title { font-size: 24px; }
    .direction-card { padding: 24px 20px; min-height: 180px; }
    .direction-name { font-size: 16px; padding-right: 76px; }
    .direction-formats { padding-right: 76px; }
    .direction-icon { width: 64px; height: 64px; right: 14px; top: 14px; bottom: auto; }
    .price-new { font-size: 16px; }
}

/* ================================ */
/* === СЕКЦИЯ: CTA БАННЕР === */
/* ================================ */
.cta-banner {
    background-color: var(--red);
    border-radius: var(--radius-lg);
    padding: 30px 50px;
    position: relative;
    overflow: visible;
    margin-top: 140px;
    margin-bottom: 60px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 26px;
    color: var(--text-light);
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 12px;
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 22px;
    max-width: 50%;
    position: relative;
    z-index: 2;
    font-family: 'Prosto One', sans-serif;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border: 2px solid var(--text-light);
    border-radius: 30px;
    background-color: var(--text-light);
    color: var(--text-main);
    font-family: 'Prosto One', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.cta-btn:hover { background-color: transparent; color: var(--text-light); }

.cta-image {
    position: absolute;
    right: 40px;
    bottom: 0;
    height: 140%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 3;
}

.cta-question {
    position: absolute;
    font-family: 'Prosto One', sans-serif;
    font-size: 60px;
    color: var(--red);
    font-weight: 700;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.cta-question-1 { top: -15px; right: 320px; transform: rotate(-15deg); font-size: 50px; }
.cta-question-2 { top: 10px; right: 160px; transform: rotate(10deg); font-size: 70px; }
.cta-question-3 { bottom: 20px; right: 60px; transform: rotate(-8deg); font-size: 55px; }

@media (max-width: 1024px) {
    .cta-title { font-size: 26px; max-width: 55%; }
    .cta-subtitle { max-width: 50%; }
    .cta-image { right: 20px; height: 110%; }
    .cta-question-1 { right: 240px; }
    .cta-question-2 { right: 100px; }
}

@media (max-width: 680px) {
    .cta-banner { padding: 30px 24px 280px; min-height: auto; margin-top: 0; }
    .cta-title { font-size: 22px; max-width: 100%; }
    .cta-subtitle { max-width: 100%; font-size: 13px; }
    .cta-image { right: 50%; transform: translateX(50%); height: auto; width: 80%; bottom: 0; }
    .cta-question { display: none; }
}

/* ======================================= */
/* === СЕКЦИЯ: ФОРМАТЫ ОБУЧЕНИЯ === */
/* ======================================= */
.formats { margin-bottom: 60px; }

.formats-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}

.formats-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.format-tab {
    padding: 12px 24px;
    font-family: 'Prosto One', sans-serif;
    font-size: 15px;
    color: var(--text-main);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.format-tab:hover { color: var(--red); }
.format-tab.active { color: var(--red); border-bottom-color: var(--red); }

.format-content { display: none; }
.format-content.active { display: block; }

.format-card {
    background-color: var(--pink-bg);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
}

.format-label { font-size: 13px; color: #666; margin-bottom: 4px; }
.format-label span { color: var(--red); font-size: 18px; }

.format-heading { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.format-heading-label { font-size: 15px; color: #666; font-family: 'Prosto One', sans-serif; }

.format-heading-value {
    font-size: 22px;
    color: var(--red);
    font-family: 'Prosto One', sans-serif;
}

.format-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 24px;
    max-width: 75%;
}

.format-advantages-title {
    font-size: 17px;
    color: var(--red);
    margin-bottom: 16px;
    font-family: 'Prosto One', sans-serif;
}

.format-advantages {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 75%;
}

.format-advantages li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-main);
    padding-left: 16px;
    position: relative;
}

.format-advantages li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-main);
}

.format-decor {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 140px;
    height: 140px;
    opacity: 0.12;
}

.format-decor img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 1024px) {
    .formats-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .format-tab { font-size: 13px; padding: 10px 18px; }
    .formats-title { font-size: 28px; }
    .format-card { padding: 30px 28px; }
    .format-desc, .format-advantages { max-width: 100%; }
}

@media (max-width: 680px) {
    .formats-tabs { gap: 0; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; touch-action: pan-x; -webkit-overflow-scrolling: touch; }
    .formats-tabs::-webkit-scrollbar { display: none; }
    .format-tab { font-size: 12px; padding: 10px 14px; flex-shrink: 0; }
    .formats-title { font-size: 24px; }
    .format-card { padding: 24px 20px; }
    .format-heading-value { font-size: 19px; }
    .format-desc { font-size: 14px; }
    .format-advantages li { font-size: 13px; }
    .format-decor { width: 100px; height: 100px; right: 16px; bottom: 16px; }
}

/* ================================== */
/* === СЕКЦИЯ: CTA ОПЛАТА (СБЕР) === */
/* ================================== */
.cta-payment {
    background-color: var(--pink-bg);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: visible;
    margin-top: 140px;
    margin-bottom: 60px;
    min-height: 200px;
}

.cta-payment-inner {
    background-color: var(--red);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    position: relative;
    overflow: visible;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-payment-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 26px;
    color: var(--text-light);
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 14px;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.cta-payment-subtitle {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 22px;
    max-width: 45%;
    position: relative;
    z-index: 2;
    font-family: 'Prosto One', sans-serif;
}

.cta-payment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border: 2px solid var(--text-light);
    border-radius: 30px;
    background-color: var(--text-light);
    color: var(--text-main);
    font-family: 'Prosto One', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.cta-payment-btn:hover { background-color: transparent; color: var(--text-light); }

.cta-payment-person {
    position: absolute;
    right: 40px;
    bottom: 0;
    height: 140%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 3;
}

.cta-payment-right {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.cta-payment-sber { width: 180px; height: auto; object-fit: contain; }
.cta-payment-sign { display: none; width: 150px; height: auto; object-fit: contain; }

@media (max-width: 1024px) {
    .cta-payment-title { font-size: 22px; max-width: 50%; }
    .cta-payment-subtitle { max-width: 45%; }
    .cta-payment-person { right: 40px; height: 130%; }
    .cta-payment-right { right: 24px; }
    .cta-payment-sber { width: 110px; }
    .cta-payment-sign { width: 140px; }
}

@media (max-width: 680px) {
    .cta-payment { margin-top: 40px; border-radius: 20px; overflow: hidden; }
    .cta-payment-inner { padding: 16px 24px 16px; min-height: 440px; overflow: hidden; border-radius: 20px; }
    .cta-payment-title { font-size: 22px; max-width: 100%; text-align: left; margin-bottom: 10px; }
    .cta-payment-subtitle { max-width: 100%; font-size: 14px; text-align: left; margin-bottom: 16px; line-height: 1.5; }
    .cta-payment-btn { align-self: flex-start; padding: 14px 32px; font-size: 12px; margin-bottom: 0; }
    .cta-payment-person { position: absolute; right: -12px; bottom: -16px; height: auto; width: 80%; max-width: 340px; transform: none; object-fit: contain; object-position: right bottom; }
    .cta-payment-right { position: relative; right: auto; top: auto; transform: none; flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; padding: 16px 0px; }
    .cta-payment-sber { width: 140px; }
    .cta-payment-sign { display: block; width: 140px; }
}

/* ========================================== */
/* === СЕКЦИЯ: ОНЛАЙН-ПЛАТФОРМА === */
/* ========================================== */
.platform { margin-bottom: 60px; }

.platform-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.25;
    max-width: 70%;
}

.platform-content {
    background-color: var(--pink-bg);
    border-radius: var(--radius-lg);
    padding: 50px 50px 0;
    overflow: hidden;
}

.platform-devices { display: flex; align-items: flex-end; justify-content: center; gap: 0; position: relative; }

.platform-phone {
    width: 35%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin-right: -40px;
    align-self: center;
}

.platform-laptop { width: 68%; height: auto; object-fit: contain; position: relative; z-index: 1; }

@media (max-width: 1024px) {
    .platform-content { padding: 40px 40px 0; }
    .platform-title { font-size: 28px; max-width: 100%; }
    .platform-phone { width: 30%; margin-right: -30px; }
    .platform-laptop { width: 70%; }
}

@media (max-width: 680px) {
    .platform-content { padding: 30px 20px 0; border-radius: 20px; }
    .platform-title { font-size: 22px; max-width: 100%; margin-bottom: 24px; }
    .platform-phone { width: 32%; margin-right: -15px; }
    .platform-laptop { width: 72%; }
}

/* ====================================== */
/* === СЕКЦИЯ: КАРЬЕРНЫЙ РОСТ === */
/* ====================================== */
.career {
    background-color: var(--red);
    border-radius: var(--radius-lg);
    padding: 40px 60px;
    margin-bottom: 100px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
}

.career-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 32px;
    color: var(--text-light);
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 30px;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.career-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.career-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.career-check { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.career-check img { width: 22px; height: 22px; object-fit: contain; }

.career-image {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 40%;
    height: auto;
    object-fit: contain;
    z-index: 3;
}

@media (max-width: 1024px) {
    .career { padding: 40px 36px; }
    .career-title { font-size: 26px; max-width: 55%; }
    .career-list { max-width: 55%; }
    .career-image { width: 42%; right: 20px; }
}

@media (max-width: 680px) {
    .career { padding: 30px 24px 0; min-height: auto; overflow: hidden; }
    .career-title { font-size: 24px; max-width: 100%; }
    .career-list { max-width: 100%; margin-bottom: 0; }
    .career-list li { font-size: 13px; }
    .career-image { position: relative; right: auto; top: auto; transform: rotate(-5deg); width: 110%; margin: -10px auto -40px; max-width: 110%; }
}

/* ====================================== */
/* === СЕКЦИЯ: ПАРТНЁРЫ === */
/* ====================================== */
.partners { margin-bottom: 60px; }

.partners-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 36px;
}

.partners-logos { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.partner-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover { opacity: 0.7; }

.partners-more {
    font-family: 'Prosto One', sans-serif;
    font-size: 18px;
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1.35;
    white-space: nowrap;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .partners-logos { gap: 20px; flex-wrap: wrap; justify-content: flex-start; }
    .partner-logo { height: 42px; }
}

@media (max-width: 680px) {
    .partners-title { font-size: 20px; }
    .partners-logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; justify-items: center; align-items: center; }
    .partner-logo { height: 70px; }
}

/* ====================================== */
/* === СЕКЦИЯ: НАШИ СТУДЕНТЫ === */
/* ====================================== */
.gallery { margin-bottom: 60px; }

.gallery-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery-item { border-radius: 20px; overflow: hidden; aspect-ratio: 3 / 2; }

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 1024px) {
    .gallery-grid { gap: 12px; }
    .gallery-title { font-size: 24px; }
}

@media (max-width: 680px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-title { font-size: 22px; }
    .gallery-item { border-radius: 14px; }
    .gallery-item.hide-mobile { display: none; }
}

/* ============================================ */
/* === СЕКЦИЯ: ВИДЕООТЗЫВЫ === */
/* ============================================ */
.reviews { margin-bottom: 60px; }

.reviews-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}

/* === ВИДЕООТЗЫВЫ — на ПК grid, на мобилке слайдер со свайпом === */
.reviews-slider {
    position: relative;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}
.reviews-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    overflow: visible;
}

.review-card {
    background-color: var(--pink-bg);
    border-radius: 24px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    position: relative;
}
.review-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}
.review-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: inherit;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #b0181e;
    cursor: pointer;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px -4px rgba(0,0,0,0.18);
    transition: background-color .2s, color .2s, transform .15s, box-shadow .2s;
}
.reviews-nav svg { width: 20px; height: 20px; display: block; }
.reviews-nav:hover {
    background: #b0181e;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}
.reviews-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: translateY(-50%);
    background: #ffffff;
    color: #b0181e;
    box-shadow: 0 3px 10px -4px rgba(0,0,0,0.10);
}
.reviews-nav--prev { left: 0; }
.reviews-nav--next { right: 0; }

.review-play {
    width: 56px;
    height: 56px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.review-play svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }

@media (max-width: 1024px) {
    .reviews-title { font-size: 24px; }
    /* переключаем grid -> слайдер со свайпом и кнопками */
    .reviews-slider { padding: 0 52px; }
    .reviews-track {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }
    .reviews-track::-webkit-scrollbar { display: none; }
    .review-card {
        flex: 0 0 calc((100% - 16px * 2) / 3);
        scroll-snap-align: start;
    }
    .reviews-nav { display: flex; }
}

@media (max-width: 768px) {
    .reviews-slider { padding: 0 44px; }
    .review-card { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 680px) {
    .reviews-slider { padding: 0 38px; }
    .reviews-track { gap: 12px; }
    .review-card {
        flex-basis: calc(100% - 12px);
        max-width: 320px;
        margin: 0;
        border-radius: 18px;
    }
    .reviews-title { font-size: 22px; }
    .reviews-nav { width: 36px; height: 36px; }
    .reviews-nav svg { width: 16px; height: 16px; }
    .review-play { width: 44px; height: 44px; }
    .review-play svg { width: 18px; height: 18px; }
}

@media (max-width: 420px) {
    .reviews-slider { padding: 0 32px; }
    .reviews-nav { width: 32px; height: 32px; }
    .review-card { flex-basis: calc(100% - 24px); }
}

/* ============================================ */
/* === СЕКЦИЯ: ФОРМА ЗАЯВКИ === */
/* ============================================ */
.application {
    background-color: #fde4e7;
    border-radius: 44px;
    padding: 36px 48px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    min-height: 520px;
}

.application__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
}

.application__photo {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 0;
    width: 520px;
    aspect-ratio: 566 / 475;
    pointer-events: none;
}

.application-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1.18;
    margin-bottom: 20px;
    max-width: 100%;
    position: relative;
    z-index: 2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.application-title .app-line { display: inline; }
@media (max-width: 680px) {
    .application-title .app-line { display: block; }
}

.application-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-family: 'Prosto One', sans-serif;
}

.application-message {
    max-width: 520px;
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'Prosto One', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.application-message-success {
    color: #155724;
    background-color: #dff3e4;
    border: 1px solid #b9dfc3;
}

/* === Карточка-успех после AJAX-отправки заявки === */
.application-success-card {
    max-width: 560px;
    margin: 0 0 16px;
    padding: 36px 32px 30px;
    background: var(--pink-bg, #fff5f5);
    border: 1px solid #f3c4c4;
    border-radius: 22px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 14px 40px rgba(178, 34, 34, 0.12);
    animation: applicationSuccessIn 0.4s ease-out;
}

@keyframes applicationSuccessIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.application-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--red, #b22222);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    line-height: 1;
}

.application-success-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

.application-success-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 26px;
    line-height: 1.2;
    color: var(--text-main, #2b2b2b);
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 400;
}

.application-success-text {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 22px;
}

.application-success-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid var(--red, #b22222);
    border-radius: 999px;
    color: var(--red, #b22222);
    font-family: 'Prosto One', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 680px) {
    .application-success-card { padding: 28px 22px 24px; border-radius: 18px; }
    .application-success-title { font-size: 21px; }
    .application-success-text { font-size: 14px; }
    .application-success-icon { width: 56px; height: 56px; }
    .application-success-icon svg { width: 28px; height: 28px; }
}

/* === В модалке направления — компактный success === */
.direction-modal-success {
    background: var(--pink-bg, #fff5f5);
    border: 1px solid #f3c4c4;
    border-radius: 16px;
    padding: 24px 22px;
    text-align: center;
    animation: applicationSuccessIn 0.35s ease-out;
}
.direction-modal-success .application-success-icon { width: 52px; height: 52px; margin-bottom: 14px; }
.direction-modal-success .application-success-icon svg { width: 26px; height: 26px; }
.direction-modal-success .application-success-title { font-size: 19px; margin-bottom: 8px; }
.direction-modal-success .application-success-text { font-size: 14px; margin-bottom: 0; }

.application-message-error {
    color: #8a1515;
    background-color: #fff2f2;
    border: 1px solid #e8b8b8;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 320px;
    position: relative;
    z-index: 2;
}

.application-input {
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Prosto One', sans-serif;
    font-size: 13px;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.application-input:focus { border-color: var(--red); }
.application-input::placeholder { color: #aaa; }

.application-submit {
    padding: 16px 32px;
    background-color: var(--red);
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-family: 'Prosto One', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.application-submit:hover { background-color: var(--red-hover); }

.application-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #999;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    max-width: 340px;
}
.application-checkbox-optional {
    color: #777;
    font-size: 11px;
}
.application-checkbox input { display: none; }
.application-checkbox .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #555;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    margin-top: 1px;
}
.application-checkbox input:checked + .checkmark {
    background: var(--red);
    border-color: var(--red);
}
.application-checkbox input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}
.application-checkbox a { color: var(--red); text-decoration: underline; }
.application-input-error {
    font-size: 12px;
    color: #ff4a4a;
    min-height: 0;
    overflow: hidden;
    transition: .2s;
    position: relative;
    z-index: 2;
}
.application-input-error.active {
    min-height: 18px;
    margin-bottom: 4px;
}
.application-input.invalid {
    border-color: #ff4a4a;
}

.application-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .application { padding: 32px 42px 0; min-height: 480px; }
    .application__inner { max-width: 460px; }
    .application-title { font-size: 26px; }
    .application__photo { right: 18px; width: 380px; }
}

@media (max-width: 860px) {
    .application {
        min-height: auto;
        padding: 32px 32px 0;
    }
    .application__inner { max-width: 100%; margin-bottom: 18px; }
    .application__photo {
        position: relative;
        right: auto;
        bottom: auto;
        width: 400px;
        max-width: 100%;
        margin: 0 auto;
        aspect-ratio: 566 / 475;
    }
    .application-image {
        object-position: center bottom;
    }
}

@media (max-width: 560px) {
    .application {
        padding: 24px 18px 0;
        border-radius: 30px;
        margin-bottom: 40px;
    }
    .application-title {
        font-size: 22px;
        line-height: 1.18;
        margin-bottom: 16px;
    }
    .application-form { max-width: 100%; }
    .application__inner { margin-bottom: 14px; }
    .application__photo { width: 320px; }
}

/* ============================================ */
/* === СЕКЦИЯ: FOOTER === */
/* ============================================ */
.footer {
    background-color: var(--red);
    color: var(--text-light);
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 50px 60px;
    align-items: start;
}

.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-logo img { height: 44px; max-height: 44px; max-width: 200px; width: auto; object-fit: contain; display: block; }

.footer-logo-text {
    font-family: 'Prosto One', sans-serif;
    font-size: 22px;
    line-height: 1.3;
    color: var(--text-light);
}

.footer-contacts-title,
.footer-hours-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--text-light);
}

.footer-phone {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 6px;
    text-decoration: none;
    font-family: 'Prosto One', sans-serif;
    transition: opacity 0.3s ease;
}

.footer-phone:hover { opacity: 0.7; }

.footer-hours-text {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Prosto One', sans-serif;
}

.footer-nav { border-top: 1px solid rgba(255,255,255,0.2); padding: 40px 60px; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.footer-nav-col-title {
    font-family: 'Prosto One', sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-nav-list a {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    text-decoration: none;
    font-family: 'Prosto One', sans-serif;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-nav-list a:hover { color: var(--text-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 24px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    font-family: 'Prosto One', sans-serif;
}

.footer-legal { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    text-decoration: none;
    font-family: 'Prosto One', sans-serif;
    transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--text-light); }

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr; gap: 30px; padding: 40px 36px; }
    .footer-nav { padding: 30px 36px; }
    .footer-nav-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom { padding: 20px 36px; }
}

@media (max-width: 680px) {
    .footer-top { padding: 30px 20px; gap: 24px; }
    .footer-logo-text { font-size: 18px; }
    .footer-logo img { height: 36px; max-height: 36px; max-width: 170px; }
    .footer-nav { padding: 24px 20px; }
    .footer-nav-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { padding: 20px; flex-direction: column; gap: 16px; }
    .footer-legal { align-items: flex-start; }
}
