*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --theme: #c77a63;
    --theme-dark: #a9614c;
    --theme-deep: #8d4e3c;
    --theme-soft: #f3e3dc;
    --theme-tint: #fbf1ec;
    --heading: #2b2d42;
    --heading-alt: #2c2a49;
    --body: #6e6e6e;
    --muted: #97979f9c;
    --faint: #bebec3;
    --white: #ffffff;
    --beige: #faf5f2;
    --beige-deep: #f3ece7;
    --dark: #222222;
    --footer: #252638;
    --footer-deep: #202130;
    --line: #e5e5e5;
    --line-soft: #efe8e3;
    --green: #4c9a6a;
    --amber: #b98014;
    --font-head: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1320px;
    --header-h: 110px;
    --t-fast: 0.25s ease;
    --t-med: 0.4s ease;
    --t-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --sh-sm: 0 4px 20px rgba(43, 45, 66, 0.06);
    --sh-md: 0 18px 50px rgba(43, 45, 66, 0.10);
    --sh-lg: 0 30px 80px rgba(43, 45, 66, 0.14);
    --sh-theme: 0 16px 40px rgba(199, 122, 99, 0.30)
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body.nav-open {
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--heading);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.01em
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem)
}

h2 {
    font-size: clamp(2rem, 4.4vw, 3rem)
}

h3 {
    font-size: clamp(1.6rem, 3vw, 2.5rem)
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.7rem)
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

a {
    color: inherit
}

img,
svg {
    max-width: 100%;
    display: block
}

::selection {
    background: var(--theme);
    color: var(--white)
}

:focus-visible {
    outline: 2px solid var(--theme);
    outline-offset: 3px
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--theme);
    color: var(--white);
    padding: 14px 24px;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none
}

.skip-link:focus {
    left: 0
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px
}

.container-narrow {
    max-width: 960px
}

.section {
    padding: 130px 0 110px;
    position: relative
}

.section.tight {
    padding: 100px 0 90px
}

.section.pt-0 {
    padding-top: 0
}

.section.pb-0 {
    padding-bottom: 0
}

.beige-bg {
    background: var(--beige)
}

.white-bg {
    background: var(--white)
}

.text-center {
    text-align: center
}

.section-head {
    margin-bottom: 60px;
    max-width: 720px
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--theme);
    margin-bottom: 18px
}

.eyebrow::after {
    content: '';
    display: block;
    width: 46px;
    height: 1px;
    background: var(--theme);
    margin-top: 12px;
    opacity: .5
}

.section-head.center .eyebrow::after {
    margin-left: auto;
    margin-right: auto
}

.section-head h2 {
    margin-bottom: 18px
}

.section-head h2 em {
    font-style: italic;
    color: var(--theme)
}

.section-head p {
    font-size: 1.02rem;
    color: var(--body);
    line-height: 1.8
}

.on-dark .section-head h2,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
    color: var(--white)
}

.on-dark .section-head p,
.on-dark p {
    color: rgba(255, 255, 255, .72)
}

.on-dark .eyebrow {
    color: var(--theme)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 35px 16px;
    border: 1px solid transparent;
    background: var(--theme);
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast)
}

.btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-deep);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-med);
    z-index: 0
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left
}

.btn>* {
    position: relative;
    z-index: 1
}

.btn-outline {
    background: 0 0;
    border-color: var(--line);
    color: var(--heading)
}

.btn-outline::before {
    background: var(--theme)
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--theme)
}

.btn-light {
    background: var(--white);
    color: var(--heading)
}

.btn-light::before {
    background: var(--theme)
}

.btn-light:hover {
    color: var(--white)
}

.btn-ghost-light {
    background: 0 0;
    border-color: rgba(255, 255, 255, .35);
    color: var(--white)
}

.btn-ghost-light::before {
    background: var(--white)
}

.btn-ghost-light:hover {
    color: var(--heading);
    border-color: var(--white)
}

.btn-sm {
    padding: 12px 26px 11px;
    font-size: .8rem
}

.btn-lg {
    padding: 22px 45px 21px;
    font-size: .95rem
}

