@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* =========================================
   RESET & BASE
   ========================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1a1a2e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* =========================================
   КОНТЕЙНЕР САЙТА
   ========================================= */

.st-landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 0;
}
/* =========================================
   CSS ПЕРЕМЕННЫЕ
   ========================================= */

:root {
    --st-blue:        #1A4FAF;
    --st-blue-dark:   #103990;
    --st-blue-btn:    #1D56C4;
    --st-blue-light:  #EAF0FB;
    --st-bg:          #EFF4FC;
    --st-white:       #ffffff;
    --st-text:        #1a1a2e;
    --st-text-muted:  #6b7a99;
    --st-border:      #d6e0f0;
    --st-radius:      16px;
    --st-radius-sm:   10px;
    --st-shadow:      0 8px 40px rgba(26, 79, 175, 0.13);
}

/* =========================================
   ЗАГЛУШКИ ХЕДЕР/ФУТЕР
   ========================================= */

.st-header {
    background: var(--st-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    transition: box-shadow 0.25s ease;
}

.st-header.is-stuck {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.st-header__inner {
    max-width: 1200px;
    margin: 15px auto 0;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.st-header__logo img {
    height: 45px;
    display: block;
}

.st-header__nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.st-header__nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--st-text);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}

.st-header__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--st-blue);
    transition: width 0.25s ease;
}

.st-header__nav a:hover::after { width: 100%; }
.st-header__nav a:hover { color: var(--st-blue); }

/* Бургер */
.st-burger {
    display: none;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    color: var(--st-blue);
}

.st-burger svg { width: 26px; height: 26px; }

/* Мобильное меню */
.st-mnav {
    display: none;
    border-top: 1px solid var(--st-border);
    background: var(--st-white);
}

.st-mnav.open { display: block; }

.st-header--rounded {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 79, 175, 0.1);
}

.st-mnav__box {
    padding: 12px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.st-mnav__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    background: #f4f7fb;
    font-weight: 600;
    font-size: 15px;
    color: var(--st-text);
    text-decoration: none;
    transition: background 0.2s;
}

.st-mnav__item::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--st-blue);
    border-right: 2px solid var(--st-blue);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.st-mnav__item:hover { background: var(--st-blue-light); }

/* Мобилка */
@media (max-width: 768px) {
    .st-header {
        position: sticky;
        top: 0;
    }
    .st-header__logo img { height: 40px; }
    .st-header__nav { display: none; }
    .st-burger { display: flex; align-items: center; justify-content: center; }
}

.st-footer {
    background: #1B5DAA;
    margin-top: 0;
    padding: 48px 0 0;
}

.st-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* --- Левая часть --- */
.st-footer__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.st-footer__logo img {
    height: 45px;
    display: block;
}

.st-footer__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.st-footer__contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.st-footer__contacts li::before { display: none !important; }

.st-footer__contacts svg {
    flex-shrink: 0;
    opacity: 0.7;
    color: #fff;
}

.st-footer__contacts a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.st-footer__contacts a:hover { color: #fff; }

/* --- Правая часть: навигация --- */
.st-footer__nav {
    display: flex;
    gap: 48px;
}

.st-footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.st-footer__nav-col a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.st-footer__nav-col a:hover { color: #fff; }

/* --- Нижняя строка --- */
.st-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* --- Мобилка --- */
@media (max-width: 768px) {
    .st-footer__inner {
        flex-direction: column;
        gap: 32px;
    }

    .st-footer__nav {
        gap: 32px;
    }
}

/* =========================================
   HERO
   ========================================= */

.st-hero {
    position: relative;
    min-height: 540px;
    padding: 30px 0;
    overflow: hidden;
    background: var(--st-bg);
    border-radius: 15px;
}



.st-hero__bg--adult { background-image: url('/img/hero-bg-adult.jpg'); }
.st-hero__bg--child { background-image: url('/img/hero-bg-child1.jpg'); }

.st-hero__bg--adult.is-active,
.st-hero__bg--child.is-active { opacity: 1; }

.st-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.st-hero__left {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 40px;
}

.st-hero__content { animation: stFadeIn 0.35s ease; }

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

.st-hero__title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.1;
    color: var(--st-blue);
    margin: 0 0 16px;
    text-transform: uppercase;
}

.st-hero__subtitle {
    font-size: clamp(13px, 1.5vw, 17px);

    line-height: 1.6;
    color: var(--st-text);
    font-weight: 500;
    margin: 0;
    max-width: 440px;
}

.st-hero__right {
    flex: 0 0 380px;
    width: 380px;
}

.st-hero__form-box {
    background: var(--st-white);
    border-radius: var(--st-radius);
    box-shadow: var(--st-shadow);
    padding: 28px 28px 32px;
}

.st-hero__form-title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--st-blue);
    text-align: center;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.st-hero__tabs {
    display: flex;
    gap: 4px;
    background: var(--st-blue-light);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 20px;
}

