:root {
    --bg: #f4f7fb;
    --white: #ffffff;
    --text: #102033;
    --muted: #6d7b8d;
    --line: rgba(16, 32, 51, 0.1);
    --primary: #1a73e8;
    --primary-dark: #0f4fa8;
    --accent: #0d3b66;
    --surface: rgba(255, 255, 255, 0.84);
    --shadow: 0 20px 60px rgba(16, 32, 51, 0.12);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --container: 1440px;
    --header-height: 96px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
            radial-gradient(circle at top left, rgba(26, 115, 232, 0.08), transparent 30%),
            linear-gradient(180deg, #f9fbff 0%, #f2f6fb 100%);
}

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

button,
input {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.site-wrapper {
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: calc(var(--container) + 40px);
    margin: 0 auto;
    padding: 0 20px;
}

.main {
    min-height: 100vh;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244, 247, 251, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 32, 51, 0.06);
}

.header__container {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.header__logo-icon {
    width: 48px;
		width: 55px;
    height: 48px;
		height: 55px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, var(--primary), var(--accent));*/
    /*color: var(--white);*/
    /*font-size: 22px;*/
    /*font-weight: 800;*/
    /*box-shadow: 0 10px 24px rgba(26, 115, 232, 0.24);*/
}

.header__logo-content {
    display: flex;
    flex-direction: column;
}

.header__logo-title {
    font-size: 18px;
		font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.header__logo-subtitle {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.2;
}

.header__nav {
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.header__menu .active {
	color: var(--primary);
}
.header__menu-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.header__menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.header__menu-link:hover {
    color: var(--primary);
}

.header__menu-link:hover::after {
    width: 100%;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 14px 28px rgba(26, 115, 232, 0.22);
}

.btn--secondary {
    color: var(--text);
    background: #edf2f8;
}

.header__quiz-btn {
    white-space: nowrap;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header__phone {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.header__mail {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

.header__lang {
    display: inline-flex;
    /*align-items: center;*/
    /*gap: 6px;*/
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
}

.header__lang-btn {
    min-width: 44px;
    min-width: 47px;
		min-width: max-content;
    height: 38px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    transition: 0.25s ease;
	
		text-transform: uppercase;
		display: inline-flex;
		align-items: center;
		text-align: center;
}

.header__lang-btn.is-active {
    background: var(--text);
    color: var(--white);
}

.header__lang-btn.active {
    background: var(--text);
    color: var(--white);
}

.header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    transition: 0.25s ease;
}

.header__social:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

.header__social--max {
    font-size: 18px;
    font-weight: 800;
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.burger span {
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: var(--text);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu .container {
    padding-top: 20px;
    padding-bottom: 24px;
}

.mobile-menu__list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__link {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f4f7fb;
    font-weight: 600;
}

.mobile-menu__quiz-btn {
    width: 100%;
    margin-bottom: 18px;
}

.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.mobile-menu__phone {
    font-size: 18px;
    font-weight: 700;
}

.mobile-menu__mail {
    font-size: 14px;
    color: var(--muted);
}

.mobile-menu__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* QUIZ */
.quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.quiz-modal.is-open {
    display: block;
}

.quiz-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 32, 0.52);
    backdrop-filter: blur(6px);
}

.quiz-modal__dialog {
    position: relative;
    width: min(100% - 32px, 760px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    margin: 20px auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 36px;
}

.quiz-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f5fa;
    font-size: 28px;
    line-height: 1;
}

.quiz__label {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.quiz__title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.1;
}

.quiz__subtitle {
    margin: 0;
    font-size: 16px;
    color: var(--muted);
}

.quiz__progress {
    margin: 28px 0 24px;
}

.quiz__progress-line {
    width: 100%;
    height: 8px;
    background: #ebf0f7;
    border-radius: 999px;
    overflow: hidden;
}

.quiz__progress-fill {
    display: block;
    width: 25%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 999px;
    transition: width 0.3s ease;
}

.quiz__progress-text {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--muted);
}

.quiz__step {
    display: none;
}

.quiz__step.is-active {
    display: block;
}

.quiz__question {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 700;
}

.quiz__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.quiz__option {
    position: relative;
    display: block;
    cursor: pointer;
}

.quiz__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quiz__option span {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 20px;
    background: #f5f8fc;
    border: 1px solid transparent;
    font-weight: 600;
    transition: 0.25s ease;
}

.quiz__option input:checked + span {
    background: rgba(26, 115, 232, 0.08);
    border-color: rgba(26, 115, 232, 0.28);
    color: var(--accent);
}

.quiz__fields {
    display: grid;
    gap: 14px;
}

.quiz__input {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #f9fbfd;
    outline: none;
}

.quiz__input:focus {
    border-color: rgba(26, 115, 232, 0.35);
}

.quiz__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.quiz__submit {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1320px) {
    .header__container {
        grid-template-columns: auto 1fr;
    }

    .header__nav {
        order: 3;
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-bottom: 16px;
    }

    .header__menu {
        flex-wrap: wrap;
        gap: 18px 24px;
    }
}

@media (max-width: 1100px) {
    .header__nav,
    .header__contacts,
    .header__lang,
    .header__socials,
    .header__quiz-btn {
        display: none;
    }

    .header__container {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .burger {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 82px;
    }

    .container {
        padding: 0 16px;
    }

    .header__logo {
        gap: 10px;
        min-width: auto;
    }

    .header__logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .header__logo-title {
        font-size: 16px;
    }

    .header__logo-subtitle {
        font-size: 11px;
    }

    .quiz-modal__dialog {
        width: calc(100% - 16px);
        margin: 8px auto;
        padding: 24px 18px;
        border-radius: 24px;
    }

    .quiz__title {
        font-size: 28px;
    }

    .quiz__question {
        font-size: 20px;
    }

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

    .quiz__footer {
        flex-direction: column;
    }

    .quiz__footer .btn {
        width: 100%;
    }
}

.btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 51, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 115, 232, 0.24);
}

/* HERO */
.hero {
    position: relative;
    padding: 42px 0 90px;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
    margin-bottom: 34px;
}

.hero__content {
    max-width: 760px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 6px rgba(26, 115, 232, 0.1);
}

.hero__title {
    margin: 0 0 22px;
    font-size: 64px;
    
	    font-size: 60px;
		font-size: 45px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero__title span {
    display: block;
    margin-top: 12px;
    font-size: 28px;
	    font-size: 24px;
    line-height: 1.18;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: normal;
}

.hero__text {
    max-width: 680px;
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
	margin-bottom: 20px;
}

.hero__btn {
    min-width: 210px;
}

.hero__advantages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.hero__advantage {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 14px 28px rgba(16, 32, 51, 0.06);
}

.hero__advantage-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.hero__advantage-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__advantage-content strong {
    font-size: 17px;
    line-height: 1.3;
}

.hero__advantage-content span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}

.hero__visual {
    position: relative;
}

.hero__image-card {
    position: relative;
    min-height: 640px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, #dceeff 0%, #bfdaf7 100%);
    box-shadow: 0 28px 70px rgba(16, 32, 51, 0.18);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__floating {
    position: absolute;
    max-width: 280px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 18px 40px rgba(16, 32, 51, 0.14);
}

.hero__floating--top {
    top: 22px;
    left: 22px;
}

.hero__floating--bottom {
    right: 22px;
    bottom: 22px;
}

.hero__floating-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.hero__floating strong {
    font-size: 15px;
    line-height: 1.45;
    color: var(--text);
}

/* HERO FILTER */
.hero-filter {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 24px 60px rgba(16, 32, 51, 0.1);
    backdrop-filter: blur(10px);
}

.hero-filter__head {
    margin-bottom: 22px;
}

.hero-filter__label {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-filter__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 800;
}

.hero-filter__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.hero-filter__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-filter__caption {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.hero-filter__select {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    background: #f8fbff;
    color: var(--text);
    outline: none;
    appearance: none;
}

.hero-filter__select:focus {
    border-color: rgba(26, 115, 232, 0.35);
}

.hero-filter__submit {
    min-width: 210px;
}

/* RESPONSIVE HERO */
@media (max-width: 1320px) {
    .hero__title {
        font-size: 54px;
    }

    .hero__title span {
        font-size: 24px;
    }

    .hero-filter__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-filter__submit {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .hero {
        padding: 26px 0 70px;
    }

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

    .hero__content {
        max-width: 100%;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image-card {
        min-height: 520px;
    }

    .hero__title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {

    .hero {
        padding: 20px 0 56px;
    }

    .hero__badge {
        font-size: 13px;
        padding: 0 14px;
        min-height: 38px;
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 1.04;
        margin-bottom: 18px;
    }

    .hero__title span {
        font-size: 20px;
        margin-top: 10px;
    }

    .hero__text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero__actions {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .hero__btn {
        width: 100%;
    }

    .hero__image-card {
        min-height: 420px;
        border-radius: 24px;
    }

    .hero__floating {
        max-width: 220px;
        padding: 14px;
        border-radius: 18px;
    }

    .hero__floating--top {
        top: 14px;
        left: 14px;
    }

    .hero__floating--bottom {
        right: 14px;
        bottom: 14px;
    }

    .hero-filter {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .hero-filter__title {
        font-size: 22px;
    }

    .hero-filter__grid {
        grid-template-columns: 1fr;
    }

    .hero-filter__submit {
        width: 100%;
    }
}

/* =========================
   POPUP ПРОГУЛОК
========================= */
.trips-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
}

.trips-modal.is-open {
    display: block;
}

.trips-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 32, 0.56);
    backdrop-filter: blur(6px);
}

.trips-modal__dialog {
    position: relative;
    width: min(100% - 32px, 1320px);
    margin: 20px auto;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 80px rgba(16, 32, 51, 0.18);
    overflow: hidden;
}

.trips-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f5fa;
    font-size: 28px;
    line-height: 1;
}

.trips-modal__head {
    margin-bottom: 20px;
    padding-right: 56px;
}

.trips-modal__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.trips-modal__title {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 800;
}

.trips-modal__subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: var(--muted);
}

/* =========================
   КАРУСЕЛЬ
========================= */
.trips-carousel {
    position: relative;
}

.trips-carousel__viewport {
    overflow: hidden;
}

.trips-carousel__track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.trips-carousel__arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 32, 51, 0.1);
    box-shadow: 0 12px 30px rgba(16, 32, 51, 0.12);
    font-size: 28px;
    font-weight: 600;
}

.trips-carousel.is-carousel .trips-carousel__arrow {
    display: inline-flex;
}

.trips-carousel__arrow--prev {
    left: -10px;
}

.trips-carousel__arrow--next {
    right: -10px;
}

.trips-carousel__dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.trips-carousel__dots.is-active {
    display: flex;
}

.trips-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(16, 32, 51, 0.18);
    transition: 0.25s ease;
}

.trips-carousel__dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--primary);
}

