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

:root {
    --blue: #1e4493;
    --blue-dark: #152f6b;
    --blue-light: #2a5bc7;
    --blue-bg: #f0f4fc;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
    --green: #2e7d32;
    --orange: #e65100;
    --red: #c62828;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: .3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--blue-light);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.section-title:has(+.section-desc) {
    margin-bottom: 16px;
}

.section-title--center {
    text-align: center;
}

.section-desc {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--blue);
    border: 2px solid var(--blue);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--white {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.btn--white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn--outline:hover {
    background: var(--white);
    color: var(--blue);
}

.btn--sm {
    padding: 8px 20px;
    font-size: .85rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
}

.header--scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header--scrolled .header__logo-sky,
.header--scrolled .header__logo-extreme {
    color: var(--blue);
}

.header--scrolled .header__nav-link {
    color: var(--gray-800);
}

.header--scrolled .header__nav-link:hover,
.header--scrolled .header__phone:hover {
    color: var(--blue);
}

.header--scrolled .header__phone {
    color: var(--gray-800);
}

.header--scrolled .header__burger span,
.header__burger.burger--open span {
    background: var(--gray-800);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 72px;
}

.header__logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.header__logo img {
    width: 50px;
}

.header__logo-sky {
    color: var(--white);
    transition: color var(--transition);
}

.header__logo-extreme {
    color: var(--white);
    opacity: .8;
    transition: color var(--transition);
    margin-left: .5rem;
}

.header__nav {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.header__nav-link {
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
    text-transform: uppercase;
}

.header__nav-link:hover,
.header__phone:hover {
    color: var(--white);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header__phone {
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    transition: color var(--transition);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.mobile-menu__phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(30,68,147,.75) 0%, rgba(21,47,107,.6) 50%, rgba(0,0,0,.4) 100%); */
    background: linear-gradient(135deg, rgba(30, 68, 147, .45) 0%, rgba(21, 47, 107, .35) 50%, rgba(0, 0, 0, .15) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 720px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.hero__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__badge-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero__badge-label {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: .6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== TRUST BAR ===== */
.trust {
    background: var(--blue);
    padding: 24px 0;
}

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

.trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.trust__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    stroke: var(--white);
}

.trust__item strong {
    display: block;
    font-size: .9rem;
}

.trust__item span {
    font-size: .78rem;
    opacity: .8;
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about__text p {
    margin-bottom: 16px;
    color: var(--gray-800);
}

.about__image img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    height: 400px;
    box-shadow: var(--shadow-lg);
}

/* ===== ROUTES ===== */
.routes {
    padding: 80px 0;
    background: var(--gray-50);
}

.route-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.route-card--reverse .route-card__image {
    order: 2;
}

.route-card__image {
    position: relative;
    min-height: 400px;
}

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

.route-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--blue);
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 1;
}

.route-card__badge--medium {
    background: var(--orange);
}

.route-card__badge--hard {
    background: var(--red);
}

.route-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.route-card__title {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.route-card__location {
    color: var(--gray-600);
    font-size: .9rem;
    margin-bottom: 16px;
}

.route-card__desc {
    color: var(--gray-800);
    margin-bottom: 20px;
    line-height: 1.7;
}

.route-card__routes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.route-card__subroute {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: .9rem;
}

.route-card__subroute span:last-child {
    color: var(--gray-600);
    margin-left: auto;
    font-size: .85rem;
}

.route-card__difficulty {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.route-card__difficulty--easy {
    background: #e8f5e9;
    color: var(--green);
}

.route-card__difficulty--medium {
    background: #fff3e0;
    color: var(--orange);
}

.route-card__difficulty--hard {
    background: #ffebee;
    color: var(--red);
}

.route-card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.route-card__spec {
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    text-align: center;
}

.route-card__spec-label {
    display: block;
    font-size: .75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.route-card__spec-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.route-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.route-card__price {
    font-size: 1rem;
    color: var(--gray-600);
}

.route-card__price strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--gray-900);
}

/* ===== PRICING ===== */
.pricing {
    padding: 80px 0;
}

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

.pricing__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing__card--featured {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing__card--featured::before {
    content: '⭐️ Популярный';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 6px;
    font-size: .8rem;
    font-weight: 600;
}

.pricing__card--featured {
    padding-top: 56px;
}

.pricing__card-header {
    margin-bottom: 24px;
}

.pricing__card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.pricing__card-header p {
    font-size: .85rem;
    color: var(--gray-600);
}

.pricing__card-body {
    flex: 1;
    margin-bottom: 24px;
}

.pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing__row:last-child {
    border-bottom: none;
}

.pricing__row--accent {
    background: var(--blue-bg);
    margin: 0 -32px;
    padding: 14px 32px;
}

.pricing__label {
    color: var(--gray-800);
}

.pricing__value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 1.05rem;
}

.pricing__note {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-600);
    font-size: .85rem;
}

/* ===== INCLUDED ===== */
.included {
    padding: 80px 0;
    background: var(--blue-bg);
}

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

.included__item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.included__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--blue);
}

.included__icon svg {
    width: 100%;
    height: 100%;
}

.included__item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.included__item p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 80px 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 16px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

/* Gallery play button */
.gallery__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.25);
    transition: background var(--transition);
}

.gallery__item:hover .gallery__play {
    background: rgba(0,0,0,.1);
}

.gallery__play svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .92);
}

