﻿:root {
    --navy: #1a2060;
    --navy-dark: #111540;
    --navy-mid: #1e2570;
    --orange: #e8631a;
    --orange-light: #f07535;
    --orange-pale: rgba(232,99,26,0.1);
    --white: #ffffff;
    --offwhite: #f7f8fc;
    --text: #3a3f5c;
    --muted: #7880a0;
    --border: rgba(26,32,96,0.1);
    --border-light: rgba(26,32,96,0.07);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--offwhite);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy-dark);
  padding: 0 60px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.logo-img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.83rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange-light); }
.btn-nav { background: var(--orange); color: white !important; padding: 9px 22px; border-radius: 4px; font-weight: 700 !important; transition: background 0.2s !important; }
.btn-nav:hover { background: var(--orange-light) !important; }
.btn-ghost-nav {
  border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85) !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 600 !important;
  transition: all 0.2s !important;
}
.btn-ghost-nav:hover { border-color: var(--orange); color: var(--orange-light) !important; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; z-index: 110; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BREADCRUMB ── */
.breadcrumb {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 60px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--muted);
}

    .breadcrumb a {
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--orange);
        }

    .breadcrumb .sep {
        color: var(--border);
    }

    .breadcrumb .current {
        color: var(--navy);
        font-weight: 600;
    }

/* ── AIRCRAFT HERO ── */
.aircraft-hero {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hero-left {
    position: relative;
}

.hero-thumb-wrap {
    background: linear-gradient(135deg, #f0f1f5 0%, #e4e6ee 100%);
    border-radius: 12px;
    border: 1.5px solid var(--border);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.hero-thumb {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.1));
}

.hero-type-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: white;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-gallery-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--navy);
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}

    .hero-gallery-badge:hover {
        background: var(--navy-mid);
    }

.hero-right {
}

.hero-mfr {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 16px;
}

    .hero-name span {
        color: var(--orange);
    }

/* Key stats row */
.key-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.key-stat {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    text-align: center;
}

.key-stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.key-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-top: 3px;
}

/* Budget highlight */
.budget-card {
    background: var(--navy);
    border-radius: 10px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

    .budget-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
        background-size: 36px 36px;
    }

.budget-title {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.budget-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    position: relative;
    z-index: 1;
}

    .budget-amount span {
        color: white;
    }

.budget-basis {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

/* CTA buttons */
.hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: white;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    text-align: center;
    flex: 1;
    min-width: 160px;
}

    .btn-primary:hover {
        background: var(--orange-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,99,26,0.35);
    }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    text-align: center;
    flex: 1;
    min-width: 160px;
}

    .btn-outline:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

/* ── DETAIL SECTIONS ── */
.detail-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 60px 0;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Specs Grid */
.specs-section {
    margin-bottom: 36px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-title::before {
        content: '';
        width: 3px;
        height: 20px;
        background: var(--orange);
        border-radius: 2px;
        flex-shrink: 0;
    }

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--border);
}

.spec-cell {
    background: white;
    padding: 18px 20px;
}

.spec-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.spec-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.spec-sub {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Budget Table */
.budget-table-section {
    margin-bottom: 36px;
}

.budget-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--border);
}

    .budget-table thead th {
        background: var(--navy);
        color: white;
        padding: 12px 16px;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 700;
        text-align: left;
    }

        .budget-table thead th:first-child {
            border-radius: 0;
        }

    .budget-table tbody td {
        padding: 11px 16px;
        font-size: 0.84rem;
        color: var(--text);
        border-bottom: 1px solid var(--border-light);
        background: white;
    }

        .budget-table tbody td:first-child {
            font-weight: 600;
            font-size: 0.76rem;
            color: var(--muted);
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

    .budget-table tbody tr:last-child td {
        border-bottom: none;
        font-weight: 700;
        color: var(--navy);
    }

    .budget-table tbody td.highlight {
        color: var(--orange);
        font-weight: 700;
    }

/* Description */
.description-section {
    margin-bottom: 36px;
}

.description-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.85;
    max-width: 680px;
}