/* =========================
   КАРТОЧКА
========================= */
.trip-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 16px 36px rgba(16, 32, 51, 0.08);
}

.trip-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: #dfe9f6;
}

.trip-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    box-shadow: 0 8px 20px rgba(16, 32, 51, 0.12);
}

.trip-card__body {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.trip-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 43px;
}

.trip-card__text {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.trip-card__meta {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
}

.trip-card__meta-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--text);
}

.trip-card__meta-item strong {
    font-weight: 700;
    color: var(--accent);
}

.trip-card__times {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 8px;
}

.trip-card__time {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #f3f7fc;
    border: 1px solid rgba(16, 32, 51, 0.08);
    font-size: 12px;
    font-weight: 700;
}

.trip-card__footer {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trip-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
}

.trip-card__price strong {
    font-size: 22px;
    line-height: 1;
    color: var(--text);
}

.trip-card__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.trip-card__button,
.trip-card__more {
    min-height: 44px;
}

.trip-card__more {
    padding: 0 14px;
    white-space: nowrap;
}

/* =========================
   ЕСЛИ КАРТОЧЕК <= 3
========================= */
.trips-carousel:not(.is-carousel) .trips-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    transform: none !important;
}

.trips-carousel:not(.is-carousel) .trip-card {
    flex: initial;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
    .trips-modal__dialog {
        width: min(100% - 24px, 1000px);
        padding: 22px;
    }

    .trip-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .trips-carousel:not(.is-carousel) .trips-carousel__track {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
	.header__container {
		gap: 7px;
	}
	.header__right {
		gap: 7px;
	}
	.header__lang{
		display: block;
		display: inline-flex;
	}
    .trips-modal__dialog {
        width: calc(100% - 16px);
        margin: 8px auto;
        padding: 18px 14px;
        border-radius: 22px;
    }

    .trips-modal__title {
        font-size: 24px;
    }

    .trips-modal__subtitle {
        font-size: 14px;
    }

    .trip-card {
        flex-basis: 100%;
        border-radius: 20px;
    }

    .trip-card__body {
        padding: 14px;
    }

    .trip-card__title {
        font-size: 17px;
        min-height: auto;
    }

    .trip-card__text {
        min-height: auto;
    }

    .trip-card__meta-item {
        grid-template-columns: 84px 1fr;
        font-size: 12px;
    }

    .trip-card__actions {
        grid-template-columns: 1fr;
    }

    .trips-carousel__arrow {
        width: 42px;
        height: 42px;
        top: 38%;
    }

    .trips-carousel__arrow--prev {
        left: -4px;
    }

    .trips-carousel__arrow--next {
        right: -4px;
    }

    .trips-carousel:not(.is-carousel) .trips-carousel__track {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ROUTES MINI CATALOG
========================= */
.routes-section {
    padding: 0;
}

.routes-box {
    position: relative;
    padding: 36px;
    border-radius: 36px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 255, 0.96) 100%);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 30px 80px rgba(16, 32, 51, 0.08);
}

.routes-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(26, 115, 232, 0.08), transparent 28%);
}