.btn-block {
    width: 100%
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--heading);
    text-decoration: none;
    transition: color var(--t-fast), gap var(--t-fast)
}

.link-arrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: width var(--t-fast)
}

.link-arrow:hover {
    color: var(--theme);
    gap: 14px
}

.link-arrow:hover::after {
    width: 30px
}

.topbar {
    background: var(--footer-deep);
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    letter-spacing: .3px
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 46px;
    padding-top: 8px;
    padding-bottom: 8px
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 26px
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--t-fast)
}

.topbar a:hover {
    color: var(--theme)
}

.topbar .sep {
    color: rgba(255, 255, 255, .2)
}

.topbar .tb-phone {
    color: var(--theme);
    font-weight: 700;
    letter-spacing: .6px
}

.disclosure-banner {
    background: var(--theme-tint);
    border-bottom: 1px solid var(--theme-soft);
    padding: 13px 0
}

.disclosure-banner .container {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 1120px
}

.disclosure-banner .db-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--theme);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-family: var(--font-body)
}

.disclosure-banner p {
    font-size: .82rem;
    line-height: 1.6;
    color: var(--theme-deep)
}

.disclosure-banner strong {
    color: #6d3a2b;
    font-weight: 700
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 0;
    z-index: 900;
    transition: box-shadow var(--t-fast)
}

.site-header.stuck {
    box-shadow: 0 6px 30px rgba(43, 45, 66, .08)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 80px
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0
}

.logo-mark {
    width: 46px;
    height: 46px;
    border: 1px solid var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--theme-soft)
}

.logo-mark svg {
    width: 22px;
    height: 22px;
    fill: var(--theme);
    position: relative;
    z-index: 1
}

.logo-text .lt-name {
    display: block;
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    color: var(--heading);
    letter-spacing: .01em
}

.logo-text .lt-sub {
    display: block;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme);
    margin-top: 5px
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none
}

.main-nav a {
    font-size: .93rem;
    font-weight: 500;
    color: var(--heading-alt);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color var(--t-fast);
    white-space: nowrap
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--theme);
    transition: width var(--t-fast)
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--theme)
}

.main-nav a.active::after,
.main-nav a:hover::after {
    width: 100%
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none
}

.header-phone .hp-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--theme-tint);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), color var(--t-fast)
}

.header-phone .hp-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor
}

.header-phone:hover .hp-icon {
    background: var(--theme);
    color: var(--white)
}

.header-phone .hp-label {
    display: block;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--muted)
}

.header-phone .hp-num {
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: .4px;
    line-height: 1.3
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--heading);
    transition: transform var(--t-fast), opacity var(--t-fast)
}

body.nav-open .nav-toggle span:first-child {
    transform: translateY(6.5px) rotate(45deg)
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

.mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    background: var(--white);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    display: flex;
    flex-direction: column;
    padding: 28px 28px 36px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .18)
}

body.nav-open .mobile-nav {
    transform: translateX(0)
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 8px
}

.mobile-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: 0 0;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--heading);
    line-height: 1
}

.mobile-nav ul {
    list-style: none
}

.mobile-nav ul a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-alt);
    text-decoration: none;
    transition: color var(--t-fast), padding-left var(--t-fast)
}

.mobile-nav ul a.active,
.mobile-nav ul a:hover {
    color: var(--theme);
    padding-left: 8px
}

.mobile-nav-foot {
    margin-top: 26px
}

.mobile-nav-foot .mn-label {
    font-size: .62rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px
}

.mobile-nav-foot .mn-phone {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--theme);
    text-decoration: none;
    display: block;
    margin-bottom: 18px
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(34, 34, 34, .55);
    opacity: 0;
    visibility: hidden;
    z-index: 1100;
    transition: opacity var(--t-med), visibility var(--t-med)
}

body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible
}

.hero {
    position: relative;
    background: #1c1d2b url('assets/img/hero.webp') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
    padding: 50px 0 140px;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center
}