.st-hero__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--st-text-muted);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s;
    white-space: nowrap;
}

.st-hero__tab--active,
.st-hero__tab:hover {
    background: var(--st-white);
    color: var(--st-blue);
    box-shadow: 0 2px 8px rgba(26, 79, 175, 0.12);
}

.st-hero__tab-icon { display: flex; align-items: center; }

.st-form-stub {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.st-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--st-border);
    border-radius: var(--st-radius-sm);
    background: var(--st-blue-light);
    color: var(--st-text);
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.st-input::placeholder { color: var(--st-text-muted); }
.st-input:focus { border-color: var(--st-blue); background: var(--st-white); }
.st-input--short { width: 40%; }
.st-mos-check,
.st-input--id {
    flex: 1 1 60%;
}

.st-input-row {
    display: flex;
    gap: 8px;
}

.st-input-row .st-input {
    width: auto;
    min-width: 0;
}

.st-input-row .st-input[name="date"] {
    flex: 0 0 38%;
}

.st-input-row .st-input[name="child_id"] {
    flex: 1;
}

.st-input-row .st-mos-check {
    flex: 1;
}

.st-input--id {
    background: #FEF0F0;
    border-color: #FFBABA;
}

.st-input--id:focus {
    border-color: #e53935;
    background: #fff5f5;
}

.st-input--mos {
    background: #F0FBF0;
    border-color: #A5D6A7;
    color: #2e7d32;
    font-weight: 600;
    cursor: default;
}

.st-input--mos:focus {
    border-color: #A5D6A7;
    background: #F0FBF0;
}

.st-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--st-text-muted);
    cursor: pointer;
    line-height: 1.4;
}

.st-checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--st-blue);
    width: 15px;
    height: 15px;
}

.st-btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--st-blue-btn);
    color: var(--st-white);
    border: none;
    border-radius: var(--st-radius-sm);
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(29, 86, 196, 0.35);
    margin-top: 4px;
}

.st-btn-submit:hover {
    background: var(--st-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(29, 86, 196, 0.45);
}

.st-btn-submit:active { transform: translateY(0); }

.st-form-msg {
    padding: 10px 14px;
    border-radius: var(--st-radius-sm);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.st-form-msg--ok {
    background: #e6f4ea;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.st-form-msg--err {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.st-form-msg {
    padding: 10px 14px;
    border-radius: var(--st-radius-sm);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.st-form-msg--ok {
    background: #e8f5e9;
    color: #2e7d32;
}

.st-form-msg--err {
    background: #fdecea;
    color: #c62828;
}

@media (max-width: 768px) {
    .st-hero { padding: 32px 0 0; min-height: 90vh; }
    .st-hero__container { flex-direction: column; align-items: stretch; gap: 20px; padding-bottom: 0; }
    .st-hero__left { padding-top: 0; }
    .st-hero__title { font-size: clamp(26px, 6vw, 36px); text-align: center; }
    .st-hero__subtitle { text-align: center; }
    .st-hero__right { flex: none; width: 100%; }
    .st-hero__form-box { padding: 20px 16px 24px; }
    .st-input--short { width: 100%; }
}

@media (max-width: 480px) {
    .st-hero__form-box { border-radius: var(--st-radius-sm); }
}

/* =========================================
   ACCORDION
   ========================================= */

.st-acc { padding: 80px 0; }

.st-acc__heading {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 3vw, 32px);
    color: var(--st-text);
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 32px;
}

.st-acc__list { display: flex; flex-direction: column; gap: 8px; }

.st-acc__item {
    border-radius: var(--st-radius-sm);
    background: #F4F7FB;
    border: 1.5px solid transparent;
    transition: border-color 0.25s;
    overflow: hidden;
    scroll-margin-top: 16px;
}

.st-acc__item--open { border-color: rgba(27, 93, 170, 0.1); }

.st-acc__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.st-acc__trigger-left { display: flex; align-items: center; gap: 16px; }
.st-acc__icon { flex-shrink: 0; display: flex; align-items: center; width: 40px; }

.st-acc__trigger-title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--st-text);
}

