:root {
    --bg: #ffffff;
    --text: #0f0f10;
    --muted: #6f6f73;
    --line: #e9e9ec;
    --soft: #f6f6f8;
    --soft-2: #efeff2;
    --card: #f4f4f6;
    --dark: #070707;
    --accent: #e6ff00;
    --accent-text: #111;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 70px 0;
}

.eyebrow {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 12px;
}

.title {
    font-size: clamp(34px, 6vw, 78px);
    line-height: 0.97;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.title-md {
    font-size: clamp(28px, 3.4vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.text {
    color: var(--muted);
    font-size: 17px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
    white-space: nowrap;
}

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

.btn-dark {
    background: #000;
    color: #fff;
    padding: 16px 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-text);
    padding: 18px 34px;
    box-shadow: 0 10px 30px rgba(230, 255, 0, 0.32);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 16px 26px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.28);
}

.btn-block {
    width: 100%;
    border-radius: 16px;
    padding: 16px 20px;
}

.form-status-wrap {
    position: fixed;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 32px), 1180px);
    z-index: 120;
    pointer-events: none;
}

.form-status-box {
    pointer-events: auto;
    margin: 0 auto;
    padding: 16px 20px;
    border-radius: 18px;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.form-status-box.success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status-box.error {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
}

/* NAV */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 22, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.nav-wrap.scrolled {
    background: rgba(18, 18, 22, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.nav {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    flex-shrink: 0;
}

.logo-image {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 15px;
}

.nav-links a {
    position: relative;
    color: #fff;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-menu {
    display: none;
    width: 100%;
    padding: 0 32px 18px;
    background: rgba(8, 8, 10, 0.96);
}

.mobile-menu.active {
    display: grid;
    gap: 14px;
}

.mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-wrap.scrolled .logo,
.nav-wrap.scrolled .nav-links a,
.nav-wrap.scrolled .mobile-menu a {
    color: #fff;
}

.nav-wrap.scrolled .menu-toggle {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-wrap.scrolled .mobile-menu {
    background: rgba(8, 8, 10, 0.96);
}

/* HERO */
.hero {
    padding: 0;
}

.hero-card {
    min-height: 100vh;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: none;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.12)),
        url(../img/hero.jpg) center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.2)),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.plane {
    position: absolute;
    right: 12%;
    top: 14%;
    font-size: clamp(42px, 5vw, 86px);
    transform: rotate(14deg);
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.15));
    animation: floatPlane 6s ease-in-out infinite;
    z-index: 2;
}

.plane-trail {
    position: absolute;
    right: 20%;
    top: 19%;
    width: 170px;
    height: 90px;
    border-top: 3px dashed rgba(255, 255, 255, 0.38);
    border-radius: 100%;
    transform: rotate(12deg);
    z-index: 1;
}