.hero>.container {
    width: 100%
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(22, 23, 38, .94) 0, rgba(28, 27, 52, .8) 42%, rgba(40, 32, 56, .44) 72%, rgba(60, 40, 56, .3) 100%);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23faf5f2' d='M0,84L60,74.7C120,65,240,47,360,49C480,51,600,74,720,84C840,93,960,89,1080,77C1200,65,1320,47,1380,37.3L1440,28L1440,140L0,140Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none
}

.hero .container {
    position: relative;
    z-index: 2
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 9px 20px;
    font-size: .73rem;
    font-weight: 500;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .9)
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ddf9c;
    flex-shrink: 0;
    position: relative
}

.live-dot::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: rgba(109, 223, 156, .6);
    z-index: -1;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    70% {
        transform: scale(3.5);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px
}

.hero h1 em {
    font-style: italic;
    color: var(--theme)
}

.hero-lead {
    font-size: 1.08rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .76);
    max-width: 560px;
    margin-bottom: 24px;
    text-align: justify
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.hero-trust li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .74)
}

.hero-trust li svg {
    width: 15px;
    height: 15px;
    fill: var(--theme);
    flex-shrink: 0
}

.hero-card {
    background: var(--white);
    padding: 44px 40px 40px;
    box-shadow: var(--sh-lg);
    position: relative
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--theme-soft);
    pointer-events: none
}

.hero-card-inner {
    position: relative;
    z-index: 1;
    text-align: center
}

.hero-card .hc-eyebrow {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme);
    margin-bottom: 14px
}

.hero-card .hc-num {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--heading);
    text-decoration: none;
    display: block;
    letter-spacing: .5px;
    line-height: 1.1;
    transition: color var(--t-fast)
}

.hero-card .hc-num:hover {
    color: var(--theme)
}

.hero-card .hc-status {
    font-size: .8rem;
    color: var(--green);
    font-weight: 500;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.hero-card .hc-divider {
    height: 1px;
    background: var(--line-soft);
    margin: 26px 0 22px
}

.hero-card .hc-list {
    list-style: none;
    text-align: left
}

.hero-card .hc-list li+li {
    border-top: 1px solid var(--line-soft)
}

.hero-card .hc-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    font-size: .9rem;
    color: var(--heading-alt);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--t-fast), padding-left var(--t-fast)
}

.hero-card .hc-list a::after {
    content: '→';
    color: var(--theme);
    font-size: .95rem;
    transition: transform var(--t-fast)
}

.hero-card .hc-list a:hover {
    color: var(--theme);
    padding-left: 6px
}

.hero-card .hc-list a:hover::after {
    transform: translateX(4px)
}

.quick-strip {
    background: var(--beige);
    padding: 54px 0 46px
}

.quick-strip-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.quick-strip-head h3 {
    font-size: 1.55rem;
    color: var(--heading)
}

.quick-strip-head p {
    font-size: .92rem
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px
}

.quick-item {
    background: var(--white);
    border: 1px solid var(--line-soft);
    padding: 22px 22px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast)
}

.quick-item:hover {
    border-color: var(--theme);
    transform: translateY(-4px);
    box-shadow: var(--sh-sm)
}

.quick-item svg {
    width: 24px;
    height: 24px;
    fill: var(--theme)
}

.quick-item .qi-title {
    font-family: var(--font-head);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2
}

.quick-item .qi-sub {
    font-size: .8rem;
    color: var(--body);
    line-height: 1.5
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line-soft);
    padding: 42px 36px 38px;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
    display: flex;
    flex-direction: column
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--theme);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-med)
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
    border-color: var(--theme-soft)
}

.service-num {
    position: absolute;
    top: 26px;
    right: 30px;
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--beige-deep);
    line-height: 1;
    pointer-events: none;
    transition: color var(--t-med)
}

.service-card:hover .service-num {
    color: var(--theme-soft)
}

.service-icon {
    width: 62px;
    height: 62px;
    background: var(--theme-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--t-med)
}

.service-icon svg {
    width: 27px;
    height: 27px;
    fill: var(--theme);
    transition: fill var(--t-med)
}

