     :root {
            --primary: #2f8de4;
            --primary-dark: #246fb7;
            --navy: #172641;
            --blue-dark: #3f5f9f;
            --text: #4d5d73;
            --muted: #6d7b8f;
            --light: #f6f8fc;
            --white: #ffffff;
            --border: #e3e8ef;
            --shadow: 0 18px 45px rgba(23, 38, 65, 0.1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1 {
            font-size: 42px;
            line-height: 1.08;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.035em;
        }

        h2 {
            font-size: 32px;
            line-height: 1.18;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.025em;
        }

        p,
        li,
        a,
        button,
        span {
            font-size: 16px;
        }

        img {
            width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        button,
        input,
        select {
            font: inherit;
        }

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

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }

        .eyebrow::before {
            content: "";
            width: 24px;
            height: 2px;
            background: currentColor;
        }

        .btn {
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 13px 22px;
            border: 0;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 750;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

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

        .btn-primary {
            color: var(--white);
            background: var(--primary);
            box-shadow: 0 12px 24px rgba(47, 141, 228, 0.22);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        .btn-secondary {
            color: var(--navy);
            background: var(--white);
            border: 1px solid var(--border);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(12px);
        }

        .nav {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }

        .brand img {
            width: 215px;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            color: var(--navy);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links .nav-cta {
            padding: 11px 18px;
            border-radius: 7px;
            color: var(--white);
            background: var(--blue-dark);
        }

        .menu-btn {
            display: none;
            border: 0;
            background: transparent;
            color: var(--navy);
            font-size: 25px;
            cursor: pointer;
        }

        /* Hero */
        .hero {
            padding: 72px 0 98px;
            background: var(--light);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.02fr 0.98fr;
            gap: 68px;
            align-items: center;
        }

        .hero-copy p {
            max-width: 610px;
            margin: 20px 0 28px;
            color: var(--muted);
        }

        .hero-copy h1 span {
            color: var(--primary);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-proof {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 30px;
        }

        .proof {
            padding: 16px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: var(--white);
        }

        .proof strong {
            display: block;
            margin-bottom: 3px;
            color: var(--blue-dark);
            font-size: 18px;
        }

        .proof span {
            color: var(--muted);
            font-size: 12px;
        }

        .hero-visual {
            position: relative;
        }

        .hero-visual > img {
            height: 470px;
            object-fit: cover;
            border-radius: 22px;
        }

        .flight-card {
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 20px;
            padding: 22px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
        }

        .flight-row {
            display: grid;
            grid-template-columns: 1fr 90px 1fr;
            align-items: center;
        }

        .airport-code {
            color: var(--blue-dark);
            font-size: 28px;
            font-weight: 800;
        }

        .airport small {
            color: var(--muted);
        }

        .flight-line {
            position: relative;
            color: var(--primary);
            text-align: center;
        }

        .flight-line::before,
        .flight-line::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 28px;
            height: 1px;
            background: var(--border);
        }

        .flight-line::before {
            left: 0;
        }

        .flight-line::after {
            right: 0;
        }

        .flight-meta {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }

        .flight-meta span,
        .flight-meta strong {
            font-size: 12px;
        }

        .flight-meta strong {
            color: var(--blue-dark);
        }

        /* Quick strip */
        .quick-strip {
            position: relative;
            z-index: 4;
            margin-top: -48px;
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .quick-item {
            min-height: 170px;
            padding: 26px;
        }

        .quick-item + .quick-item {
            border-left: 1px solid var(--border);
        }

        .quick-icon {
            width: 36px;
            height: 36px;
            margin-bottom: 18px;
            display: grid;
            place-items: center;
            border-radius: 9px;
            color: var(--blue-dark);
            background: #e9eef7;
            font-size: 13px;
            font-weight: 800;
        }

        .quick-item h3 {
            margin-bottom: 7px;
            color: var(--navy);
            font-size: 18px;
        }

        .quick-item p {
            color: var(--muted);
            font-size: 14px;
        }

        /* Sections */
        .section {
            padding: 90px 0;
        }

        .section-title {
            max-width: 780px;
            margin-bottom: 42px;
        }

        .section-title p {
            margin-top: 12px;
            color: var(--muted);
        }

        /* Routes */
        .routes-layout {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 28px;
            align-items: start;
        }

        .route-note {
            min-height: 570px;
            padding: 38px;
            border-radius: 18px;
            color: var(--white);
            background: var(--blue-dark);
        }

        .route-note h3 {
            margin: 10px 0 14px;
            font-size: 30px;
            line-height: 1.2;
        }

        .route-note p {
            color: #e8eef8;
        }

        .route-note ul {
            margin: 25px 0;
            list-style: none;
        }

        .route-note li {
            padding: 11px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.17);
        }

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

        .route-card {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: var(--white);
        }

        .route-card img {
            height: 190px;
            object-fit: cover;
        }

        .route-body {
            padding: 15px;
        }

        .route-tag {
            color: var(--primary);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .route-top {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            margin: 8px 0;
        }

        .route-top h3 {
            color: var(--navy);
            font-size: 21px;
        }

        .route-top strong {
            color: var(--navy);
            font-size: 14px;
        }

        .route-body p {
            color: var(--muted);
            font-size: 14px;
        }

        .route-card .card-cta {
            display: inline-flex;
            margin-top: 15px;
            color: var(--primary-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
        }

        /* Booking section */
        .booking {
            background: var(--light);
        }

        .booking-wrap {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 54px;
            align-items: center;
        }

        .booking-image {
            position: relative;
        }

        .booking-image img {
            height: 525px;
            object-fit: cover;
            border-radius: 20px;
        }

        .mini-panel {
            position: absolute;
            right: -18px;
            bottom: 32px;
            width: 230px;
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .mini-panel strong {
            color: var(--navy);
        }

        .mini-panel p {
            margin-top: 6px;
            color: var(--muted);
            font-size: 13px;
        }

        .check-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 26px 0;
        }

        .check-item {
            position: relative;
            padding: 14px 14px 14px 38px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: var(--white);
            color: var(--navy);
            font-size: 14px;
            font-weight: 700;
        }

        .check-item::before {
            content: "✓";
            position: absolute;
            left: 14px;
            color: var(--primary);
            font-weight: 900;
        }

        /* Lead form */
        .lead-panel {
            margin-top: 30px;
            padding: 25px;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .lead-panel h3 {
            margin-bottom: 5px;
            color: var(--navy);
            font-size: 22px;
        }

        .lead-panel > p {
            margin-bottom: 18px;
            color: var(--muted);
            font-size: 14px;
        }

        .lead-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .lead-form input,
        .lead-form select {
            width: 100%;
            min-height: 48px;
            padding: 11px 13px;
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--navy);
            background: var(--white);
            outline: none;
        }

        .lead-form input:focus,
        .lead-form select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(47, 141, 228, 0.12);
        }

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

        /* Process */
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .step {
            position: relative;
            padding-top: 28px;
            border-top: 1px solid #b9c2cf;
        }

        .step::before {
            content: attr(data-step);
            position: absolute;
            top: 8px;
            left: 0;
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
        }

        .step h3 {
            margin: 12px 0 7px;
            color: var(--navy);
            font-size: 18px;
        }

        .step p {
            color: var(--muted);
            font-size: 14px;
        }

        /* FAQ */
        .faq-layout {
            display: grid;
            grid-template-columns: 0.72fr 1.28fr;
            gap: 50px;
            align-items: start;
        }

        .faq-aside {
            min-height: 330px;
            padding: 38px;
            border-radius: 18px;
            color: var(--white);
            background: var(--primary);
        }

        .faq-aside h3 {
            margin: 12px 0;
            font-size: 30px;
            line-height: 1.2;
        }

        .faq-aside p {
            color: #edf7ff;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-q {
            width: 100%;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 0;
            border: 0;
            background: transparent;
            color: var(--navy);
            text-align: left;
            cursor: pointer;
            font-weight: 800;
        }

        .faq-a {
            display: none;
            padding: 0 36px 20px 0;
            color: var(--muted);
        }

        .faq-item.open .faq-a {
            display: block;
        }

        .faq-item.open .faq-q span {
            transform: rotate(45deg);
        }

        /* CTA */
        .cta {
            padding: 58px 0;
            background: var(--navy);
            color: var(--white);
        }

        .cta-inner {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            align-items: center;
        }

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

        .cta p {
            margin-top: 8px;
            color: #c7d1e1;
        }

        .cta .btn {
            flex-shrink: 0;
            color: var(--white);
            background: var(--primary);
        }

        /* Footer */
        .footer {
            padding: 62px 0 24px;
            background: var(--white);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
            gap: 40px;
        }

        .footer h4 {
            margin-bottom: 15px;
            color: var(--navy);
            font-size: 16px;
        }

        .footer a:not(.brand) {
            display: block;
            margin-bottom: 9px;
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
        }

        .footer a:hover {
            color: var(--primary);
        }

        .footer .brand {
            margin-bottom: 18px;
        }

        .footer p {
            max-width: 350px;
            color: var(--muted);
            font-size: 14px;
        }

        .copyright {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 42px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--muted);
        }

        .copyright span {
            font-size: 13px;
        }

        /* Floating call */
        .floating-call {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9999;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 14px 19px;
            border-radius: 10px;
            color: var(--white);
            background: var(--primary-dark);
            box-shadow: 0 15px 34px rgba(23, 38, 65, 0.28);
            text-decoration: none;
            font-weight: 800;
            transition: 0.25s ease;
        }

        .floating-call:hover {
            transform: translateY(-3px);
            background: var(--navy);
        }

        /* Responsive */
        @media (max-width: 980px) {
            .nav-links {
                position: absolute;
                top: 78px;
                left: 0;
                right: 0;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 22px;
                background: var(--white);
                border-bottom: 1px solid var(--border);
            }

            .nav-links.open {
                display: flex;
            }

            .menu-btn {
                display: block;
            }

            .hero-grid,
            .routes-layout,
            .booking-wrap,
            .faq-layout {
                grid-template-columns: 1fr;
            }

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

            .quick-item:nth-child(3) {
                border-left: 0;
                border-top: 1px solid var(--border);
            }

            .quick-item:nth-child(4) {
                border-top: 1px solid var(--border);
            }

            .route-note {
                min-height: auto;
            }

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

            .mini-panel {
                right: 18px;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 24px;
            }

            p,
            li,
            a,
            button,
            span {
                font-size: 16px;
            }

            .brand img {
                width: 175px;
            }

            .hero {
                padding: 54px 0 82px;
            }

            .hero-grid {
                gap: 42px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .hero-proof,
            .quick-grid,
            .route-grid,
            .check-list,
            .lead-form,
            .steps,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-visual > img {
                height: 390px;
            }

            .flight-card {
                left: 12px;
                right: 12px;
                bottom: 12px;
                padding: 16px;
            }

            .flight-row {
                grid-template-columns: 1fr 60px 1fr;
            }

            .airport-code {
                font-size: 23px;
            }

            .flight-meta {
                flex-direction: column;
                gap: 5px;
            }

            .quick-strip {
                margin-top: -36px;
            }

            .quick-item + .quick-item,
            .quick-item:nth-child(3),
            .quick-item:nth-child(4) {
                border-left: 0;
                border-top: 1px solid var(--border);
            }

            .section {
                padding: 68px 0;
            }

            .route-note,
            .faq-aside {
                padding: 28px;
            }

            .booking-image img {
                height: 420px;
            }

            .mini-panel {
                position: static;
                width: 100%;
                margin-top: 14px;
            }

            .lead-form .full {
                grid-column: auto;
            }

            .cta-inner,
            .copyright {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta .btn {
                width: 100%;
            }

            .floating-call {
                width: 58px;
                height: 58px;
                right: 14px;
                bottom: 14px;
                justify-content: center;
                padding: 0;
                border-radius: 50%;
            }

            .floating-call span {
                display: none;
            }
        }
        
        
        .legal {
    padding: 70px 0;
    background: #f6f8fc;
}

.legal-content {
    padding: 48px;
    border: 1px solid #e3e8ef;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(23, 38, 65, 0.08);
}

.legal-content .back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: #2f8de4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.legal-content h1 {
    margin-bottom: 25px;
    color: #172641;
    font-size: 32px;
    line-height: 1.1;
}

.legal-content h2 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: #172641;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.legal-content p,
.legal-content li {
    color: #4d5d73;
    font-size: 16px;
    line-height: 1.75;
}

.legal-content p + p {
    margin-top: 14px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-updated {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid #e3e8ef;
}

@media (max-width: 640px) {
    .legal {
        padding: 45px 0;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 16px;
    }
}