/* ============================================================
   SIMPLIFY — COMPONENT STYLES
   ============================================================ */

/* ── AIRCRAFT CARDS ──────────────────────────────────────────── */
.aircraft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}
.aircraft-card {
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-md);
    display: flex;
    flex-direction: column;
}
.aircraft-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--blue);
}
.aircraft-card__image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--light-gray);
    overflow: hidden;
}
.aircraft-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-md);
}
.aircraft-card:hover .aircraft-card__image img {
    transform: scale(1.04);
}
.aircraft-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
}
.aircraft-card__body {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.aircraft-card__name {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}
.aircraft-card__copy {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: var(--space-lg);
}
.aircraft-card__meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--light-gray);
}
.aircraft-card__meta-item {
    text-align: center;
    flex: 1;
}
.aircraft-card__meta-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
}
.aircraft-card__meta-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── EMPTY ICON CONTAINERS (emoji removed) ─────────────── */
.feature-list__icon:empty,
.config-option__icon:empty,
.mission-card__icon:empty {
    display: none;
}
/* Card/grid icon divs with only whitespace — collapse them */
.card__body > div:first-child:empty,
.card__body > div[style*="font-size: 2rem"]:empty,
.card__body > div[style*="font-size: 2.5rem"]:empty,
.card__body > div[style*="font-size: 3rem"]:empty {
    display: none;
}

/* ── MISSION CARDS ───────────────────────────────────────── */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}
.mission-card {
    padding: var(--space-xl);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-md);
}
.mission-card:hover::before { transform: scaleX(1); }
.mission-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.mission-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: block;
}
.mission-card__title {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}
.mission-card__body {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ── PHILOSOPHY PILLARS ──────────────────────────────────────── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.pillar {
    padding: var(--space-2xl) var(--space-xl);
    border-right: 1px solid var(--mid-gray);
    text-align: center;
    transition: background var(--transition);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--blue-light); }
.pillar__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--mid-gray);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-md);
    transition: color var(--transition);
}
.pillar:hover .pillar__number { color: var(--blue); }
.pillar__title {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}
.pillar__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── PRODUCTION STEPS ────────────────────────────────────────── */
.production-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}
.production-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--blue), var(--accent));
    z-index: 0;
}
.production-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.production-step__num {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition);
}
.production-step:hover .production-step__num {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.1);
}
.production-step__title {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}
.production-step__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── CONFIGURATOR ────────────────────────────────────────────── */
.configurator {
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.configurator__progress {
    background: var(--navy);
    padding: var(--space-xl);
    display: flex;
    gap: 0;
}
.config-step-indicator {
    flex: 1;
    text-align: center;
    position: relative;
}
.config-step-indicator::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: rgba(255,255,255,0.15);
}
.config-step-indicator:last-child::after { display: none; }
.config-step-indicator.active::after { background: var(--blue); }
.config-step-indicator__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    transition: all var(--transition);
}
.config-step-indicator.active .config-step-indicator__dot,
.config-step-indicator.done .config-step-indicator__dot {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}
.config-step-indicator__label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.config-step-indicator.active .config-step-indicator__label { color: var(--white); }

.configurator__body { padding: var(--space-2xl); }
.configurator__step { display: none; }
.configurator__step.active { display: block; }
.configurator__step-title {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}
.configurator__step-desc {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.config-option {
    border: 2px solid var(--mid-gray);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
}
.config-option:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}
.config-option.selected {
    border-color: var(--blue);
    background: var(--blue-light);
}
.config-option.selected::after {
    content: '✓';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 22px;
    height: 22px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.config-option__icon { font-size: 2rem; margin-bottom: var(--space-md); display: block; }
.config-option__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}
.config-option__desc { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.configurator__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--light-gray);
}

/* ── CONFIG DETAIL DRAWER ────────────────────────────────────── */
.config-detail-drawer {
    background: var(--off-white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-md);
    padding: 0 var(--space-xl);
    margin-top: var(--space-lg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.config-detail-drawer.open {
    max-height: 400px;
    opacity: 1;
    padding: var(--space-xl);
}
.config-detail-drawer__title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--blue);
    display: inline-block;
}
.config-detail-drawer__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs) var(--space-xl);
    margin: 0;
    padding: 0;
    list-style: none;
}
.config-detail-drawer__list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--light-gray);
}
.config-detail-drawer__list li::before {
    content: '\2713';
    color: var(--blue);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.compare-table th {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    white-space: nowrap;
}
.compare-table th:first-child { background: var(--navy-mid); }
.compare-table td {
    padding: var(--space-md) var(--space-xl);
    border-bottom: 1px solid var(--light-gray);
    vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--off-white);
    font-weight: 700;
}
.compare-table tr:hover td { background: var(--blue-light); }
.compare-table tr:hover td:first-child { background: var(--off-white); }