.service-card:hover .service-icon {
    background: var(--theme)
}

.service-card:hover .service-icon svg {
    fill: var(--white)
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px
}

.service-card p {
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.split.reverse .split-media {
    order: 2
}

.split-media {
    position: relative;
    min-height: 560px;
    background: #2c2a49 url('assets/img/about-flight.webp') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 48px 104px
}

.split-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(190deg, rgba(22, 23, 38, .62) 0, rgba(26, 24, 44, .24) 46%, rgba(20, 16, 28, .6) 100%)
}

.split-media::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    pointer-events: none
}

.split-media-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white)
}

.split-media-inner .smi-mark svg {
    width: 54px;
    height: 54px;
    fill: var(--theme);
    margin: 0 auto 22px;
    opacity: .95
}

.split-media-inner .smi-num {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white)
}

.split-media-inner .smi-label {
    font-size: .72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-top: 12px
}

.media-chip {
    position: absolute;
    left: -20px;
    bottom: -28px;
    background: var(--white);
    padding: 24px 32px;
    box-shadow: var(--sh-lg);
    z-index: 3;
    max-width: 270px;
    border-left: 3px solid var(--theme)
}

.media-chip .mc-label {
    font-size: .62rem;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--theme);
    margin-bottom: 6px
}

.media-chip .mc-value {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2
}

.media-chip .mc-sub {
    font-size: .78rem;
    color: var(--body);
    margin-top: 4px
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 34px
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.why-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--theme-soft);
    background: var(--theme-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.why-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--theme)
}

.why-item h4 {
    font-size: 1.22rem;
    margin-bottom: 5px
}

.why-item p {
    font-size: .9rem;
    line-height: 1.75
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
    counter-reset: step
}

.step {
    background: var(--white);
    border: 1px solid var(--line-soft);
    padding: 44px 30px 36px;
    text-align: center;
    position: relative;
    transition: transform var(--t-med), box-shadow var(--t-med)
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md)
}

.step-num {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--theme);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1px solid var(--theme-soft);
    border-radius: 50%
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px
}

.step p {
    font-size: .88rem;
    line-height: 1.75
}

.cred-band {
    background: var(--white);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 0
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
}

.cred-item {
    padding: 44px 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid var(--line-soft)
}

.cred-item:last-child {
    border-right: none
}

.cred-item svg {
    width: 30px;
    height: 30px;
    fill: var(--theme);
    flex-shrink: 0
}

.cred-item .ci-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2
}

.cred-item .ci-sub {
    font-size: .8rem;
    color: var(--body);
    margin-top: 3px
}

.stat-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft)
}

.stat-box {
    background: var(--white);
    padding: 40px 26px;
    text-align: center
}

.stat-box .num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--theme);
    line-height: 1;
    display: block
}

.stat-box .desc {
    font-size: .76rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px
}

.marquee {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee 46s linear infinite;
    will-change: transform
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

.marquee+.marquee {
    margin-top: 14px
}

.marquee.reverse .marquee-track {
    animation-direction: reverse
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.airline-pill {
    background: var(--white);
    border: 1px solid var(--line-soft);
    padding: 14px 28px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--heading-alt);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color var(--t-fast), color var(--t-fast)
}

.airline-pill svg {
    width: 15px;
    height: 15px;
    fill: var(--theme);
    flex-shrink: 0
}

.airline-pill:hover {
    border-color: var(--theme);
    color: var(--theme)
}

@media (prefers-reduced-motion:reduce) {
    .marquee-track {
        animation: none;
        width: 100%
    }

    .marquee {
        -webkit-mask-image: none;
        mask-image: none
    }

    .marquee-track span:not(:first-child) {
        display: none
    }

    .marquee-track span:first-child {
        white-space: normal;
        text-align: center;
        width: 100%
    }
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.dest-card {
    position: relative;
    aspect-ratio: 1/1;
    min-height: 250px;
    padding: 30px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: var(--white);
    background-color: #2c2a49;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform var(--t-med), box-shadow var(--t-med)
}

.dest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 16, 32, 0) 34%, rgba(18, 16, 32, .55) 66%, rgba(15, 13, 26, .92) 100%);
    transition: opacity var(--t-med)
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    pointer-events: none
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg)
}