@keyframes floatPlane {
    0%, 100% {
        transform: translateY(0) rotate(14deg);
    }

    50% {
        transform: translateY(-10px) rotate(14deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 120px 20px 60px;
    color: white;
}

.hero-sub {
    font-size: 18px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: clamp(38px, 7vw, 92px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.06em;
    max-width: 1050px;
    margin: 0 auto 34px;
    color: #fff;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 28px;
}

.feature-card {
    background: linear-gradient(180deg, #f0f2fa, #f7f7f9);
    border-radius: var(--radius-lg);
    padding: 34px;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.feature-card.alt {
    background: linear-gradient(180deg, #f2f2f3, #f7f7f8);
}

.phone-frame {
    width: 240px;
    margin: 0 auto 30px;
    background: #fff;
    border: 12px solid #f5f5f7;
    border-radius: 32px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
    padding: 20px 14px;
}

.mini-form {
    display: grid;
    gap: 10px;
}

.mini-input {
    background: #f5f6fb;
    border: 1px solid #e9ebf3;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    color: #2b2f3b;
}

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

.price-tag {
    min-width: 62px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    padding: 10px 12px;
    font-weight: 800;
    text-align: center;
}

.confirm-btn {
    flex: 1;
    border: 0;
    padding: 12px;
    border-radius: 12px;
    background: #3d72ff;
    color: #fff;
    font-weight: 700;
}

.feature-image {
    width: min(100%, 270px);
    aspect-ratio: 0.72;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 12px solid #f5f5f7;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

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

.feature-copy {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.feature-copy h3 {
    font-size: clamp(20px, 2vw, 30px);
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.feature-copy p {
    color: #222;
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

/* ROUTES */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.route-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.route-card h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.route-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.route-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* SHOWCASE */
.showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: stretch;
}

.showcase-main {
    background: #f6f6f7;
    border-radius: var(--radius-lg);
    padding: 16px;
    overflow: hidden;
    min-height: 560px;
    position: relative;
}

.showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
}

.route-pill {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
    font-weight: 600;
}

.route-pill .badge {
    background: #ff2cb4;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    padding: 6px 10px;
    font-weight: 700;
}

.showcase-side {
    background: var(--soft);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    gap: 18px;
    align-content: start;
}

.showcase-side h3 {
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.showcase-side p {
    color: var(--muted);
    font-size: 16px;
}

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

.list-item {
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
}

.list-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 800;
    flex-shrink: 0;
}

/* BOOK FORM */
.book-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
}

.book-info {
    background: #0d0d0f;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 620px;
}

.book-info .eyebrow,
.book-info .text {
    color: rgba(255, 255, 255, 0.7);
}

.book-info ul {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.book-info li {
    display: flex;
    gap: 12px;
    align-items: start;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.book-info li span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #111;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.book-form {
    background: var(--soft);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 14px;
    font-weight: 600;
    color: #242428;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dddddf;
    background: #fff;
    border-radius: 16px;
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #999;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

/* FLEET */
.fleet-header {
    text-align: center;
    margin-bottom: 30px;
}

.fleet-grid {
    display: flex;
    gap: 28px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.fleet-card {
    flex: 1 1 20%;
    min-width: 0;
    background: #f2f2f3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ececef;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fleet-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 20px;
}

.fleet-image img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.fleet-body {
    padding: 18px;
}

.fleet-body h3 {
    font-size: 20px;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

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

.fleet-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e5e8;
    font-size: 13px;
    font-weight: 600;
}

.chip-ev {
    background: #e7f8ef;
    color: #1c7c4d;
    border: 1px solid #ccebdc;
}

/* FAQ */
.faq-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 110px;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: 0;
    text-align: left;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.faq-question span:last-child {
    font-size: 26px;
    line-height: 1;
    color: #777;
    transition: transform 0.28s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
    padding: 0 24px;
    color: var(--muted);
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 180px;
    padding: 0 24px 22px;
}

.faq-item.active .faq-question span:last-child {
    transform: rotate(45deg);
}

/* CTA */
.cta {
    padding: 110px 0;
    background: #050505;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.cta .title-md {
    max-width: 820px;
    margin: 0 auto 24px;
}

.cta .text {
    color: rgba(255, 255, 255, 0.68);
    max-width: 720px;
    margin: 0 auto 30px;
}

/* FOOTER */
.footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.9);
    padding: 42px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
    gap: 24px;
}

.footer h4 {
    margin-bottom: 14px;
    font-size: 16px;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer a,
.footer p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 28px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: none;
    justify-content: center;
    pointer-events: none;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner__content {
    width: min(100%, 1180px);
    background: rgba(8, 8, 10, 0.96);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    pointer-events: auto;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cookie-banner__text {
    max-width: 760px;
}

.cookie-banner__text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.cookie-banner__text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

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

.cookie-btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-btn--light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.cookie-btn--accent {
    background: var(--accent);
    color: #111;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .showcase,
    .book-wrap,
    .faq-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: static;
    }

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

    .fleet-grid {
        flex-wrap: wrap;
    }

    .fleet-card {
        flex: 1 1 calc(50% - 14px);
        min-width: calc(50% - 14px);
    }
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .features-grid,
    .form-grid,
    .routes-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 700px;
    }

    .book-info,
    .book-form,
    .feature-card {
        min-height: auto;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 20px;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .fleet-card {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 20px), var(--max));
    }

    .nav {
        min-height: 74px;
        padding: 0 16px;
    }

    .logo-image {
        height: 46px;
    }

    .mobile-menu {
        padding: 0 16px 18px;
    }

    .hero-card {
        min-height: 100vh;
    }

    .hero-title {
        font-size: clamp(34px, 10vw, 56px);
    }

    .hero-content {
        padding: 120px 20px 40px;
    }

    .plane {
        right: 9%;
        top: 17%;
    }

    .section {
        padding: 72px 0;
    }

    .feature-card,
    .book-info,
    .book-form {
        padding: 24px;
    }

    .showcase-main {
        min-height: 380px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .form-status-wrap {
        top: 86px;
        width: calc(100% - 20px);
    }
}

@media (max-width: 560px) {
    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}