/* Dark background context — navy sections */
.section--navy .compare-table tr:hover td,
.section--navy-mid .compare-table tr:hover td { background: rgba(255, 255, 255, 0.08); }
.section--navy .compare-table tr:hover td:first-child,
.section--navy-mid .compare-table tr:hover td:first-child { background: rgba(255, 255, 255, 0.04); }
.compare-check { color: var(--blue); font-size: 1.1rem; }
.compare-dash  { color: var(--mid-gray); }

/* ── NEWSROOM ────────────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}
.news-card {
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.news-card__image {
    aspect-ratio: 16/9;
    background: var(--light-gray);
    overflow: hidden;
}
.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-md);
}
.news-card:hover .news-card__image img { transform: scale(1.04); }
.news-card__body {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card__category {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--space-sm);
}
.news-card__title {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    flex: 1;
    line-height: 1.3;
}
.news-card__date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* ── MODAL ───────────────────────────────────────────────────── */
.modal, .exit-popup {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}
.modal[hidden], .exit-popup[hidden] { display: none; }
.modal__backdrop, .exit-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,0.75);
    backdrop-filter: blur(4px);
}
.modal__box, .exit-popup__box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    max-width: 520px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close, .exit-popup__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-muted);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.modal__close:hover, .exit-popup__close:hover {
    background: var(--mid-gray);
    color: var(--text-dark);
}
.modal__eyebrow, .exit-popup__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--space-sm);
}
.modal__title, .exit-popup__title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
}
.modal__body, .exit-popup__body {
    color: var(--text-body);
    margin-bottom: var(--space-xl);
}
.modal__actions, .exit-popup__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ── HERITAGE TIMELINE ───────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: var(--space-3xl);
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--accent));
}
.timeline-item {
    position: relative;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--light-gray);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-3xl) - 5px);
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue);
}
.timeline-item__year {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--space-sm);
}
.timeline-item__title {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}
.timeline-item__body { color: var(--text-body); margin: 0; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
    background: var(--navy);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,102,204,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(230,57,70,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: var(--space-2xl); font-size: 1.1rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.65);
}
.footer-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-4xl) var(--space-xl) var(--space-3xl);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.footer-logo img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
.footer-logo__mark {
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}
.footer-logo__text strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    display: block;
}
.footer-logo__text em {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-bright);
}
.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-sm);
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}
.footer-partner {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: color var(--transition);
}
.footer-partner:hover { color: var(--white); }
.footer-socials {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.footer-social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}
.footer-social:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-col__heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-lg);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-legal {
    display: flex;
    gap: var(--space-lg);
}
.footer-legal a {
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   MERLIN LITE — PAGE SPECIFIC COMPONENTS
   ============================================================ */

/* ── AIRCRAFT HERO ────────────────────────────────────────── */
.aircraft-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.aircraft-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.aircraft-hero__badge {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 700;
}

.badge--ultralight {
    background: rgba(26, 111, 196, 0.2);
    color: #5ba3f5;
    border: 1px solid rgba(26, 111, 196, 0.4);
}

.badge--glider {
    background: rgba(232, 57, 42, 0.15);
    color: #f07060;
    border: 1px solid rgba(232, 57, 42, 0.35);
}

.aircraft-hero__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.aircraft-hero__name .text--accent {
    color: #e8392a;
}

.aircraft-hero__tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.aircraft-hero__desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin-bottom: 2.5rem;
}

/* ── HERO STATS ───────────────────────────────────────────── */
.aircraft-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    min-width: 120px;
}

.stat-pill__val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-pill__label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.aircraft-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── REASONS GRID ─────────────────────────────────────────── */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.reason-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.reason-card__num {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #e8392a;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.reason-card__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0a0e1a;
    margin-bottom: 0.75rem;
}

.reason-card__body {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a5568;
}

/* ── SPECS LAYOUT ─────────────────────────────────────────── */
.specs-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.specs-group__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e8392a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-list {
    margin: 0;
    padding: 0;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.specs-row dt {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    flex: 1;
}

.specs-row dd {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-align: right;
    margin: 0;
}

/* ── TWO COL ──────────────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col--reversed {
    direction: rtl;
}

.two-col--reversed > * {
    direction: ltr;
}

.two-col__text .section-label {
    display: block;
    margin-bottom: 0.75rem;
}

.two-col__text h2 {
    margin-bottom: 1.25rem;
}

.two-col__text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 1rem;
}

.two-col__visual {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

/* ── PANEL GRID ───────────────────────────────────────────── */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.panel-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #2d3748;
    line-height: 1.5;
}

.panel-item__icon {
    font-size: 1.4rem;
}