.dest-card>* {
    position: relative;
    z-index: 1
}

.dest-card .dc-icon {
    position: absolute;
    top: 30px;
    left: 28px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 122, 99, .92)
}

.dest-card .dc-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white)
}

.dest-card .city {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15
}

.dest-card .code {
    font-size: .72rem;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
    margin-top: 7px
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--line-soft);
    padding: 44px 38px 36px;
    position: relative;
    transition: transform var(--t-med), box-shadow var(--t-med)
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md)
}

.testi-card .quote-mark {
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 1;
    color: var(--theme-soft);
    position: absolute;
    top: 22px;
    right: 32px;
    pointer-events: none
}

.stars {
    color: var(--theme);
    letter-spacing: 3px;
    font-size: .9rem;
    margin-bottom: 18px
}

.testi-card p {
    font-family: var(--font-head);
    font-size: 1.22rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--heading);
    margin-bottom: 26px;
    position: relative;
    z-index: 1
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft)
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--theme-tint);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
    letter-spacing: .5px
}

.testi-author .name {
    display: block;
    font-weight: 700;
    font-size: .95rem;
    color: var(--heading)
}

.testi-author .loc {
    display: block;
    font-size: .78rem;
    color: var(--muted)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line-soft);
    transition: border-color var(--t-fast), box-shadow var(--t-fast)
}

.faq-item.open {
    border-color: var(--theme-soft);
    box-shadow: var(--sh-sm)
}

.faq-q {
    width: 100%;
    background: 0 0;
    border: none;
    padding: 24px 28px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    line-height: 1.3;
    transition: color var(--t-fast)
}

.faq-item.open .faq-q,
.faq-q:hover {
    color: var(--theme)
}

.faq-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    flex-shrink: 0;
    position: relative;
    transition: background var(--t-fast), border-color var(--t-fast)
}

.faq-icon::after,
.faq-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--theme);
    transform: translate(-50%, -50%);
    transition: transform var(--t-fast), background var(--t-fast)
}

.faq-icon::before {
    width: 13px;
    height: 1.5px
}

.faq-icon::after {
    width: 1.5px;
    height: 13px
}

.faq-item.open .faq-icon {
    background: var(--theme);
    border-color: var(--theme)
}

.faq-item.open .faq-icon::after,
.faq-item.open .faq-icon::before {
    background: var(--white)
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg)
}

.faq-a {
    display: none;
    padding: 0 28px 26px;
    font-size: .94rem;
    line-height: 1.85;
    color: var(--body)
}

.faq-a a {
    color: var(--theme);
    font-weight: 500
}

.faq-item.open .faq-a {
    display: block
}

.cta-band {
    background: var(--dark) url('assets/img/hero.webp') 50% 35%/cover no-repeat;
    color: var(--white);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    text-align: center
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(16 16 24 / 69%) 0, rgb(18 17 28 / 45%) 50%, rgb(16 16 24 / 62%) 100%)
}

.cta-band .container {
    position: relative;
    z-index: 1
}

.cta-band h2 {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 20px
}

.cta-band h2 em {
    font-style: italic;
    color: var(--theme)
}

.cta-band p {
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 1.02rem
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin-bottom: 24px
}

.cta-phone .cp-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative
}

.cta-phone .cp-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: rgba(199, 122, 99, .55);
    z-index: -1;
    animation: ring-pulse 2.4s infinite
}

.cta-phone .cp-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white)
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    70% {
        transform: scale(1.6);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

.cta-phone .cp-num {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    transition: color var(--t-fast)
}

.cta-phone:hover .cp-num {
    color: var(--theme)
}

.cta-note {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5)
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft)
}

.fee-cell {
    background: var(--white);
    padding: 40px 34px 36px
}

.fee-cell .fc-step {
    font-size: .66rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme);
    margin-bottom: 14px
}

.fee-cell h4 {
    font-size: 1.35rem;
    margin-bottom: 10px
}