.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.lightbox__video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 4px;
    outline: none;
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: .7;
    transition: opacity .2s;
    padding: 8px;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
    transition: opacity .2s, background .2s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
    background: rgba(255,255,255,.2);
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__prev svg,
.lightbox__next svg {
    width: 24px;
    height: 24px;
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
    }

    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }

    .lightbox__close {
        top: 10px;
        right: 12px;
    }

    .gallery__play svg {
        width: 44px;
        height: 44px;
    }
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 80px 0;
    background: var(--blue-bg);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-card__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-200);
}

.review-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__meta {
    flex: 1;
    min-width: 0;
}

.review-card__name {
    display: block;
    font-size: .95rem;
    color: var(--gray-900);
    line-height: 1.3;
}

.review-card__date {
    font-size: .8rem;
    color: var(--gray-600);
}

.review-card__platform {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: .72rem;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.review-card__platform:hover {
    opacity: .8;
}

.review-card__platform svg {
    width: 16px;
    height: 16px;
}

.review-card__platform--vk {
    background: #e7eaf5;
    color: #4a76a8;
}

.review-card__platform--yandex {
    background: #fff3e0;
    color: #fc3f1d;
}

.review-card__platform--tg {
    background: #e3f2fd;
    color: #0088cc;
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card__stars svg {
    width: 18px;
    height: 18px;
    color: #f9a825;
}

.review-card__text {
    flex: 1;
    font-size: .9rem;
    line-height: 1.65;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.review-card__route {
    font-size: .8rem;
    color: var(--blue);
    font-weight: 500;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

/* ===== TEAM ===== */
.team {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.team__card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.team__photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-200);
}

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

.team__name {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.team__role {
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 4px;
}

.team__exp {
    color: var(--gray-600);
    font-size: .9rem;
}

/* ===== CHECKLIST ===== */
.checklist {
    padding: 80px 0;
}

.checklist__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.checklist__list {
    list-style: none;
}

.checklist__list li {
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
}

.checklist__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    background: var(--blue);
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.checklist__image img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    height: 400px;
    box-shadow: var(--shadow-lg);
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
}

.faq__question:hover {
    color: var(--blue);
}

.faq__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq__item--open .faq__arrow {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}

.faq__item--open .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 24px 20px;
    color: var(--gray-800);
    line-height: 1.7;
}

.faq__answer p + p {
    padding-top: 8px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact__person {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--blue-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--blue);
}

.contact__person-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact__person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__person-text p {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--gray-800);
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.contact__channel:hover {
    background: var(--blue-bg);
}

.contact__channel svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--blue);
}

.contact__channel strong {
    display: block;
    color: var(--gray-900);
}

.contact__channel span {
    font-size: .85rem;
    color: var(--gray-600);
}

.contact__form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: .9rem;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-400);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,68,147,.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form-note {
    margin-top: 12px;
    font-size: .8rem;
    color: var(--gray-600);
    text-align: center;
}

/* ===== MAP ===== */
.map iframe {
    display: block;
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding-top: 48px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer__brand p {
    margin-top: 12px;
    font-size: .9rem;
    line-height: 1.6;
}

.footer__brand .header__logo-sky,
.footer__brand .header__logo-extreme {
    color: var(--white);
}

.footer__links h4,
.footer__contacts h4 {
    color: var(--white);
    font-size: .95rem;
    margin-bottom: 16px;
}

.footer__links a,
.footer__contacts a {
    display: block;
    color: var(--gray-400);
    font-size: .9rem;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer__links a:hover,
.footer__contacts a:hover {
    color: var(--white);
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    color: var(--white);
    transition: background var(--transition);
}

.footer__social a:hover {
    background: var(--blue);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    text-align: center;
    font-size: .85rem;
}

/* ===== BALLOON NOTIFICATIONS ===== */
.balloon {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: .95rem;
    line-height: 1.4;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    transform: translateX(calc(100% + 32px));
    opacity: 0;
    transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
    pointer-events: auto;
}

.balloon--visible {
    transform: translateX(0);
    opacity: 1;
}

.balloon--success {
    background: var(--green);
}

.balloon--error {
    background: var(--red);
}

.balloon__text {
    flex: 1;
}

.balloon__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
    padding: 0 0 0 8px;
    line-height: 1;
    flex-shrink: 0;
}

.balloon__close:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .balloon {
        right: 12px;
        left: 12px;
        max-width: none;
        top: 12px;
    }
}

/* ===== FLOATING BUTTON ===== */
.floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #0088cc;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0 4px 20px rgba(0,136,204,.4);
    transition: all var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    background: #006daa;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,136,204,.5);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .header__burger {
        display: flex;
    }

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

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

    .route-card--reverse .route-card__image {
        order: 0;
    }

    .route-card__image {
        min-height: 280px;
    }

    .pricing__tables {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__badges {
        gap: 20px;
    }

    .hero__badge-value {
        font-size: 1.5rem;
    }

    .about__grid,
    .checklist__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .about__image img,
    .checklist__image img {
        height: 280px;
    }

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

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .review-card__platform span {
        display: none;
    }

    .gallery__item--tall img {
        min-height: 250px;
    }

    .team__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .trust__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .included__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn {
        padding: 16px;
        border-radius: 50%;
    }

    .floating-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .route-card__body {
        padding: 20px;
    }

    .route-card__subroute {
        flex-wrap: wrap;
        gap: 6px;
    }

    .route-card__subroute span:last-child {
        margin-left: 0;
        width: 100%;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
    }
}
