@font-face {
    font-family: "Airfleet Clear";
    src: url("../fonts/ClearSansRegular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Airfleet Clear";
    src: url("../fonts/ClearSansBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --air-navy: #031d30;
    --air-blue: #6ab8ee;
    --air-blue-bright: #3bc8f5;
    --air-ink: #12222d;
    --air-muted: #61717d;
    --air-line: #dbe6ed;
    --air-soft: #f2f7fa;
    --air-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #e8eef2;
    color: var(--air-ink);
    font-family: "Airfleet Clear", Arial, sans-serif;
    overflow-x: hidden;
}

body * {
    box-sizing: border-box;
}

.air-site {
    width: min(100%, 1440px);
    margin: 0 auto;
    overflow: hidden;
    background: var(--air-white);
    box-shadow: 0 0 32px rgba(3, 29, 48, 0.18);
}

.air-site a {
    color: inherit;
}

.air-container {
    width: min(100% - 64px, 1180px);
    margin: 0 auto;
}

.fleet-header {
    position: relative;
    z-index: 30;
    background: var(--air-white);
}

.fleet-header__top {
    min-height: 92px;
    padding: 20px 42px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.fleet-header__name {
    color: var(--air-navy) !important;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    white-space: nowrap;
}
.fleet-header__region {
    position: relative;
    color: var(--air-blue) !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    border-bottom: 1px dashed currentColor;
}

.fleet-header__region::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--air-blue);
    box-shadow: 0 0 0 5px rgba(106, 184, 238, 0.18);
}

.fleet-header__email {
    margin-left: auto;
    color: var(--air-ink) !important;
    font-size: 15px;
    text-decoration: none !important;
}

.fleet-header__email:hover {
    color: var(--air-blue) !important;
}

.fleet-header__messengers {
    display: flex;
    gap: 8px;
}

.fleet-header__messengers a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 7px 13px;
    border: 1px solid var(--air-line);
    border-radius: 999px;
    color: var(--air-ink) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.2s ease;
}

.fleet-header__messengers a:hover {
    border-color: var(--air-blue);
    color: var(--air-blue) !important;
}

.fleet-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 4vw, 56px);
    min-height: 68px;
    padding: 14px 32px;
    background: var(--air-navy);
}

.fleet-nav a {
    position: relative;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    white-space: nowrap;
}

.fleet-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--air-blue);
    transition: right 0.2s ease;
}

.fleet-nav a:hover {
    color: var(--air-white) !important;
}

.fleet-nav a:hover::after {
    right: 0;
}

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--air-navy);
}

.main-carousel,
.main-carousel .slick-list,
.main-carousel .slick-track,
.main-carousel__item {
    height: 560px;
}

.main-carousel__item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-carousel__item:first-child {
    display: block;
}

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(3, 29, 48, 0.9) 0%, rgba(3, 29, 48, 0.62) 46%, rgba(3, 29, 48, 0.12) 100%);
    pointer-events: none;
}

.hero__content {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: max(44px, calc((100% - 1180px) / 2));
    width: min(660px, calc(100% - 88px));
    transform: translateY(-50%);
    color: var(--air-white);
}

.hero__eyebrow {
    margin: 0 0 14px;
    color: var(--air-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
    width: 765px;
}

.hero__region {
    display: inline-block;
    margin-top: 16px;
    color: var(--air-blue) !important;
    font-size: clamp(23px, 2.3vw, 34px);
    font-weight: 700;
    text-decoration: underline !important;
    text-underline-offset: 6px;
}

.hero__tagline {
    margin: 20px 0 24px;
    font-size: 22px;
}

.hero__cta,
.air-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px solid var(--air-blue);
    border-radius: 3px;
    background: var(--air-blue);
    color: var(--air-navy) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero__cta:hover,
.air-button:hover {
    transform: translateY(-2px);
    background: var(--air-blue-bright);
    color: var(--air-navy) !important;
}

.hero .slick-prev,
.hero .slick-next {
    z-index: 8;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(3, 29, 48, 0.45);
}

.hero .slick-prev {
    left: 22px;
}

.hero .slick-next {
    right: 22px;
}

.hero .slick-prev::before,
.hero .slick-next::before {
    color: var(--air-white);
}

.aircraft-section {
    padding: 110px 0 96px;
    scroll-margin-top: 78px;
    background: var(--air-white);
}

.aircraft-section--soft {
    background: var(--air-soft);
}

.aircraft-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
    gap: 80px;
    align-items: end;
}