.fee-cell p {
    font-size: .9rem;
    line-height: 1.8
}

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px
}

.checklist li {
    display: block;
    position: relative;
    background: var(--white);
    border: 1px solid var(--line-soft);
    padding: 20px 24px 20px 56px;
    font-size: .92rem;
    line-height: 1.65;
    color: var(--body)
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 24px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--theme);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat
}

.checklist li strong {
    color: var(--heading);
    font-weight: 700
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--line-soft);
    padding: 38px 32px;
    text-align: center;
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med)
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: var(--theme-soft)
}

.contact-card .cc-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--theme-tint);
    display: flex;
    align-items: center;
    justify-content: center
}

.contact-card .cc-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--theme)
}

.contact-card .cc-label {
    font-size: .64rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px
}

.contact-card .cc-value {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.35;
    word-break: break-word
}

.contact-card .cc-value a {
    text-decoration: none;
    transition: color var(--t-fast)
}

.contact-card .cc-value a:hover {
    color: var(--theme)
}

.contact-card .cc-note {
    font-size: .82rem;
    color: var(--body);
    margin-top: 8px
}

.site-footer {
    background: var(--footer) url('assets/img/about-flight.webp') center/cover no-repeat;
    background-blend-mode: overlay;
    color: rgba(255, 255, 255, .62);
    font-size: .9rem
}

.footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 56px;
    padding: 90px 0 70px
}

.site-footer .logo-text .lt-name {
    color: var(--white)
}

.footer-brand>p {
    margin: 22px 0 26px;
    line-height: 1.85;
    font-size: .87rem;
    color: rgba(255, 255, 255, .55)
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    transition: border-color var(--t-fast), background var(--t-fast)
}

.footer-phone:hover {
    border-color: var(--theme);
    background: rgba(199, 122, 99, .08)
}

.footer-phone .ac-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    position: relative
}

.ac-live::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: rgba(76, 154, 106, .7);
    z-index: -1;
    animation: pulse 2s infinite
}

.footer-phone .fp-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.footer-phone .fp-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--white)
}

.footer-phone .fp-label {
    display: block;
    font-size: .6rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45)
}

.footer-phone .fp-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: var(--theme)
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-col ul a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .88rem;
    transition: color var(--t-fast), padding-left var(--t-fast);
    display: inline-block
}

.footer-col ul a:hover {
    color: var(--theme);
    padding-left: 6px
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .87rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6)
}

.footer-contact li svg {
    width: 15px;
    height: 15px;
    fill: var(--theme);
    flex-shrink: 0;
    margin-top: 5px
}

.footer-contact li a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color var(--t-fast)
}

.footer-contact li a:hover {
    color: var(--theme)
}

.footer-contact li strong {
    color: var(--white);
    font-weight: 500;
    display: block
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: var(--footer-deep)
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 26px;
    padding-bottom: 26px
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42)
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.badge {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 8px 14px;
    font-size: .72rem;
    letter-spacing: .6px;
    color: rgba(255, 255, 255, .55)
}

.badge svg {
    width: 15px;
    height: 15px;
    fill: var(--theme);
    flex-shrink: 0
}

.float-call {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 800;
    display: none;
    transition: opacity var(--t-fast), visibility var(--t-fast)
}

.float-call.hidden-in-hero {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.float-call a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--theme);
    color: var(--white);
    text-decoration: none;
    padding: 15px 26px;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .8px;
    box-shadow: var(--sh-theme);
    transition: background var(--t-fast), transform var(--t-fast)
}

.float-call a:hover {
    background: var(--theme-deep);
    transform: translateY(-3px)
}

.float-call svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0
}

.to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    background: var(--heading);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast), background var(--t-fast)
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.to-top:hover {
    background: var(--theme)
}

.to-top svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.cookie-notice {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1300;
    max-width: 420px;
    background: var(--white);
    box-shadow: var(--sh-lg);
    border-top: 3px solid var(--theme);
    padding: 26px 28px 24px;
    display: none
}

.cookie-notice.show {
    display: block
}