/* ── FEATURES COLS ────────────────────────────────────────── */
.features-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #2d3748;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e8edf5;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a6fc4;
    font-weight: 700;
}

/* ── PRICING LAYOUT ───────────────────────────────────────── */
.pricing-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
}

.pricing-card--featured {
    background: rgba(26, 111, 196, 0.12);
    border-color: rgba(26, 111, 196, 0.4);
}

.pricing-card__label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5ba3f5;
    margin-bottom: 0.5rem;
}

.pricing-card__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #e8392a;
    margin-bottom: 1rem;
    line-height: 1;
}

.pricing-card__desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
}

/* ── OPTIONS TABLE ────────────────────────────────────────── */
.options-table-wrap {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.options-table__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.options-table {
    width: 100%;
    border-collapse: collapse;
}

.options-table th {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.options-table td {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.options-table td:last-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    text-align: right;
}

/* ── PRICING NOTE ─────────────────────────────────────────── */
.pricing-note {
    background: rgba(232, 57, 42, 0.1);
    border: 1px solid rgba(232, 57, 42, 0.3);
    border-radius: 10px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
}

.pricing-note h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f07060;
    margin-bottom: 0.5rem;
}

.pricing-note p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.pricing-note__total {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    margin-top: 0.5rem !important;
}

/* ── PAYMENT STEPS ────────────────────────────────────────── */
.pricing-payment {
    margin-top: 2rem;
}

.pricing-payment h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.payment-steps {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    flex: 1;
    min-width: 200px;
}

.payment-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a6fc4;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-step div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.payment-step strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
}

.payment-step span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ── REG GRID ─────────────────────────────────────────────── */
.reg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.reg-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.reg-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reg-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0a0e1a;
    margin-bottom: 0.75rem;
}

.reg-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.7;
    color: #4a5568;
}

.reg-note {
    margin-top: 2.5rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4a5568;
    font-style: italic;
}

/* ── CTA BLOCK ────────────────────────────────────────────── */
.section--cta {
    background: linear-gradient(135deg, #0a0e1a 0%, #0d1f3c 100%);
}

.cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-block h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-block p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-block__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── IMG PLACEHOLDER ──────────────────────────────────────── */
.img-placeholder {
    background: linear-gradient(135deg, #1a2540 0%, #0d1628 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.img-placeholder__label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    padding: 1rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .specs-layout { grid-template-columns: 1fr; }
    .panel-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-layout { grid-template-columns: 1fr; }
    .reg-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-col--reversed { direction: ltr; }
}

@media (max-width: 640px) {
    .reasons-grid { grid-template-columns: 1fr; }
    .features-cols { grid-template-columns: 1fr; }
    .panel-grid { grid-template-columns: 1fr; }
    .aircraft-hero__stats { gap: 0.75rem; }
    .stat-pill { min-width: 100px; }
    .payment-steps { flex-direction: column; }
    .cta-block__actions { flex-direction: column; align-items: center; }
}

.production-status-card {
    background: #0a0e1a;
    border-radius: 12px;
    padding: 2.5rem;
    color: #ffffff;
}
.production-status-card h3 {
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}
.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.status-row__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.status-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.status-footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
}
.step-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
}

/* ── BUYER'S GUIDE LEAD MAGNET ────────────────────────────── */
.buyers-guide__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}
.buyers-guide__highlights li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.buyers-guide__highlights li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.buyers-guide__form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}
.buyers-guide__form-title {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: var(--space-xl);
    text-align: center;
}
.buyers-guide__field {
    margin-bottom: var(--space-lg);
}
.buyers-guide__field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}
.buyers-guide__field input,
.buyers-guide__field select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color var(--transition);
}
.buyers-guide__field input:focus,
.buyers-guide__field select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 111, 196, 0.15);
}
.buyers-guide__disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ── CERTIFICATION BADGE ─────────────────────────────────── */
.cert-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--blue);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    background: var(--blue-light);
    transition: all var(--transition);
}
.cert-badge:hover {
    background: var(--blue);
    color: var(--white);
}
.cert-badge--gold {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-dark, #8b6914);
}
.cert-badge--gold:hover {
    background: var(--gold);
    color: var(--navy);
}
.cert-badge--red {
    border-color: var(--accent);
    background: rgba(232, 57, 42, 0.06);
    color: var(--accent);
}
.cert-badge--red:hover {
    background: var(--accent);
    color: var(--white);
}

/* ── COOKIE CONSENT BANNER ────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    z-index: 9500;
    padding: var(--space-lg) var(--space-xl);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__inner {
    max-width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}
.cookie-consent__text {
    font-size: 0.85rem;
    margin: 0;
    flex: 1;
    min-width: 280px;
}
.cookie-consent__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}