.routes-box__top {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.routes-box__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.routes-box__title {
    margin: 0 0 12px;
    max-width: 760px;
    font-size: 42px;
	font-size: 38px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text);
}

.routes-box__text {
    margin: 0;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.routes-box__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.routes-box__filter {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.routes-box__filter:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 115, 232, 0.24);
}

.routes-box__filter.is-active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.routes-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CARD */
.route-mini-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 16px 36px rgba(16, 32, 51, 0.06);
    transition: 0.25s ease;
}

.route-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(16, 32, 51, 0.1);
}

.route-mini-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe9f6;
}

.route-mini-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-mini-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16, 32, 51, 0.12);
}

.route-mini-card__body {
    display: flex;
    flex-direction: column;
    padding: 16px;
    height: 100%;
}

.route-mini-card__title {
    margin: 0 0 12px;
    font-size: 18px;
		font-size: 18px;
    line-height: 1.22;
    font-weight: 800;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
		-webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.route-mini-card__meta {
    display: grid;
    gap: 7px;
    margin-bottom: 12px;
}

.route-mini-card__meta-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
}

.route-mini-card__meta-row strong {
    font-weight: 700;
    color: var(--accent);
}

.route-mini-card__meta-row span {
    color: var(--text);
}

.route-mini-card__times {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 14px;
}