.cookie-notice h4 {
    font-size: 1.25rem;
    margin-bottom: 8px
}

.cookie-notice p {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 18px
}

.cookie-notice p a {
    color: var(--theme);
    font-weight: 500
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1)
}

.js .reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    html {
        scroll-behavior: auto
    }

    .cta-phone .cp-icon,
    .live-dot {
        animation: none
    }
}

@media (max-width:1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 52px
    }

    .hero-card {
        max-width: 520px
    }

    .split {
        gap: 52px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 44px
    }
}

@media (max-width:1180px) {
    .main-nav {
        display: none
    }

    .nav-toggle {
        display: flex
    }

    .float-call {
        display: block
    }

    .cred-item {
        border-right: none;
        border-bottom: 1px solid var(--line-soft)
    }

    .dest-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    body.popup-active .hero {
        z-index: 2000
    }

    body.popup-active .float-call {
        display: none !important
    }
}

@media (max-width:900px) {
    :root {
        --header-h: 84px
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .section {
        padding: 88px 0 78px
    }

    .section.tight {
        padding: 70px 0 62px
    }

    .cta-band {
        padding: 90px 0
    }

    .hero {
        padding: 30px 0 100px
    }

    .hero::after {
        height: 80px
    }

    .split {
        grid-template-columns: 1fr
    }

    .split.reverse .split-media {
        order: 0
    }

    .split-media {
        min-height: 400px;
        padding: 40px 32px 40px
    }

    .media-chip {
        position: static;
        margin: -34px 0 0 24px;
        max-width: none
    }

    .topbar-right .tb-hide {
        display: none
    }

    .header-phone .hp-text {
        display: none
    }

    .footer-top {
        padding: 64px 0 48px
    }
}

@media (max-width:620px) {
    .container {
        padding: 0 18px
    }

    .dest-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .header-inner {
        min-height: 74PX
    }



    .logo-text .lt-name {
        font-size: 1.25rem
    }

    .logo-mark {
        width: 38px;
        height: 38px
    }

    .hero h1 {
        margin-bottom: 18px
    }

    .dest-card {
        aspect-ratio: 16/10;
        min-height: 200px
    }

    .split-media {
        min-height: 320px
    }

    .media-chip {
        margin-left: 0;
        padding: 20px 24px
    }

    .section {
        padding: 68px 0 60px
    }

    .hero-card {
        padding: 34px 26px 30px
    }

    .service-card {
        padding: 34px 26px 30px
    }

    .testi-card {
        padding: 34px 26px 28px
    }

    .faq-q {
        padding: 20px 20px;
        font-size: 1.12rem
    }

    .faq-a {
        padding: 0 20px 22px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start
    }

    .float-call a {
        padding: 13px 20px;
        font-size: .82rem
    }

    .cookie-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 22px 20px
    }

    .btn {
        padding: 15px 28px 14px;
        font-size: .82rem
    }

    .btn-lg {
        padding: 18px 32px 17px;
        font-size: .86rem
    }

    .hero-actions {
        gap: 12px
    }

    .hero-actions .btn {
        width: 100%
    }
}

@media (max-width:420px) {
    .float-call a .fc-text {
        display: none
    }

    .float-call a {
        padding: 15px;
        border-radius: 50%
    }
}

.ubp-disclosure {
    background: rgba(0, 0, 0, .22);
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.ubp-disclosure .ubp-summary {
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 600;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .92)
}

.ubp-disclosure .ubp-detail {
    font-size: .82rem;
    line-height: 1.65;
    margin: 0;
    color: rgba(255, 255, 255, .72)
}

.ubp-disclosure a {
    color: rgba(255, 255, 255, .92);
    text-decoration: underline
}

.ubp-disclosure a:hover {
    color: #fff
}

@media (max-width:600px) {
    .ubp-disclosure {
        padding: 18px 0
    }

    .ubp-disclosure .ubp-detail {
        font-size: .78rem
    }
}

.footer-address {
    padding: 14px 0 0
}

.footer-address p {
    margin: 0;
    font-size: .85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .78)
}