.st-acc__plus {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.st-acc__item--open .st-acc__plus { transform: rotate(45deg); }

.st-acc__body { overflow: hidden; }
.st-acc__body-inner { padding: 0 24px 24px; }

.st-acc__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.st-acc__col-title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--st-blue);
    text-transform: uppercase;
    margin: 0 0 12px;
    letter-spacing: 0.03em;
}

.st-acc__col--right .st-acc__col-title {
    font-weight: 700;
    text-transform: none;
    font-size: 15px;
    color: var(--st-text);
}

.st-acc__col-text { font-size: 14px; line-height: 1.7; color: var(--st-text); font-weight: 500; }
.st-acc__col-text p { margin: 0 0 10px; }
.st-acc__col-text p:last-child { margin-bottom: 0; }

.st-acc__col-text ul { margin: 0 0 10px; padding: 0 0 0 16px; list-style: disc; }
.st-acc__col-text ul li { margin-bottom: 4px; }
.st-acc__col-text ul li::marker { color: var(--st-blue); }

.st-acc__col-text a {
    color: var(--st-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.st-acc__col-text a:hover { text-decoration: none; }

.st-acc__note {
    color: var(--st-blue) !important;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 12px !important;
}

.st-acc__body-footer { display: flex; justify-content: flex-end; gap: 16px;}

.st-acc__cta {
    display: inline-block;
    text-decoration: none;
    padding: 14px 32px;
    width: auto;
}

@media (max-width: 768px) {
    .st-acc { padding: 32px 0; }
    .st-acc__cols { grid-template-columns: 1fr; gap: 20px; }
    .st-acc__trigger { padding: 16px; }
    .st-acc__body-inner { padding: 0 16px 20px; }
    .st-acc__cta { width: 100%; text-align: center; }
}

/* =========================================
   DESTINATIONS
   ========================================= */

.st-dest {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 60px calc(50vw - 45%);
    background: url('/img/dest-bg.jpg') center / cover no-repeat;
    background-position-y: -40px;
    min-height: 260px;
    position: relative;
}

.st-dest__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.st-dest__left { flex: 0 0 280px; }

.st-dest__title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--st-blue);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.st-dest__right { flex: 1 1 0; padding-top: 4px; }

.st-dest__intro {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--st-text);
    margin: 0 0 12px;
}

.st-dest__list { margin: 0; padding: 0 0 0 16px; list-style: disc; }
.st-dest__list li { font-size: 15px; font-weight: 500; line-height: 1.7; color: var(--st-text); margin-bottom: 4px; }
.st-dest__list li::marker { color: var(--st-text); }

@media (min-width: 769px) {
    .st-dest { padding: 60px calc(50vw - 49%); }
}

@media (max-width: 768px) {
    .st-dest { padding-top: 40px; padding-bottom: 200px; }
    .st-dest__inner { flex-direction: column; gap: 20px; }
    .st-dest__left { flex: none; }
}

/* =========================================
   HOW IT WORKS
   ========================================= */

.st-how { padding: 60px 0; }

.st-how__inner { display: flex; align-items: center; gap: 60px; }
.st-how__left { flex: 0 0 340px; }

.st-how__big-title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--st-blue);
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
}

.st-how__right { flex: 1 1 0; }

.st-how__heading {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--st-text);
    text-transform: uppercase;
    margin: 0 0 28px;
}

.st-how__steps { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.st-how__steps li::before { display: none !important; }

.st-how__step-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--st-text); margin: 0 0 4px; }
.st-how__step-text { font-size: 15px; font-weight: 500; line-height: 1.6; color: var(--st-text); margin: 0; }

.st-how__footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.st-how__docs { display: flex; gap: 24px; }

.st-how__doc {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-decoration: none; color: var(--st-text); font-size: 13px; font-weight: 500; transition: color 0.2s;
}
.st-how__doc:hover { color: var(--st-blue); }

.st-how__cta {
    display: inline-block; padding: 14px 32px;
    background: transparent; color: var(--st-blue);
    border: 2px solid var(--st-blue); border-radius: var(--st-radius-sm);
    font-family: 'Montserrat', 'Arial Black', sans-serif; font-weight: 700; font-size: 14px;
    letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
    transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.st-how__cta:hover { background: var(--st-blue); color: var(--st-white); }

@media (max-width: 768px) {
    .st-how { padding: 40px 0; }
    .st-how__inner { flex-direction: column; gap: 32px;         align-items: flex-start;}
    .st-how__left { flex: none; }
    .st-how__footer { flex-direction: column; align-items: flex-start; }
    .st-how__cta { width: 100%; text-align: center; }
}

/* =========================================
   FLEET
   ========================================= */

.st-fleet { padding: 48px 0; }

.st-fleet__heading {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 700; font-size: clamp(18px, 2.5vw, 26px);
    color: var(--st-text); text-transform: uppercase; text-align: center; margin: 0 0 36px;
}

.st-fleet__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .st-fleet__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
    }

    .st-fleet__card {
        flex: 0 0 60vw;
        scroll-snap-align: start;
    }
}