.route-mini-card__time {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fc;
    border: 1px solid rgba(16, 32, 51, 0.08);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.route-mini-card__bottom {
    margin-top: auto;
    display: grid;
    gap: 12px;
    gap: 6px;
}

.route-mini-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
}

.route-mini-card__price strong {
    font-size: 24px;
    line-height: 1;
    color: var(--text);
}

.route-mini-card__button {
    width: 100%;
		width: auto;
    min-height: 44px;
}

.route-mini-card.is-hidden {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1250px) {
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .routes-section {
        padding: 20px 0;
    }

    .routes-box {
        padding: 26px;
        border-radius: 28px;
    }

    .routes-box__top {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .routes-box__filters {
        justify-content: flex-start;
    }

    .routes-box__title {
        font-size: 34px;
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .routes-section {
        padding: 56px 0;
    }

    .routes-box {
        padding: 20px 16px;
        border-radius: 24px;
			border-radius: 33px;
    }

    .routes-box__title {
        font-size: 28px;
    }

    .routes-box__text {
        font-size: 15px;
    }

    .routes-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .route-mini-card {
        border-radius: 20px;
    }

    .route-mini-card__body {
        padding: 14px;
    }

    .route-mini-card__title {
        font-size: 17px;
        min-height: auto;
    }

    .route-mini-card__meta-row {
        grid-template-columns: 82px 1fr;
    }
}

/* =========================
   PROMO DARK SECTION
========================= */
.promo-dark {
    padding: 96px 0;
}

.promo-dark__wrap {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 40px;
    background:
            radial-gradient(circle at top left, rgba(26, 115, 232, 0.22), transparent 24%),
            radial-gradient(circle at right center, rgba(64, 196, 255, 0.12), transparent 22%),
            linear-gradient(135deg, #08111d 0%, #0d1726 35%, #13233a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
            0 30px 80px rgba(4, 10, 20, 0.32),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.promo-dark__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.promo-dark__glow--one {
    top: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    background: rgba(26, 115, 232, 0.22);
}

.promo-dark__glow--two {
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    background: rgba(91, 210, 255, 0.16);
}

.promo-dark__top,
.promo-dark__bottom {
    position: relative;
    z-index: 2;
}

.promo-dark__top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    margin-bottom: 28px;
}

.promo-dark__label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7cc7ff;
}

.promo-dark__title {
    margin: 0 0 16px;
    max-width: 760px;
    font-size: 48px;
	font-size: 38px;
    line-height: 1.04;
    font-weight: 800;
    color: #ffffff;
}

.promo-dark__title span {
    display: block;
    margin-top: 8px;
    color: #8fd6ff;
}

.promo-dark__text {
    margin: 0 0 22px;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

.promo-dark__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.promo-dark__badge {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

/* promo cards */
.promo-dark__cards {
    display: grid;
    gap: 14px;
    align-content: start;
}

.promo-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.promo-card--accent {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.18), rgba(143, 214, 255, 0.1));
    border-color: rgba(143, 214, 255, 0.24);
}

.promo-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #d9f2ff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-card__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
}

.promo-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* form box */
.promo-form-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    padding: 26px;
    border-radius: 30px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.promo-form-box__label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7cc7ff;
}