.section-kicker,
.cabin-label {
    display: block;
    margin-bottom: 12px;
    color: var(--air-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.aircraft-intro h2,
.contacts-section h2,
.helicopter-cta h2 {
    margin: 0;
    color: var(--air-navy);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.aircraft-intro p {
    margin: 0;
    color: var(--air-muted);
    font-size: 19px;
    line-height: 1.65;
}

.aircraft-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 52px 0 0;
    padding: 0;
    list-style: none;
    border: 1px solid var(--air-line);
    background: var(--air-line);
}

.aircraft-facts li {
    min-height: 122px;
    padding: 25px 28px;
    background: var(--air-white);
}

.aircraft-section--soft .aircraft-facts li {
    background: #fafdff;
}

.aircraft-facts strong,
.aircraft-facts span {
    display: block;
}

.aircraft-facts strong {
    color: var(--air-navy);
    font-size: 24px;
    line-height: 1.15;
}

.aircraft-facts span {
    margin-top: 8px;
    color: var(--air-muted);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ssj-layout-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 24px;
    padding: 24px 28px;
    border: 1px solid rgba(106, 184, 238, 0.42);
    border-radius: 6px;
    background: linear-gradient(135deg, #f7fbfe 0%, #eaf6fd 100%);
}

.ssj-layout-card__copy {
    display: grid;
    gap: 7px;
}

.ssj-layout-card__copy strong {
    color: var(--air-navy);
    font-size: 20px;
    line-height: 1.35;
}

.ssj-layout-card__copy p {
    margin: 0;
    color: var(--air-muted);
    font-size: 15px;
    line-height: 1.55;
}

.ssj-layout-card__button {
    flex: 0 0 auto;
    margin-left: auto;
    white-space: nowrap;
}

.aircraft-tabs {
    margin-top: 56px;
}

.cabin-tabs {
    display: inline-flex;
    padding: 5px;
    border: 1px solid var(--air-line);
    border-radius: 999px;
    background: var(--air-white);
}

.cabin-tab {
    min-width: 190px;
    min-height: 44px;
    padding: 9px 20px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--air-muted);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.cabin-tab:hover,
.cabin-tab:focus-visible {
    color: var(--air-navy);
    outline: none;
}

.cabin-tab.is-active {
    background: var(--air-navy);
    color: var(--air-white);
}

.cabin-panel {
    margin-top: 30px;
}

.cabin-panel[hidden] {
    display: none !important;
}

.cabin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--air-line);
    background: var(--air-white);
    box-shadow: 0 22px 70px rgba(3, 29, 48, 0.09);
}

.air-gallery {
    position: relative;
    min-width: 0;
    padding: 18px;
    background: var(--air-navy);
}

.gallery-main {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border: 0;
}

.air-gallery--scheme .gallery-main {
    background: var(--air-white);
    object-fit: contain;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs button {
    height: 76px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    background: #0b304a;
    cursor: pointer;
    opacity: 0.66;
    transition: 0.2s ease;
}

.gallery-thumbs button:hover,
.gallery-thumbs button:focus-visible,
.gallery-thumbs button.is-active {
    border-color: var(--air-blue);
    opacity: 1;
    outline: none;
}

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

.photo-credit {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
}

.cabin-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 46px;
}

.cabin-copy h3 {
    margin: 0 0 18px;
    color: var(--air-navy);
    font-size: clamp(27px, 2.6vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.cabin-copy p {
    margin: 0;
    color: var(--air-muted);
    font-size: 16px;
    line-height: 1.65;
}

.cabin-copy ul {
    margin: 22px 0 30px;
    padding: 0;
    list-style: none;
}

.cabin-copy li {
    position: relative;
    margin: 10px 0;
    padding-left: 22px;
    color: var(--air-ink);
    font-size: 15px;
    line-height: 1.45;
}

.cabin-copy li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--air-blue);
}

.cabin-copy .air-button {
    align-self: flex-start;
    margin-top: auto;
}

.lead-strip {
    position: relative;
    padding: 42px 0;
    overflow: hidden;
    background: var(--air-navy);
}

.lead-strip::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -200px;
    width: 430px;
    height: 430px;
    border: 80px solid rgba(106, 184, 238, 0.08);
    border-radius: 50%;
}

.lead-strip--light {
    background: #0a2a40;
}

.air-lead-form {
    position: relative;
    z-index: 1;
    width: min(100% - 64px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr repeat(3, minmax(140px, 0.8fr)) minmax(160px, 0.8fr);
    gap: 14px;
    align-items: end;
}

.lead-strip__title span,
.lead-strip__title strong {
    display: block;
}

.lead-strip__title span {
    margin-bottom: 7px;
    color: var(--air-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lead-strip__title strong {
    color: var(--air-white);
    font-size: 23px;
    line-height: 1.15;
}

.air-lead-form label {
    display: block;
    margin: 0;
}

.air-lead-form label > span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 400;
}

.air-lead-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 3px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--air-white);
    font-family: inherit;
    font-size: 15px;
}

.air-lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.air-lead-form input:focus {
    border-color: var(--air-blue);
    background: rgba(255, 255, 255, 0.12);
}