.st-fleet__card {
    background: var(--st-bg); border-radius: var(--st-radius);
    padding: 20px 16px 0; display: flex; flex-direction: column; align-items: center; overflow: hidden;
    min-height: 160px;
}

.st-fleet__card-title {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--st-blue); text-transform: uppercase; text-align: center; margin: 0 0 16px; letter-spacing: 0.03em;
}

.st-fleet__card-img-wrap { width: 100%; display: flex; align-items: flex-end; justify-content: center; }

.st-fleet__card-img { display: block; max-width: 100%; max-height: 100px; object-fit: contain; object-position: bottom center; }



/* =========================================
   FAQ
   ========================================= */

.st-faq {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 60px calc(50vw - 48%);
    background: url('/img/faq-bg.jpg') left center / cover no-repeat;
    margin-bottom: 0;
}

.st-faq__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; gap: 60px; }
.st-faq__left { flex: 0 0 260px; padding-top: 8px; }

.st-faq__title {
    font-family: 'Montserrat', 'Arial Black', sans-serif; font-weight: 600;
    font-size: clamp(28px, 4vw, 52px); color: var(--st-blue); text-transform: uppercase; line-height: 1.1; margin: 0;
}

.st-faq__right { flex: 1 1 0; display: flex; flex-direction: column; gap: 8px; }

/* Все элементы — белые карточки */
.st-faq__item {
    background: var(--st-white);
    border-radius: var(--st-radius-sm);
    box-shadow: 0 2px 12px rgba(26, 79, 175, 0.08);
    transition: box-shadow 0.25s;
}

/* Открытый — тень крупнее */
.st-faq__item--open {
    box-shadow: var(--st-shadow);
}

.st-faq__trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 18px 20px; background: none; border: none; cursor: pointer; text-align: left;
}

.st-faq__question {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: clamp(14px, 1.5vw, 17px); color: var(--st-text);
}

.st-faq__icon { flex-shrink: 0; width: 29px; height: 29px; position: relative; }

.st-faq__icon-plus,
.st-faq__icon-close {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); transition: opacity 0.2s;
}

.st-faq__icon-close { opacity: 0; }
.st-faq__icon-plus  { opacity: 1; }
.st-faq__item--open .st-faq__icon-close { opacity: 1; }
.st-faq__item--open .st-faq__icon-plus  { opacity: 0; }

.st-faq__body { padding: 0 20px 20px; }
.st-faq__answer { font-size: 14px; font-weight: 500; line-height: 1.7; color: var(--st-text); margin: 0; }

@media (max-width: 768px) {
    .st-faq { padding: 40px calc(50vw - 49%); }
    .st-faq__inner { flex-direction: column; gap: 28px; }
    .st-faq__left { flex: none; padding-top: 0; }
}



.st-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.st-popup--open {
    display: flex;
}

.st-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.st-popup__box {
    position: relative;
    background: var(--st-white);
    border-radius: var(--st-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px 36px 36px;
    z-index: 1;
}

.st-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--st-bg);
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--st-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.st-popup__close:hover {
    background: var(--st-blue-light);
    color: var(--st-blue);
}

.st-popup__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--st-text);
    margin: 0 0 20px;
}

.st-popup__content {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--st-text);
}

.st-popup__content p { margin: 0 0 12px; }
.st-popup__content p:last-child { margin-bottom: 0; }