.promo-form-box__title {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
}

.promo-form-box__title span {
    display: block;
    margin-top: 6px;
    color: #8fd6ff;
}

.promo-form-box__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.promo-form-box__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.promo-form-box__list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

.promo-form-box__list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ab2ff, #8fd6ff);
    box-shadow: 0 0 0 6px rgba(74, 178, 255, 0.12);
}

/* form */
.promo-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.promo-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-form__field--full {
    grid-column: 1 / -1;
}

.promo-form__caption {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.promo-form__input,
.promo-form__textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 16, 28, 0.46);
    color: #ffffff;
    border-radius: 18px;
    outline: none;
    transition: 0.25s ease;
}

.promo-form__input {
    min-height: 56px;
    padding: 0 16px;
}

.promo-form__textarea {
    min-height: 120px;
    padding: 16px;
    resize: vertical;
}

.promo-form__input::placeholder,
.promo-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.promo-form__input:focus,
.promo-form__textarea:focus {
    border-color: rgba(143, 214, 255, 0.34);
    box-shadow: 0 0 0 4px rgba(74, 178, 255, 0.08);
}

.promo-form__bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.promo-form__button {
    width: 100%;
    min-height: 56px;
}

.promo-form__policy {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

/* responsive */
@media (max-width: 1100px) {
    .promo-dark {
        padding: 72px 0;
    }

    .promo-dark__wrap {
        padding: 28px;
        border-radius: 30px;
    }

    .promo-dark__top,
    .promo-form-box {
        grid-template-columns: 1fr;
    }

    .promo-dark__title {
        font-size: 38px;
    }

    .promo-form-box__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .promo-dark {
        padding: 56px 0;
    }

    .promo-dark__wrap {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .promo-dark__title {
        font-size: 30px;
    }

    .promo-dark__text {
        font-size: 15px;
    }

    .promo-form-box {
        padding: 18px;
        border-radius: 22px;
    }

    .promo-form-box__title {
        font-size: 24px;
    }

    .promo-form__grid {
        grid-template-columns: 1fr;
    }

    .promo-form__field--full {
        grid-column: auto;
    }
}

/* =========================
   ROUTE MAP SECTION
========================= */
.route-map-section {
    padding: 0 0;
}

.route-map-box {
    padding: 38px;
    border-radius: 36px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.98) 100%);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 30px 80px rgba(16, 32, 51, 0.08);
}

.route-map-box__head {
    max-width: 780px;
    margin-bottom: 28px;
}

.route-map-box__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.route-map-box__title {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text);
}

.route-map-box__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.route-map-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
}

/* left cards */
.route-map-points {
    display: grid;
    gap: 12px;
}

.route-point-card {
    width: 100%;
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 14px 32px rgba(16, 32, 51, 0.05);
    transition: 0.25s ease;
}

.route-point-card:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 115, 232, 0.18);
}

.route-point-card.is-active {
    background: linear-gradient(180deg, rgba(26, 115, 232, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: rgba(26, 115, 232, 0.18);
    box-shadow: 0 18px 36px rgba(26, 115, 232, 0.1);
}

.route-point-card__number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fc;
    color: var(--accent);
    font-size: 16px;
    font-weight: 800;
}

.route-point-card.is-active .route-point-card__number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.route-point-card__title {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text);
}

.route-point-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

/* visual map */
.route-map-visual {
    min-width: 0;
}

.route-map-canvas {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    border-radius: 30px;
    background:
            linear-gradient(180deg, rgba(215, 233, 252, 0.5) 0%, rgba(240, 246, 255, 0.9) 100%);
    border: 1px solid rgba(16, 32, 51, 0.08);
}

.route-map-canvas__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-map-canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.2)),
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.18));
    pointer-events: none;
}