/* ── SIDEBAR ── */
.detail-sidebar {
    position: sticky;
    top: 88px;
}

/* Demo CTA card */
.demo-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.demo-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 10px;
}

    .demo-card-title span {
        color: var(--orange);
    }

.demo-card-text {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.demo-card .btn-primary {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.demo-card .btn-outline {
    display: block;
    width: 100%;
}

.demo-card-contact {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
}

    .demo-card-contact a {
        color: var(--orange);
        font-weight: 600;
        text-decoration: none;
    }

/* Quick specs sidebar */
.quick-specs-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.quick-specs-header {
    background: var(--navy);
    padding: 12px 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.quick-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
}

    .quick-spec-row:last-child {
        border-bottom: none;
    }

.quick-spec-label {
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 500;
}

.quick-spec-val {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--navy);
}

/* ── FAQ SECTION ── */
.faq-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 48px 60px 8px;
}

    .faq-section h2 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .faq-section h2::before {
            content: '';
            width: 3px;
            height: 20px;
            background: var(--orange);
            border-radius: 2px;
            flex-shrink: 0;
        }

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

    .faq-item:hover {
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform 0.25s;
    margin-left: 12px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.open .faq-question {
    border-bottom: 1px solid var(--border-light);
}

.faq-answer {
    display: none;
    padding: 14px 20px 18px;
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── RELATED AIRCRAFT ── */
.related-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 48px 60px 8px;
}

    .related-section h2 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .related-section h2::before {
            content: '';
            width: 3px;
            height: 20px;
            background: var(--orange);
            border-radius: 2px;
            flex-shrink: 0;
        }

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

    .related-card:hover {
        box-shadow: 0 8px 28px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }

.related-card-img {
    background: linear-gradient(135deg, #f0f1f5 0%, #e4e6ee 100%);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

    .related-card-img img {
        max-height: 70px;
        object-fit: contain;
        filter: drop-shadow(0 3px 8px rgba(0,0,0,0.08));
    }

.related-card-body {
    padding: 14px 16px;
}

.related-card-type {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.related-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 8px;
}

.related-card-stats {
    display: flex;
    gap: 16px;
}

.related-stat-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 600;
}

.related-stat-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 48px 60px 8px;
}

.testimonials-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .testimonials-title::before {
        content: '';
        width: 3px;
        height: 20px;
        background: var(--orange);
        border-radius: 2px;
        flex-shrink: 0;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

    .testimonial-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    }

.testimonial-stars {
    color: var(--orange);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.testimonial-role {
    font-size: 0.65rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.3;
}

.testimonial-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-pale);
    padding: 3px 8px;
    border-radius: 3px;
}

/* ── PRICING SECTION ── */
.pricing-section {
    background: linear-gradient(180deg, var(--offwhite) 0%, #eef0f8 100%);
    padding: 72px 60px 80px;
    margin-top: 48px;
}

.pricing-inner {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,99,26,0.1);
    border: 1px solid rgba(232,99,26,0.25);
    border-radius: 20px;
    padding: 5px 14px 5px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.pricing-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.pricing-inner h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    margin-bottom: 10px;
}

    .pricing-inner h2 span {
        color: var(--orange);
    }

.pricing-sub {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.plan-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.25s;
    position: relative;
}

    .plan-card:hover {
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }

    .plan-card.featured {
        background: var(--navy);
        border-color: var(--orange);
        box-shadow: 0 8px 32px rgba(232,99,26,0.15);
    }

.plan-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.plan-card.featured .plan-name {
    color: white;
}

.plan-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 2px;
}

    .plan-price sup {
        font-size: 1.4rem;
        vertical-align: super;
        font-weight: 700;
    }

.plan-card.featured .plan-price {
    color: var(--orange);
}

.plan-period {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 14px;
}

.plan-card.featured .plan-period {
    color: rgba(255,255,255,0.45);
}

.plan-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.plan-card.featured .plan-desc {
    color: rgba(255,255,255,0.55);
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 16px;
}