.st-checkbox__link {
    color: var(--st-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.st-checkbox__link:hover { text-decoration: none; }

@media (max-width: 480px) {
    .st-popup__box {
        padding: 32px 20px 24px;
        max-height: 90vh;
    }
}


.st-acc__cta--mos {
    background: #cc0029;
    border-color: #cc0029;
}
.st-acc__cta--mos:hover {
    background: #a8001f;
    border-color: #a8001f;
}

.st-acc__docs {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin-top: 8px;
}

.st-acc__docs .st-how__doc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    text-decoration: none;
    color: #1B5DAA;
    font-size: 13px;
}


.st-popup__box--sm {
    max-width: 600px;
}

@media (max-width: 768px) {
    .st-hero__tab-icon {
        display: none;
    }
	
	.st-hero__container {

    padding: 0 10px;
}
.st-input {

    padding: 13px 12px;
}

.st-btn-submit {

    font-weight: 600;
    font-size: 13px;
}
.st-acc__cta {

    padding: 14px 25px;
}

.st-how__big-title {
    max-width: 250px;
}

.st-dest {

    padding: 60px calc(50vw - 49%);
} 
}

.st-header__nav a:last-child::after {
    background: #cc0029;
}

.st-header__nav a:last-child {
    color: #cc0029;
}

.st-header__nav a:last-child:hover {
    color: #cc0029;
}


.st-mos-check {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    padding: 13px 12px;
    background: #F0FBF0;
    border: 1.5px solid #A5D6A7;
    border-radius: var(--st-radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.3;
}

.st-mos-check input[type="checkbox"] {
    flex-shrink: 0;
    accent-color: #2e7d32;
    width: 15px;
    height: 15px;
}
/* =========================================
   ВЕРСИЯ ДЛЯ СЛАБОВИДЯЩИХ
   ========================================= */

/* --- Кнопка-глаз в шапке (десктоп) --- */
.st-vi-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--st-border);
    border-radius: 8px;
    background: transparent;
    color: var(--st-text-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.st-vi-btn:hover,
.st-vi-btn.active {
    border-color: var(--st-blue);
    color: var(--st-blue);
    background: var(--st-blue-light);
}

@media (max-width: 768px) {
    .st-vi-btn { display: none; }
}

/* --- Пункт в мобильном меню --- */
.st-mnav__item--vi {
    background: var(--st-blue-light);
    color: var(--st-blue);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.st-mnav__item--vi::after { display: none !important; }
.st-mnav__item--vi:hover { background: #d6e6fb; }

/* --- Панель настроек --- */
.st-vi-panel {
    display: none;
    background: #eef3fc;
    border-top: 1px solid var(--st-border);
    border-bottom: 1px solid var(--st-border);
}

.st-vi-panel[aria-hidden="false"] { display: block; }

.st-vi-panel__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.st-vi-groups {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
}

.st-vi-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.st-vi-group__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--st-text-muted);
    margin-right: 4px;
    white-space: nowrap;
}

/* Кнопки опций */
.st-vi-opt {
    padding: 4px 9px;
    border: 1.5px solid var(--st-border);
    border-radius: 6px;
    background: #fff;
    color: var(--st-text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.4;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.st-vi-opt:hover { border-color: var(--st-blue); color: var(--st-blue); }

.st-vi-opt--active {
    background: var(--st-blue);
    border-color: var(--st-blue);
    color: #fff;
}

.st-vi-opt--lg { font-size: 15px; }
.st-vi-opt--xl { font-size: 18px; }

/* Цветовые кнопки */
.st-vi-color {
    width: 28px;
    height: 28px;
    border: 2px solid var(--st-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: #333;
}

.st-vi-color--black { background: #1a1a1a; color: #fff; }
.st-vi-color--beige { background: #f5edd6; color: #5a4a2a; }

.st-vi-color.st-vi-opt--active {
    border-color: var(--st-blue);
    box-shadow: 0 0 0 2px var(--st-blue);
}

/* Кнопка «Обычная версия» */
.st-vi-reset {
    padding: 6px 14px;
    border: 1.5px solid var(--st-text-muted);
    border-radius: 8px;
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--st-text-muted);
    cursor: pointer;
    white-space: nowrap;
    margin-left: auto;
    transition: border-color 0.2s, color 0.2s;
}

.st-vi-reset:hover { border-color: #cc0029; color: #cc0029; }

@media (max-width: 768px) {
    .st-vi-panel__inner { padding: 10px 16px; gap: 10px; }
    .st-vi-groups { gap: 10px; }
    .st-vi-reset { margin-left: 0; width: 100%; text-align: center; }
}

/* =========================================
   VI — РЕЖИМЫ
   ========================================= */

/* Размер шрифта */
body.vi-fs-lg { font-size: 19px !important; }
body.vi-fs-xl { font-size: 23px !important; }

body.vi-fs-lg p, body.vi-fs-lg li, body.vi-fs-lg span,
body.vi-fs-lg .st-acc__col-text, body.vi-fs-lg .st-faq__answer,
body.vi-fs-lg .st-how__step-text, body.vi-fs-lg .st-dest__intro { font-size: 18px !important; }

body.vi-fs-xl p, body.vi-fs-xl li, body.vi-fs-xl span,
body.vi-fs-xl .st-acc__col-text, body.vi-fs-xl .st-faq__answer,
body.vi-fs-xl .st-how__step-text, body.vi-fs-xl .st-dest__intro { font-size: 22px !important; }

body.vi-fs-lg .st-hero__title  { font-size: clamp(32px, 4.5vw, 58px) !important; }
body.vi-fs-xl .st-hero__title  { font-size: clamp(36px, 5vw, 64px)   !important; }

/* Межбуквенный интервал */
body.vi-spacing-wide,
body.vi-spacing-wide p,
body.vi-spacing-wide li,
body.vi-spacing-wide a,
body.vi-spacing-wide span,
body.vi-spacing-wide button { letter-spacing: 0.1em !important; }

/* Скрыть изображения (кроме логотипов) */
body.vi-no-images img:not([alt*="логотип"]):not([alt*="Московская"]):not([alt*="МАСТ"]) {
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
}
body.vi-no-images .st-hero { min-height: auto !important; }
body.vi-no-images .st-dest { background-image: none !important; background-color: var(--st-bg) !important; }
body.vi-no-images .st-faq  { background-image: none !important; background-color: #f4f7fb !important; }

/* --- Тема: Чёрная --- */
body.vi-theme-black {
    background: #111 !important;
    color: #f0f0f0 !important;
}
body.vi-theme-black .st-header,
body.vi-theme-black .st-mnav           { background: #0d0d0d !important; border-color: #333 !important; }
body.vi-theme-black .st-header__nav a  { color: #e0e0e0 !important; }
body.vi-theme-black .st-header__nav a:hover { color: #8ab4f8 !important; }
body.vi-theme-black .st-mnav__item     { background: #1e1e1e !important; color: #e0e0e0 !important; }
body.vi-theme-black .st-mnav__item--vi { background: #1a2a3a !important; color: #8ab4f8 !important; }
body.vi-theme-black .st-vi-panel       { background: #0d0d0d !important; border-color: #333 !important; }
body.vi-theme-black .st-vi-opt         { background: #1e1e1e !important; border-color: #444 !important; color: #e0e0e0 !important; }
body.vi-theme-black .st-vi-opt--active { background: #3a6bd4 !important; border-color: #3a6bd4 !important; color: #fff !important; }
body.vi-theme-black .st-vi-group__label{ color: #888 !important; }
body.vi-theme-black .st-vi-reset       { border-color: #666 !important; color: #888 !important; }
body.vi-theme-black .st-hero           { background: #111 !important; }
body.vi-theme-black .st-hero__title,
body.vi-theme-black .st-dest__title,
body.vi-theme-black .st-faq__title,
body.vi-theme-black .st-how__big-title { color: #8ab4f8 !important; }
body.vi-theme-black .st-hero__subtitle,
body.vi-theme-black .st-acc__col-text,
body.vi-theme-black .st-faq__answer,
body.vi-theme-black .st-how__step-text,
body.vi-theme-black .st-dest__intro,
body.vi-theme-black .st-dest__list li  { color: #d0d0d0 !important; }
body.vi-theme-black .st-acc__item,
body.vi-theme-black .st-fleet__card    { background: #1e1e1e !important; }
body.vi-theme-black .st-faq__item      { background: #1a1a1a !important; box-shadow: none !important; }
body.vi-theme-black .st-acc__trigger-title,
body.vi-theme-black .st-faq__question,
body.vi-theme-black .st-how__step-title,
body.vi-theme-black .st-fleet__card-title { color: #e0e0e0 !important; }
body.vi-theme-black .st-hero__form-box { background: #1a1a1a !important; }
body.vi-theme-black .st-hero__form-title{ color: #8ab4f8 !important; }
body.vi-theme-black .st-hero__tabs     { background: #222 !important; }
body.vi-theme-black .st-hero__tab      { color: #888 !important; }
body.vi-theme-black .st-hero__tab--active { background: #1e1e1e !important; color: #8ab4f8 !important; }
body.vi-theme-black .st-input          { background: #222 !important; border-color: #444 !important; color: #e0e0e0 !important; }
body.vi-theme-black .st-input::placeholder { color: #666 !important; }
body.vi-theme-black .st-dest           { background-color: #111 !important; background-image: none !important; }
body.vi-theme-black .st-faq            { background-color: #111 !important; background-image: none !important; }
body.vi-theme-black .st-footer         { background: #0d0d0d !important; }

/* --- Тема: Бежевая --- */
body.vi-theme-beige {
    background: #f5edd6 !important;
    color: #3b2f0e !important;
}
body.vi-theme-beige .st-header,
body.vi-theme-beige .st-mnav           { background: #ede3c4 !important; border-color: #d4c89a !important; }
body.vi-theme-beige .st-header__nav a  { color: #3b2f0e !important; }
body.vi-theme-beige .st-header__nav a:hover { color: #7a5c00 !important; }
body.vi-theme-beige .st-mnav__item     { background: #e8dfc5 !important; color: #3b2f0e !important; }
body.vi-theme-beige .st-mnav__item--vi { background: #dfd4b0 !important; color: #7a5c00 !important; }
body.vi-theme-beige .st-vi-panel       { background: #ede3c4 !important; border-color: #d4c89a !important; }
body.vi-theme-beige .st-vi-opt         { background: #f5edd6 !important; border-color: #d4c89a !important; color: #3b2f0e !important; }
body.vi-theme-beige .st-vi-opt--active { background: #7a5c00 !important; border-color: #7a5c00 !important; color: #fff !important; }
body.vi-theme-beige .st-vi-group__label{ color: #7a6a45 !important; }
body.vi-theme-beige .st-hero           { background: #f5edd6 !important; }
body.vi-theme-beige .st-hero__title,
body.vi-theme-beige .st-dest__title,
body.vi-theme-beige .st-faq__title,
body.vi-theme-beige .st-how__big-title { color: #7a5c00 !important; }
body.vi-theme-beige .st-hero__subtitle,
body.vi-theme-beige .st-acc__col-text,
body.vi-theme-beige .st-faq__answer,
body.vi-theme-beige .st-how__step-text,
body.vi-theme-beige .st-dest__intro,
body.vi-theme-beige .st-dest__list li  { color: #3b2f0e !important; }
body.vi-theme-beige .st-acc__item,
body.vi-theme-beige .st-fleet__card    { background: #ede3c4 !important; }
body.vi-theme-beige .st-faq__item      { background: #ede3c4 !important; box-shadow: none !important; }
body.vi-theme-beige .st-acc__trigger-title,
body.vi-theme-beige .st-faq__question,
body.vi-theme-beige .st-how__step-title,
body.vi-theme-beige .st-fleet__card-title { color: #3b2f0e !important; }
body.vi-theme-beige .st-hero__form-box { background: #ede3c4 !important; }
body.vi-theme-beige .st-hero__form-title{ color: #7a5c00 !important; }
body.vi-theme-beige .st-hero__tabs     { background: #e0d7bc !important; }
body.vi-theme-beige .st-input          { background: #f5edd6 !important; border-color: #d4c89a !important; color: #3b2f0e !important; }
body.vi-theme-beige .st-dest           { background-color: #f5edd6 !important; background-image: none !important; }
body.vi-theme-beige .st-faq            { background-color: #f5edd6 !important; background-image: none !important; }
body.vi-theme-beige .st-footer         { background: #6b5522 !important; }

/* =========================================
   VI — ПАТЧ v2: фоны и полное покрытие текста
   ========================================= */

/* --- Без картинок: CSS-фоны --- */
body.vi-no-images .st-hero__bg--adult,
body.vi-no-images .st-hero__bg--child { background-image: none !important; }
body.vi-no-images .st-dest { background-image: none !important; background-color: var(--st-bg) !important; padding: 60px 24px !important; }
body.vi-no-images .st-faq  { background-image: none !important; background-color: #f4f7fb !important; padding: 60px 24px !important; }

/* --- Чёрная тема: широкое покрытие текста --- */
body.vi-theme-black h1, body.vi-theme-black h2,
body.vi-theme-black h3, body.vi-theme-black h4,
body.vi-theme-black h5, body.vi-theme-black h6 { color: #e0e0e0 !important; }

body.vi-theme-black p,
body.vi-theme-black li,
body.vi-theme-black label { color: #d0d0d0 !important; }

body.vi-theme-black a { color: #8ab4f8 !important; }

/* Контакты — чёрная тема */
body.vi-theme-black .st-contacts { background: #111 !important; }
body.vi-theme-black .st-contacts__card {
    background: #1e1e1e !important;
    border-color: #333 !important;
}
body.vi-theme-black .st-contacts__title { color: #8ab4f8 !important; }
body.vi-theme-black .st-contacts__sub,
body.vi-theme-black .st-contacts__note { color: #888 !important; }
body.vi-theme-black .st-contacts__val { color: #e0e0e0 !important; }
body.vi-theme-black .st-contacts__card-label {
    color: #8ab4f8 !important;
    border-color: #333 !important;
}
body.vi-theme-black .st-contacts__icon {
    background: #2a2a2a !important;
    color: #8ab4f8 !important;
}

/* Секции-заголовки — чёрная тема */
body.vi-theme-black .st-acc__heading,
body.vi-theme-black .st-fleet__heading { color: #e0e0e0 !important; }

/* --- Бежевая тема: контакты --- */
body.vi-theme-beige .st-contacts { background: #f5edd6 !important; }
body.vi-theme-beige .st-contacts__card {
    background: #ede3c4 !important;
    border-color: #d4c89a !important;
}
body.vi-theme-beige .st-contacts__title { color: #7a5c00 !important; }
body.vi-theme-beige .st-contacts__sub,
body.vi-theme-beige .st-contacts__note { color: #7a6a45 !important; }
body.vi-theme-beige .st-contacts__val { color: #3b2f0e !important; }
body.vi-theme-beige .st-contacts__card-label {
    color: #7a5c00 !important;
    border-color: #d4c89a !important;
}
body.vi-theme-beige .st-contacts__icon {
    background: #dfd4b0 !important;
    color: #7a5c00 !important;
}
body.vi-theme-beige .st-acc__heading,
body.vi-theme-beige .st-fleet__heading { color: #3b2f0e !important; }

/* =========================================
   VI — ПАТЧ v3: hero-фоны + конфликт тем
   ========================================= */

/* Скрываем hero bg-дивы в любом VI-режиме без картинок */
body.vi-no-images .st-hero__bg--adult,
body.vi-no-images .st-hero__bg--child,
body.vi-theme-black .st-hero__bg--adult,
body.vi-theme-black .st-hero__bg--child {
    opacity: 0 !important;
    background-image: none !important;
}

/* Чёрная тема ВСЕГДА темнее vi-no-images (ставим последними — побеждают) */
body.vi-theme-black .st-dest,
body.vi-theme-black.vi-no-images .st-dest {
    background: #111 !important;
}

body.vi-theme-black .st-faq,
body.vi-theme-black.vi-no-images .st-faq {
    background: #111 !important;
}

body.vi-theme-black .st-hero,
body.vi-theme-black.vi-no-images .st-hero {
    background: #111 !important;
}

/* =========================================
   VI — ПАТЧ v4: quiz hero bg
   ========================================= */

/* Квиз-секция: скрываем фоновый див */
body.vi-no-images .st_quiz_hero__bg,
body.vi-theme-black .st_quiz_hero__bg {
    opacity: 0 !important;
    background-image: none !important;
}

/* Квиз-секция: тёмный фон */
body.vi-theme-black .st_quiz_hero {
    background: #111 !important;
}

/* Бежевая тема: квиз */
body.vi-theme-beige .st_quiz_hero__bg {
    opacity: 0 !important;
}
body.vi-theme-beige .st_quiz_hero {
    background: #f5edd6 !important;
}

/* =========================================
   VI — ПАТЧ v5: шрифты квиза + sticky header
   ========================================= */

/* --- Квиз: A+ --- */
body.vi-fs-lg .st_quiz_hero__title  { font-size: clamp(36px, 5.2vw, 56px) !important; }
body.vi-fs-lg .st_quiz_hero__subtitle,
body.vi-fs-lg .quiz__title          { font-size: 18px !important; }
body.vi-fs-lg .quiz__subtitle,
body.vi-fs-lg .quiz__notice,
body.vi-fs-lg .quiz__option-title   { font-size: 16px !important; }
body.vi-fs-lg .quiz__option-desc,
body.vi-fs-lg .quiz__field-label,
body.vi-fs-lg .quiz__checkbox,
body.vi-fs-lg .quiz__step-label     { font-size: 14px !important; }
body.vi-fs-lg .quiz__input,
body.vi-fs-lg .quiz__select,
body.vi-fs-lg .quiz__btn,
body.vi-fs-lg .quiz__yn-btn         { font-size: 16px !important; }

/* --- Квиз: A++ --- */
body.vi-fs-xl .st_quiz_hero__title  { font-size: clamp(40px, 5.8vw, 62px) !important; }
body.vi-fs-xl .st_quiz_hero__subtitle,
body.vi-fs-xl .quiz__title          { font-size: 22px !important; }
body.vi-fs-xl .quiz__subtitle,
body.vi-fs-xl .quiz__notice,
body.vi-fs-xl .quiz__option-title   { font-size: 20px !important; }
body.vi-fs-xl .quiz__option-desc,
body.vi-fs-xl .quiz__field-label,
body.vi-fs-xl .quiz__checkbox,
body.vi-fs-xl .quiz__step-label     { font-size: 17px !important; }
body.vi-fs-xl .quiz__input,
body.vi-fs-xl .quiz__select,
body.vi-fs-xl .quiz__btn,
body.vi-fs-xl .quiz__yn-btn         { font-size: 20px !important; }