.route-map-canvas__line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.route-map-canvas__line path {
    fill: none;
    stroke: rgba(26, 115, 232, 0.95);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 8 12;
    filter: drop-shadow(0 8px 18px rgba(26, 115, 232, 0.25));
}

/* markers */
.route-marker {
    position: absolute;
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid rgba(26, 115, 232, 0.22);
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.14);
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

.route-marker::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(26, 115, 232, 0.16);
}

.route-marker span {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}

.route-marker:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.route-marker.is-active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
}

.route-marker.is-active span {
    color: #fff;
}

/* tooltip */
.route-map-tooltip {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 4;
    width: min(100% - 56px, 360px);
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 20px 50px rgba(16, 32, 51, 0.12);
}

.route-map-tooltip__label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.route-map-tooltip__title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text);
}

.route-map-tooltip__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

/* responsive */
@media (max-width: 1100px) {
    .route-map-section {
        padding: 20px 0;
    }

    .route-map-box {
        padding: 26px;
        border-radius: 28px;
    }

    .route-map-layout {
        grid-template-columns: 1fr;
    }

    .route-map-box__title {
        font-size: 34px;
    }

    .route-map-canvas {
        min-height: 560px;
    }
}

@media (max-width: 767px) {
    .route-map-section {
        padding: 20px 0;
    }

    .route-map-box {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .route-map-box__title {
        font-size: 28px;
    }

    .route-map-box__text {
        font-size: 15px;
    }

    .route-point-card {
        grid-template-columns: 44px 1fr;
        padding: 14px;
        border-radius: 18px;
    }

    .route-point-card__number {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 14px;
    }

    .route-point-card__title {
        font-size: 16px;
    }

    .route-point-card__text {
        font-size: 13px;
    }

    .route-map-canvas {
        min-height: 420px;
        border-radius: 22px;
    }

    .route-marker {
        width: 44px;
        height: 44px;
    }

    .route-marker span {
        font-size: 14px;
    }

    .route-map-tooltip {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 16px;
        border-radius: 18px;
    }

    .route-map-tooltip__title {
        font-size: 18px;
    }

    .route-map-tooltip__text {
        font-size: 13px;
    }
}
/* =========================
   NEWS SECTION
========================= */

.news-section {
    padding: 96px 0;
}

.news-box {
    padding: 36px;
    border-radius: 36px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,250,255,0.96) 100%);
    border: 1px solid rgba(16,32,51,0.08);
    box-shadow: 0 30px 80px rgba(16,32,51,0.08);
}

.news-box__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 28px;
}

.news-box__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
}

.news-box__title {
    margin: 0 0 10px;
    font-size: 42px;
	font-size: 38px;
    line-height: 1.08;
    font-weight: 800;
}

.news-box__text {
    margin: 0;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

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

/* card */

.news-card {
    display: flex;
    flex-direction: column;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(16,32,51,0.08);
    box-shadow: 0 14px 34px rgba(16,32,51,0.06);
    transition: .25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(16,32,51,0.12);
}

.news-card__image-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-card__meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
}

.news-card__date {
    color: var(--muted);
}

.news-card__tag {
    padding: 4px 8px;
    border-radius: 8px;
    background: #eef4ff;
    color: var(--primary);
}

.news-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.news-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.news-card__link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.news-card__link:hover {
    text-decoration: underline;
}

/* responsive */

@media (max-width:1100px){

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .news-box__title{
        font-size:34px;
    }

}

@media (max-width:767px){

    .news-section{
        padding:56px 0;
    }

    .news-box{
        padding:20px 16px;
        border-radius:24px;
    }

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

    .news-box__title{
        font-size:28px;
    }

}

/* =========================
   LOCATION SECTION
========================= */

.location-section{
    padding:0;
}

.location-box{
    padding:36px;
    border-radius:36px;
    background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
    border:1px solid rgba(16,32,51,0.08);
    box-shadow:0 30px 80px rgba(16,32,51,0.08);
}

.location-box__head{
    max-width:720px;
    margin-bottom:28px;
}

.location-box__label{
    margin:0 0 8px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--primary);
}

.location-box__title{
    margin:0 0 12px;
    font-size:42px;
	font-size: 38px;
    font-weight:800;
    line-height:1.1;
}

.location-box__text{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:var(--muted);
}

.location-layout{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:24px;
}

/* карта */

.location-map{
    position:relative;
    height:520px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(16,32,51,0.08);
}

.location-map iframe{
    width:100%;
    height:100%;
}