.plan-card.featured .plan-divider {
    background: rgba(255,255,255,0.12);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex: 1;
}

    .plan-features li {
        font-size: 0.78rem;
        color: var(--text);
        font-weight: 500;
        padding-left: 20px;
        position: relative;
        line-height: 1.5;
    }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--orange);
            font-weight: 800;
            font-size: 0.75rem;
        }

.plan-card.featured .plan-features li {
    color: rgba(255,255,255,0.75);
}

    .plan-card.featured .plan-features li::before {
        color: var(--orange-light);
    }

.plan-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    margin-top: auto;
}

.plan-cta-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}

    .plan-cta-outline:hover {
        border-color: var(--orange);
        color: var(--orange);
        background: var(--orange-pale);
    }

.plan-cta-orange {
    background: var(--orange);
    color: white;
    border: 1.5px solid var(--orange);
}

    .plan-cta-orange:hover {
        background: var(--orange-light);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232,99,26,0.35);
    }

.pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark); padding: 52px 0 28px;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  max-width: 1160px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 40px;
}
.footer-logo-img { height: 36px; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 230px; margin-bottom: 14px; }
.footer-member { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); font-weight: 700; margin-bottom: 4px; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange-light); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 18px 60px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between;
  font-size: 0.74rem; color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        z-index: 100;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li {
            list-style: none;
        }

        .nav-links a {
            display: block;
            padding: 12px 0;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .nav-links .btn-nav, .nav-links .btn-ghost-nav {
            text-align: center;
            margin-top: 8px;
            border-bottom: none;
        }
}