.footer-address i {
    margin-right: 7px;
    opacity: .8
}

.footer-creds {
    padding: 16px 0 4px
}

.footer-creds-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px
}

.footer-creds-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .86)
}

.footer-creds-list i {
    font-size: .8rem;
    opacity: .75
}

@media (max-width:600px) {
    .footer-creds-list {
        gap: 8px 16px
    }

    .footer-creds-list li {
        font-size: .8rem
    }
}

.accred-section {
    background: 0 0
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px
}

.accred-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid var(--line-soft, #efe8e3);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
    transition: box-shadow .25s ease, transform .25s ease
}

.accred-card:hover {
    box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
    transform: translateY(-2px)
}

.accred-logo {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    object-fit: contain
}

.accred-name {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1f1a17;
    font-family: inherit
}

@media (max-width:992px) {
    .accred-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:520px) {
    .accred-grid {
        grid-template-columns: 1fr
    }

    .accred-card {
        justify-content: flex-start
    }
}

.agent-card {
    text-align: center;
    padding-top: 50px;
    position: relative
}

.agent-close-btn {
    display: none;
    position: absolute;
    top: 14px;
    right: 14px;
    background: 0 0;
    border: none;
    color: #97979f38;
    cursor: pointer;
    z-index: 10;
    padding: 6px;
    border-radius: 50%;
    transition: background var(--t-fast), color var(--t-fast)
}

.agent-close-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor
}

.agent-close-btn:hover {
    background: var(--line-soft);
    color: var(--heading)
}

.agent-avatar {
    width: 90px;
    height: 90px;
    margin: -95px auto 20px;
    position: relative;
    border-radius: 50%;
    padding: 5px;
    background: var(--white);
    box-shadow: var(--sh-md)
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover
}

.agent-status {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--line);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .65rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: var(--sh-sm)
}

.agent-status .live-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite
}

.ac-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--heading);
    margin-bottom: 24px
}

.ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px
}

.ac-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 16px;
    background: var(--beige);
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    color: var(--heading);
    font-weight: 600;
    font-size: .8rem;
    text-decoration: none;
    transition: all var(--t-fast)
}

.ac-grid a svg {
    width: 18px;
    height: 18px;
    fill: var(--muted);
    transition: transform var(--t-fast), fill var(--t-fast)
}

.ac-grid a:hover {
    background: var(--white);
    border-color: var(--theme);
    color: var(--theme);
    transform: translateY(-2px);
    box-shadow: var(--sh-sm)
}

.ac-grid a:hover svg {
    transform: translateX(4px);
    fill: currentColor
}

.ac-call-btn {
    margin-bottom: 12px
}

.ac-call-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.ac-note {
    font-size: .75rem;
    color: var(--body);
    margin-bottom: 10px
}

.ac-disclaimer {
    font-size: .6rem;
    color: var(--muted);
    line-height: 1.5;
    border-top: 1px solid var(--line-soft);
    padding-top: 10px;
    text-align: justify
}

.ac-disclaimer a {
    color: var(--muted);
    text-decoration: none
}

.ac-disclaimer a:hover {
    color: var(--theme)
}

@media (max-width:900px) {
    .hero-card.agent-card {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%) scale(.9);
        opacity: 0;
        visibility: hidden;
        width: 92%;
        max-width: 440px;
        z-index: 1000;
        margin: 0;
        box-shadow: 0 20px 80px rgba(0, 0, 0, .6);
        border-radius: 20px;
        padding: 44px 26px 20px 26PX;
        margin-top: 50PX;
        transition: all .6s cubic-bezier(.34, 1.56, .64, 1)
    }

    body.popup-active .hero-card.agent-card {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1)
    }

    .hero-grid::after {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 999;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background: rgba(15, 15, 25, .4);
        opacity: 0;
        visibility: hidden;
        transition: all .4s ease
    }

    body.popup-active .hero-grid::after {
        opacity: 1;
        visibility: visible
    }

    .agent-card.hidden-mobile {
        display: none !important
    }

    .agent-close-btn {
        display: block
    }
}