.location-map__card{
    position:absolute;
    left:24px;
    bottom:24px;
    width:320px;
    padding:20px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 20px 40px rgba(16,32,51,0.18);
}

.location-map__title{
    margin:0 0 10px;
    font-size:20px;
    font-weight:800;
}

.location-map__address{
    margin:0 0 10px;
    font-size:14px;
    color:var(--text);
}

.location-map__transport{
    margin:0 0 12px;
    font-size:14px;
    color:var(--muted);
}

.location-map__routes{
    display:flex;
    gap:10px;
    margin-bottom:14px;
}

.location-map__route{
    background:#eef4ff;
    padding:6px 10px;
    border-radius:8px;
    font-size:12px;
}

.location-map__button{
    width:100%;
}

/* шаги */

.location-steps{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.location-steps__title{
    margin:0 0 10px;
    font-size:24px;
    font-weight:800;
}

.location-step{
    display:flex;
    gap:14px;
    padding:16px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(16,32,51,0.08);
}

.location-step__icon{
    width:40px;
    height:40px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--accent));
}

.location-step__heading{
    margin:0 0 6px;
    font-size:16px;
    font-weight:800;
}

.location-step__text{
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:var(--muted);
}

.location-step__link{
    display:inline-block;
    margin-top:6px;
    font-size:14px;
    color:var(--primary);
    font-weight:700;
	cursor: pointer;
}

/* mobile */

@media(max-width:1100px){

    .location-layout{
        grid-template-columns:1fr;
    }

    .location-map{
        height:420px;
    }

}

@media(max-width:767px){

    .location-section{
        padding:56px 0;
    }

    .location-box{
        padding:20px 16px;
        border-radius:24px;
    }

    .location-box__title{
        font-size:28px;
    }

    .location-map__card{
        position:static;
        margin:12px;
        width:auto;
    }

}

/* =========================
   FAQ SECTION
========================= */
.faq-section {
    padding: 0;
}

.faq-box {
    padding: 36px;
    border-radius: 36px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.96) 100%);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 30px 80px rgba(16, 32, 51, 0.08);
}

.faq-box__head {
    max-width: 760px;
    margin-bottom: 28px;
}

.faq-box__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.faq-box__title {
    margin: 0 0 12px;
    font-size: 42px;
	font-size: 38px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text);
}

.faq-box__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

/* faq list */
.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.05);
    overflow: hidden;
    transition: 0.25s ease;
}

.faq-item.is-open {
    border-color: rgba(26, 115, 232, 0.18);
    box-shadow: 0 18px 36px rgba(26, 115, 232, 0.08);
}

.faq-item__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px;
    text-align: left;
}

.faq-item__question {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--text);
}

.faq-item__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.faq-item__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.28s ease;
}

.faq-item.is-open .faq-item__content {
    grid-template-rows: 1fr;
}

.faq-item__content div {
    overflow: hidden;
    margin: 0;
    padding: 0 22px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}

/* side */
.faq-side__card {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(13, 59, 102, 1) 0%, rgba(26, 115, 232, 1) 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(16, 32, 51, 0.16);
    position: sticky;
    top: 110px;
}

.faq-side__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.faq-side__title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
}