.air-lead-form label.error {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    color: #ffb7b7;
    font-size: 11px;
}

.air-lead-form button {
    height: 50px;
    padding: 0 18px;
    border: 1px solid var(--air-blue);
    border-radius: 3px;
    background: var(--air-blue);
    color: var(--air-navy);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.air-lead-form button:hover {
    background: var(--air-blue-bright);
    transform: translateY(-2px);
}

.b-form button.b-btn_red,
.b-form .b-btn_red,
.air-lead-form button {
    border-color: var(--air-blue) !important;
    background: var(--air-blue) !important;
    color: var(--air-navy) !important;
}

.b-form button.b-btn_red:hover,
.b-form .b-btn_red:hover,
.air-lead-form button:hover {
    border-color: var(--air-blue-bright) !important;
    background: var(--air-blue-bright) !important;
    color: var(--air-navy) !important;
}

.helicopter-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    scroll-margin-top: 78px;
    background: var(--air-navy);
}

.helicopter-cta__image {
    min-height: 560px;
    background: linear-gradient(rgba(3, 29, 48, 0.08), rgba(3, 29, 48, 0.38)), url("../images/airfleet/helicopter-cta-new.webp") center / cover no-repeat;
}

.helicopter-cta__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px clamp(40px, 6vw, 90px);
    color: var(--air-white);
}

.helicopter-cta h2 {
    color: var(--air-white);
}

.helicopter-cta p {
    max-width: 560px;
    margin: 28px 0 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.65;
}

.air-button--light {
    align-self: flex-start;
    background: transparent;
    color: var(--air-white) !important;
}

.air-button--light span {
    margin-left: 12px;
}

.contacts-section {
    padding: 105px 0;
    scroll-margin-top: 78px;
    background: var(--air-white);
}

.contacts-section h2 {
    margin-bottom: 48px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    min-height: 480px;
    border: 1px solid var(--air-line);
}

.contacts-card {
    padding: 48px;
    background: var(--air-navy);
    color: var(--air-white);
}

.contacts-card > span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contacts-region {
    display: block;
    margin: 6px 0 28px;
    color: var(--air-blue) !important;
    font-size: 24px;
    font-weight: 700;
    text-decoration: underline !important;
    text-underline-offset: 5px;
}

.contacts-card p,
.contacts-address {
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.6;
}

.contacts-address p {
    margin: 0 0 18px;
}

.contacts-card > a:not(.air-button):not(.contacts-region),
.contacts-card p a {
    color: var(--air-white) !important;
    text-decoration: none !important;
}

.contacts-hotline {
    margin: 26px 0 30px;
}

.contacts-map {
    min-width: 0;
    min-height: 480px;
    overflow: hidden;
    background: var(--air-soft);
}

.contacts-map iframe,
.contacts-map > * {
    width: 100% !important;
    height: 100% !important;
    min-height: 480px;
    border: 0;
}

.fleet-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 42px;
    align-items: center;
    min-height: 160px;
    padding: 44px 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--air-navy);
    color: var(--air-white);
}

.fleet-footer strong,
.fleet-footer span {
    display: block;
}

.fleet-footer strong {
    font-size: 19px;
}

.fleet-footer span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.fleet-footer__links,
.fleet-footer__social {
    display: flex;
    gap: 20px;
}

.fleet-footer a {
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 13px;
    text-decoration: none !important;
}

.fleet-footer a:hover {
    color: var(--air-blue) !important;
}

.wa-fab {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--air-blue);
    box-shadow: 0 10px 28px rgba(3, 29, 48, 0.28);
}

.wa-icon {
    width: 26px;
    height: 26px;
}