@media (max-width: 1060px) {
    nav {
        padding: 0 24px;
    }

    .breadcrumb {
        padding: 84px 24px 0;
    }

    .aircraft-hero {
        grid-template-columns: 1fr;
        padding: 24px 24px 0;
        gap: 24px;
    }

    .detail-wrap {
        grid-template-columns: 1fr;
        padding: 32px 24px 0;
    }

    .detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
        margin: 0 auto;
    }

    .testimonials-section {
        padding: 36px 24px 8px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .faq-section {
        padding: 36px 24px 8px;
    }

    .related-section {
        padding: 36px 24px 8px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-section {
        padding: 48px 24px 56px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 0 24px;
    }

    .footer-bottom {
        padding: 16px 24px 0;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .breadcrumb {
        padding: 78px 18px 0;
        font-size: 0.65rem;
    }

    .aircraft-hero {
        padding: 16px 18px 0;
    }

    .hero-thumb-wrap {
        min-height: 200px;
        padding: 24px;
    }

    .hero-name {
        font-size: 1.8rem;
    }

    .key-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .key-stat {
        padding: 10px 8px;
    }

    .key-stat-val {
        font-size: 1.2rem;
    }

    .budget-amount {
        font-size: 2.2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .detail-wrap {
        padding: 24px 18px 0;
    }

    .detail-sidebar {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .budget-table {
        font-size: 0.78rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .plan-card {
        padding: 24px 20px;
    }

    .plan-price {
        font-size: 2.6rem;
    }

    .pricing-section {
        padding: 40px 18px 48px;
    }

    .pricing-sub {
        font-size: 0.82rem;
    }

    .pricing-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .testimonials-section {
        padding: 32px 18px 8px;
    }

    .faq-section {
        padding: 32px 18px 8px;
    }

    .faq-question {
        font-size: 0.84rem;
        padding: 14px 16px;
    }

    .faq-answer {
        font-size: 0.8rem;
        padding: 12px 16px 14px;
    }

    .related-section {
        padding: 32px 18px 8px;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .pricing-inner h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 18px;
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo-img {
        margin: 0 auto 14px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        padding: 14px 18px 0;
        font-size: 0.65rem;
    }

    .demo-card {
        padding: 20px 18px;
    }

    .demo-card-title {
        font-size: 1.1rem;
    }

    .quick-spec-label {
        font-size: 0.7rem;
    }

    .quick-spec-val {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 14px;
        height: 58px;
    }

    .nav-logo img {
        height: 30px;
    }

    .hamburger span {
        width: 20px;
    }

    .nav-links {
        top: 58px;
        padding: 12px 14px 20px;
    }

    .breadcrumb {
        padding: 68px 14px 0;
        font-size: 0.6rem;
    }

    .aircraft-hero {
        padding: 12px 14px 0;
    }

    .hero-name {
        font-size: 1.5rem;
    }

    .hero-mfr {
        font-size: 0.6rem;
    }

    .hero-thumb-wrap {
        min-height: 160px;
        padding: 18px;
    }

    .hero-type-badge {
        font-size: 0.52rem;
        padding: 3px 7px;
    }

    .hero-gallery-badge {
        font-size: 0.55rem;
        padding: 5px 9px;
    }

    .key-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }

    .key-stat {
        padding: 8px 6px;
    }

    .key-stat-val {
        font-size: 1.05rem;
    }

    .key-stat-label {
        font-size: 0.52rem;
    }

    .budget-card {
        padding: 18px 16px;
    }

    .budget-title {
        font-size: 0.58rem;
    }

    .budget-amount {
        font-size: 1.9rem;
    }

    .budget-basis {
        font-size: 0.68rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .btn-outline {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .detail-wrap {
        padding: 20px 14px 0;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .spec-cell {
        padding: 12px 14px;
    }

    .spec-label {
        font-size: 0.55rem;
    }

    .spec-val {
        font-size: 1.05rem;
    }

    .spec-sub {
        font-size: 0.65rem;
    }

    .budget-table thead th {
        font-size: 0.6rem;
        padding: 10px 10px;
    }

    .budget-table tbody td {
        font-size: 0.76rem;
        padding: 9px 10px;
    }

    .description-text {
        font-size: 0.8rem;
        line-height: 1.7;
    }

    .demo-card {
        padding: 18px 14px;
    }

    .demo-card-title {
        font-size: 1.1rem;
    }

    .demo-card-text {
        font-size: 0.74rem;
    }

    .demo-card-contact {
        font-size: 0.65rem;
    }

    .quick-specs-header {
        font-size: 0.58rem;
        padding: 10px 14px;
    }

    .quick-spec-row {
        padding: 10px 14px;
    }

    .quick-spec-label {
        font-size: 0.68rem;
    }

    .quick-spec-val {
        font-size: 0.76rem;
    }

    .testimonials-section {
        padding: 24px 14px 4px;
    }

    .testimonials-title {
        font-size: 1.15rem;
    }

    .testimonial-text {
        font-size: 0.78rem;
    }

    .testimonial-name {
        font-size: 0.72rem;
    }

    .testimonial-role {
        font-size: 0.58rem;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .faq-section {
        padding: 24px 14px 4px;
    }

        .faq-section h2 {
            font-size: 1.15rem;
        }

    .faq-question {
        font-size: 0.78rem;
        padding: 12px 14px;
    }

    .faq-answer {
        font-size: 0.76rem;
        padding: 10px 14px 12px;
    }

    .related-section {
        padding: 24px 14px 4px;
    }

        .related-section h2 {
            font-size: 1.15rem;
        }

    .related-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .related-card-name {
        font-size: 1rem;
    }

    .pricing-section {
        padding: 32px 14px 40px;
    }

    .pricing-inner h2 {
        font-size: 1.5rem;
    }

    .pricing-sub {
        font-size: 0.76rem;
        margin-bottom: 24px;
    }

    .plan-card {
        padding: 20px 16px;
    }

    .plan-name {
        font-size: 1.15rem;
    }

    .plan-price {
        font-size: 2.2rem;
    }

        .plan-price sup {
            font-size: 1rem;
        }

    .plan-period {
        font-size: 0.68rem;
    }

    .plan-desc {
        font-size: 0.76rem;
    }

    .plan-features li {
        font-size: 0.74rem;
    }

    .plan-cta {
        padding: 10px 16px;
        font-size: 0.78rem;
    }

    .pricing-trust-item {
        font-size: 0.65rem;
    }

    .footer-grid {
        padding: 0 14px;
        gap: 20px;
    }

    .footer-tagline {
        font-size: 0.72rem;
    }

    .footer-bottom {
        padding: 12px 14px 0;
        font-size: 0.6rem;
    }
}