.faq-side__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.faq-side__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.faq-side__contact {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.faq-side__contact--muted {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
}

.faq-side__actions {
    display: grid;
    gap: 10px;
}

.faq-side__actions .btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

/* responsive */
@media (max-width: 1100px) {
    .faq-section {
        padding: 0;
    }

    .faq-box {
        padding: 26px;
        border-radius: 28px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-box__title {
        font-size: 34px;
    }

    .faq-side__card {
        position: static;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-box {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .faq-box__title {
        font-size: 28px;
    }

    .faq-box__text {
        font-size: 15px;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-item__button {
        padding: 18px 16px;
    }

    .faq-item__question {
        font-size: 16px;
    }

    .faq-item__content p {
        padding: 0 16px 18px;
        font-size: 14px;
    }

    .faq-side__card {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .faq-side__title {
        font-size: 24px;
    }
}

/* =========================
   FOOTER
========================= */
.footer {
    padding: 0 0 28px;
}

.footer__wrap {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 36px;
    background:
            radial-gradient(circle at top right, rgba(26, 115, 232, 0.12), transparent 24%),
            linear-gradient(135deg, #08111d 0%, #0d1726 38%, #13233a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
            0 30px 80px rgba(4, 10, 20, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 460px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer__logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #8fd6ff);
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(26, 115, 232, 0.24);
}

.footer__logo-content {
    display: flex;
    flex-direction: column;
}

.footer__logo-title {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
}

.footer__logo-subtitle {
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.62);
}

.footer__brand-text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

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

.footer__social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: 0.25s ease;
}

.footer__social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.footer__social--max {
    font-size: 18px;
    font-weight: 800;
}

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

.footer__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer__link,
.footer__contact {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    transition: 0.25s ease;
}

.footer__link:hover,
.footer__contact:hover {
    color: #ffffff;
}

.footer__contact--phone {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
		display: inline-flex;
}

.footer__contact--text {
    color: rgba(255, 255, 255, 0.62);
}

.footer__middle {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 28px;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(143, 214, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.footer__cta-label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8fd6ff;
}

.footer__cta-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.footer__cta-button {
    min-width: 220px;
}

.footer__bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copy {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer__bottom-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.56);
    transition: 0.25s ease;
}

.footer__bottom-link:hover {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .footer__wrap {
        padding: 28px;
        border-radius: 28px;
    }

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

    .footer__nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__cta-button {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer {
        padding-bottom: 20px;
    }

    .footer__wrap {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .footer__nav {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer__cta {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .footer__cta-title {
        font-size: 22px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 450px) {
	.header__right .btn{
		display: none;
	}
}
/* cookies */

.cookie-overlay {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 15px;
    box-sizing: border-box;
}

.cookie-modal {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-learn-more {
    color: #2171cf;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    padding: 10px;
    margin-bottom: 10px;
}

.cookie-accept {
    background-color: #1b72ac;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}
@media (max-width: 767px) {
    .article-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px !important;
    }
    .article-tour-card img {
        width: 100%;
    }
    .article-tour-card,
    .article-banner {
        flex-direction: column;
        gap: 10px;
    }
    .header__right .btn {
        display: none;
    }
}
@media (max-width: 374px) {
    .header__logo {
        gap: 0px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }
}
.not-found {
    padding: 30px 0 70px;
}
.not-found__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.not-found img {
    max-width: 880px;
    width: 100%;
    margin: 0;
    display: block;
}
.not-found h1 {
    margin-bottom: 12px;
    margin-top: 0;
    font-weight: 800;
    font-size: 42px;
    line-height: 108%;
    text-align: center;
    color: #102033;
}
.not-found p {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 17px;
    line-height: 165%;
    text-align: center;
    color: #6d7b8d;
    max-width: 530px;
}

.main:has(.not-found) {
    min-height: auto;
}

.about-form__checkbox,
.rent-form__checkbox,
.promo-form__checkbox,
.quiz__checkbox {
    margin-top: 14px;
    display: block;
}
.about-form__checkbox input,
.rent-form__checkbox input,
.promo-form__checkbox input,
.quiz__checkbox input {
    display: none;
}
.about-form__checkbox input:checked + span::before,
.rent-form__checkbox input:checked + span::before,
.promo-form__checkbox input:checked + span::before,
.quiz__checkbox input:checked + span::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3346 4L6.0013 11.3333L2.66797 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}
.about-form__checkbox.active span,
.rent-form__checkbox.active span,
.promo-form__checkbox.active span,
.quiz__checkbox.active span {
    color: red;
}
.about-form__checkbox.active span::before,
.rent-form__checkbox.active span::before,
.promo-form__checkbox.active span::before,
.quiz__checkbox.active span::before {
    background-color: red;
}
.about-form__checkbox span,
.rent-form__checkbox span,
.promo-form__checkbox span,
.quiz__checkbox span {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #6d7b8d;
    display: block;
    padding-left: 36px;
    position: relative;
    max-width: 626px;
}
.about-form__checkbox span::before,
.rent-form__checkbox span::before,
.promo-form__checkbox span::before,
.quiz__checkbox span::before {
    cursor: pointer;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: #1a73e8;
    border-radius: 36px;
    width: 22px;
    height: 22px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.about-form__checkbox span a,
.rent-form__checkbox span a,
.promo-form__checkbox span a,
.quiz__checkbox span a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: #1a73e8;
}

.promo-form__checkbox span {
    color: #88909c;
}
.promo-form__checkbox span a {
    color: #8fd6ff;
}

.quiz__footer .btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

@media (max-width: 769px) {
    .not-found {
        padding-bottom: 50px;
    }
    .not-found p {
        margin-bottom: 7px;
        line-height: 152%;
        font-size: 12px;
        max-width: 377px;
    }
    .not-found h1 {
        margin-bottom: 8px;
        font-size: 27px;
    }
}