@media (max-width: 1080px) {
    .fleet-header__top {
        padding: 18px 28px;
        flex-wrap: wrap;
    }

    .fleet-header__email {
        margin-left: auto;
    }

    .fleet-header__messengers {
        width: 100%;
        justify-content: flex-end;
    }

    .fleet-nav {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: thin;
    }

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

    .cabin-copy {
        padding: 44px;
    }

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

    .lead-strip__title {
        grid-column: 1 / -1;
    }

    .air-lead-form button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .air-container,
    .air-lead-form {
        width: min(100% - 36px, 1180px);
    }

    .fleet-header__top {
        min-height: auto;
        gap: 12px 18px;
    }

    .fleet-header__name {
        width: 100%;
    }

    .fleet-header__email {
        margin-left: 0;
    }

    .fleet-header__messengers {
        width: auto;
        margin-left: auto;
    }

    .fleet-header__messengers a {
        padding: 7px 10px;
        font-size: 12px;
    }

    .fleet-nav {
        min-height: 58px;
        gap: 28px;
        padding: 12px 20px;
    }

    .hero,
    .main-carousel,
    .main-carousel .slick-list,
    .main-carousel .slick-track,
    .main-carousel__item {
        height: 520px;
    }

    .hero__content {
        left: 28px;
        width: calc(100% - 56px);
    }

    .hero h1 {
        font-size: clamp(38px, 10vw, 62px);
    }

    .hero .slick-prev,
    .hero .slick-next {
        display: none !important;
    }

    .aircraft-section,
    .contacts-section {
        padding: 78px 0;
    }

    .aircraft-intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .aircraft-facts {
        grid-template-columns: 1fr;
    }

    .aircraft-facts li {
        min-height: auto;
    }

    .gallery-main {
        height: 430px;
    }

    .air-lead-form {
        grid-template-columns: 1fr;
    }

    .air-lead-form button,
    .lead-strip__title {
        grid-column: auto;
    }

    .helicopter-cta {
        grid-template-columns: 1fr;
    }

    .helicopter-cta__image {
        min-height: 360px;
    }

    .helicopter-cta__content {
        padding: 60px 34px 70px;
    }

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

    .contacts-map {
        min-height: 380px;
    }

    .contacts-map iframe,
    .contacts-map > * {
        min-height: 380px;
    }

    .fleet-footer {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 42px 28px;
    }
}

@media (max-width: 560px) {
    .fleet-header__top {
        padding: 16px 18px;
    }

    .fleet-header__region {
        font-size: 14px;
    }

    .fleet-header__email {
        width: 100%;
        font-size: 14px;
    }

    .fleet-header__messengers {
        width: 100%;
        margin: 4px 0 0;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .hero,
    .main-carousel,
    .main-carousel .slick-list,
    .main-carousel .slick-track,
    .main-carousel__item {
        height: 500px;
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(3, 29, 48, 0.92), rgba(3, 29, 48, 0.53));
    }

    .hero__content {
        left: 20px;
        width: calc(100% - 40px);
    }

    .hero__eyebrow {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 39px;
        line-height: 1.02;
    }

    .hero__region {
        font-size: 22px;
    }

    .hero__tagline {
        font-size: 17px;
    }

    .hero__cta,
    .air-button {
        width: 100%;
        text-align: center;
    }

    .aircraft-section,
    .contacts-section {
        padding: 62px 0;
    }

    .aircraft-intro h2,
    .contacts-section h2,
    .helicopter-cta h2 {
        font-size: 48px;
    }

    .aircraft-intro p {
        font-size: 16px;
    }

    .aircraft-facts {
        margin-top: 34px;
    }

    .aircraft-tabs {
        margin-top: 38px;
    }

    .ssj-layout-card {
        align-items: stretch;
        padding: 22px;
        flex-direction: column;
        gap: 20px;
    }

    .ssj-layout-card__copy strong {
        font-size: 18px;
    }

    .ssj-layout-card__button {
        width: 100%;
        margin-left: 0;
    }

    .cabin-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .cabin-tab {
        min-width: 0;
        padding: 9px 12px;
        font-size: 13px;
    }

    .cabin-grid {
        min-height: 0;
    }

    .air-gallery {
        padding: 10px;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-thumbs {
        gap: 6px;
    }

    .gallery-thumbs button {
        height: 58px;
    }

    .cabin-copy {
        padding: 34px 24px 38px;
    }

    .cabin-copy h3 {
        font-size: 28px;
    }

    .lead-strip {
        padding: 34px 0;
    }

    .helicopter-cta__image {
        min-height: 270px;
    }

    .helicopter-cta__content {
        padding: 50px 22px 56px;
    }

    .helicopter-cta p {
        font-size: 16px;
    }

    .contacts-card {
        padding: 34px 24px;
    }

    .fleet-footer__links,
    .fleet-footer__social {
        flex-wrap: wrap;
    }

    .wa-fab {
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .air-site *,
    .air-site *::before,
    .air-site *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* Вместимость SSJ-100 */
#ssj100 .ssj-seat-fact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

#ssj100 .ssj-seat-fact__line {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}

#ssj100 .ssj-seat-fact__line b {
    color: var(--air-navy);
    font-size: 22px;
    font-weight: 700;
}

#ssj100 .ssj-layout-view {
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--air-line);
    background: var(--air-white);
    box-shadow: 0 22px 70px rgba(3, 29, 48, 0.09);
}

#ssj100 .ssj-layout-view__link {
    display: block;
    cursor: zoom-in;
}

#ssj100 .ssj-layout-view img {
    display: block;
    width: 100%;
    height: auto;
}

#ssj100 .ssj-layout-view p {
    margin: 16px 0 0;
    color: var(--air-muted);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 720px) {
    #ssj100 .cabin-tabs {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: 24px;
    }

    #ssj100 .cabin-tab {
        width: 100%;
        min-width: 0;
    }

    #ssj100 .ssj-layout-view {
        padding: 10px;
    }
}
