/* ============================================
   MALOY AIRCRAFT - LANDING PAGE STYLES
   Dark Cinematic Theme | Top Gun Aesthetic
   ============================================ */

:root {
    /* Color Palette - Maloy Aircraft Brand */
    /* Navy Blue #013154 + Red #DC1820 - American Aviation */
    --color-navy: #013154;
    --color-navy-dark: #012440;
    --color-navy-light: #1a4a6e;
    --color-red: #DC1820;
    --color-red-hover: #b81419;
    --color-red-light: #e84048;
    
    /* Backgrounds */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-bg-dark: #013154;
    
    /* Text */
    --color-text-primary: #013154;
    --color-text-secondary: #475569;
    --color-text-muted: #94a3b8;
    --color-text-on-dark: #ffffff;
    --color-text-on-dark-secondary: #cbd5e1;
    
    /* Accents & Borders */
    --color-accent: #DC1820;
    --color-accent-hover: #b81419;
    --color-border: rgba(1, 49, 84, 0.1);
    --color-border-dark: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition-medium), padding var(--transition-medium), box-shadow var(--transition-medium);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(1, 49, 84, 0.08);
}

/* Dark mode nav for dark sections */
.nav.nav--dark {
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav.nav--dark .nav__logo {
    color: #ffffff;
}

.nav.nav--dark .nav__link {
    color: rgba(255, 255, 255, 0.8);
}

.nav.nav--dark .nav__link:hover {
    color: #ffffff;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--color-navy);
}

.nav__logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-navy);
}

.nav__cta {
    padding: 12px 28px;
    background: var(--color-red);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.nav__cta:hover {
    background: var(--color-red-hover);
    transform: translateY(-1px);
}

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav__mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 70% 40%, rgba(220, 24, 32, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(1, 49, 84, 0.1) 0%, transparent 50%);
}

.hero__image-prompt {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 40px;
    background: rgba(1, 49, 84, 0.03);
    border: 1px dashed rgba(1, 49, 84, 0.2);
    border-radius: 12px;
    text-align: center;
}

.hero__image-prompt-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-red);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
}

.hero__image-prompt-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-style: italic;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(255, 255, 255, 0.3) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(220, 24, 32, 0.08);
    border: 1px solid rgba(220, 24, 32, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.hero__title span {
    display: block;
}

.hero__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn--primary {
    background: var(--color-red);
    color: #ffffff;
}

.btn--primary:hover {
    background: var(--color-red-hover);
    box-shadow: 0 10px 40px rgba(220, 24, 32, 0.25);
}

.btn--secondary {
    background: transparent;
    color: var(--color-navy);
    border: 1px solid rgba(1, 49, 84, 0.2);
}

.btn--secondary:hover {
    background: rgba(1, 49, 84, 0.05);
    border-color: rgba(1, 49, 84, 0.3);
}

.btn__icon {
    width: 20px;
    height: 20px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-navy), transparent);
}

/* ============================================
   PROBLEM/STAKES SECTION
   ============================================ */
.problem {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
    overflow: hidden;
}

.problem__bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

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

.problem__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--color-red-light);
}

.problem__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--color-text-on-dark);
}

.problem__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-on-dark-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

.problem__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all var(--transition-medium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(220, 24, 32, 0.4);
    transform: translateY(-4px);
}

.stat-card__number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-text-on-dark);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-card__label {
    font-size: 1rem;
    color: var(--color-text-on-dark-secondary);
    line-height: 1.5;
}

.stat-card__source {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ============================================
   WHY WE BUILT IT SECTION
   ============================================ */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

.why-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: 24px;
}

.why-section__text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-section__image {
    background: var(--color-bg-secondary);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.why-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* ============================================
   TRAINING FLOW SECTION
   ============================================ */
.training-flow {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.training-flow__header {
    text-align: center;
    margin-bottom: 60px;
}

.training-flow__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-navy);
}

.training-flow__stages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
}

.training-flow__stages::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-navy-light);
    z-index: 0;
}

/* Animated progress line */
.training-flow__line {
    position: absolute;
    top: 24px;
    left: 10%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-navy));
    z-index: 1;
    transition: width 0.1s ease;
    max-width: 80%;
}

.flow-stage {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.flow-stage.active {
    transform: translateY(-4px);
}

.flow-stage.active .flow-stage__number {
    background: var(--color-red);
    box-shadow: 0 4px 20px rgba(220, 24, 32, 0.4);
}

.flow-stage__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-navy);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.flow-stage__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.flow-stage__text {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.flow-stage__connector {
    display: none;
}

@media (max-width: 1024px) {
    .training-flow__stages {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 24px;
    }

    .training-flow__stages::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .training-flow__stages {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

.comparison__header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-navy);
}

.comparison__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-card {
    padding: 48px;
    border-radius: 16px;
}

.comparison-card--old {
    background: var(--color-bg-secondary);
    border: 1px solid #e0e0e0;
}

.comparison-card--new {
    background: var(--color-navy);
    color: white;
}

.comparison-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.comparison-card--old .comparison-card__title {
    color: var(--color-text-secondary);
}

.comparison-card__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.9;
}

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

.comparison-card__list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
}

.comparison-card--old .comparison-card__list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--color-text-secondary);
    font-weight: 700;
}

.comparison-card--new .comparison-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: white;
    font-weight: 700;
}

/* ============================================
   ICP SECTION
   ============================================ */
.icp-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    text-align: center;
}

.icp-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.icp-section .section-label {
    color: rgba(255,255,255,0.7);
}

.icp-section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.icp-section__text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

.icp-section__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.icp-section .btn--secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.icp-section .btn--secondary:hover {
    background: white;
    color: var(--color-navy);
}

/* ============================================
   SCROLL-DRIVEN AIRCRAFT REVEAL
   ============================================ */
.scroll-reveal {
    position: relative;
    height: 400vh;
    background: #0a0a0a;
}

.scroll-reveal__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-reveal__content {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 32px 48px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.scroll-reveal__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}

.scroll-reveal__tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.scroll-reveal__tagline strong {
    color: var(--color-red);
    font-weight: 600;
}

.scroll-reveal__canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
}

.scroll-reveal__canvas.visible {
    opacity: 1;
}

.scroll-reveal__specs {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 20px 32px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: max-content;
    max-width: 90vw;
}

.scroll-reveal__specs.visible {
    opacity: 1;
}

.scroll-reveal__cta {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scroll-reveal__cta.visible {
    opacity: 1;
}

.scroll-reveal__progress {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-reveal.active .scroll-reveal__progress {
    opacity: 1;
}

.scroll-reveal__progress-bar {
    width: 100%;
    height: 0%;
    background: var(--color-red);
    border-radius: 3px;
    transition: height 0.1s ease;
}

.scroll-reveal__specs .spec-item {
    text-align: center;
    padding: 8px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-reveal__specs .spec-item:last-child {
    border-right: none;
}

.scroll-reveal__specs .spec-item__value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.scroll-reveal__specs .spec-item__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .scroll-reveal__specs {
        grid-template-columns: repeat(3, 1fr);
        bottom: 140px;
    }
    
    .scroll-reveal__specs .spec-item:nth-child(3) {
        border-right: none;
    }
    
    .scroll-reveal {
        height: 300vh;
    }
    
    .scroll-reveal__content {
        top: 90px;
    }
}

@media (max-width: 600px) {
    .scroll-reveal {
        height: 200vh;
    }
    
    .scroll-reveal__sticky {
        justify-content: flex-start;
        padding: 60px 16px 24px;
    }
    
    .scroll-reveal__content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 16px 20px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .scroll-reveal__title {
        font-size: 1.5rem;
    }
    
    .scroll-reveal__tagline {
        font-size: 0.85rem;
    }
    
    .scroll-reveal__canvas {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .scroll-reveal__specs {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 16px;
        gap: 4px;
        width: 100%;
        max-width: none;
        margin-top: auto;
    }
    
    .scroll-reveal__specs .spec-item {
        border-right: none;
        padding: 6px 4px;
    }
    
    .scroll-reveal__specs .spec-item__value {
        font-size: 0.85rem;
    }
    
    .scroll-reveal__specs .spec-item__label {
        font-size: 0.5rem;
    }
    
    .scroll-reveal__cta {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 12px;
        font-size: 0.7rem;
        padding: 12px 20px;
    }
    
    .scroll-reveal__progress {
        display: none;
    }
    
    /* Disable 3D tilt on touch devices */
    .pillar-card {
        transform: none !important;
    }
    
    /* Training flow line - hide on mobile */
    .training-flow__line {
        display: none;
    }
    
    .flow-stage.active {
        transform: none;
    }
}

/* ============================================
   VIDEO EXPLAINER SECTION
   ============================================ */
.video-section {
    background: #0a0a0a;
    padding: 0 0 var(--section-padding);
}

.video-section__wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.video-section__player {
    width: 100%;
    display: block;
    background: #000;
}

/* ============================================
   AIRCRAFT REVEAL SECTION - CINEMATIC
   ============================================ */
.aircraft-reveal {
    position: relative;
    padding: 100px 0 80px;
    background: #0a0a0a;
    overflow: hidden;
}

.aircraft-reveal__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none; /* Hidden - pure black background */
}

.aircraft-reveal__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.aircraft-reveal__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 60%,
        rgba(220, 24, 32, 0.08) 0%,
        transparent 50%
    );
}

.aircraft-reveal__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.aircraft-reveal__title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}

.aircraft-reveal__tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.aircraft-reveal__tagline strong {
    font-weight: 600;
    color: #ffffff;
}

/* Video Section */
.aircraft-reveal__video {
    margin-bottom: 32px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-medium);
}

.video-placeholder:hover {
    border-color: rgba(220, 24, 32, 0.5);
    transform: scale(1.01);
}

.video-placeholder__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity var(--transition-medium);
}

.video-placeholder:hover .video-placeholder__img {
    opacity: 0.5;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--color-red);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 60px rgba(220, 24, 32, 0.4);
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    color: #fff;
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-red-hover);
    box-shadow: 0 15px 80px rgba(220, 24, 32, 0.5);
}

.video-placeholder__text {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Specs Bar */
.aircraft-reveal__specs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.spec-item {
    text-align: center;
    padding: 12px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-right: none;
}

.spec-item__value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.spec-item__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn--large {
    padding: 20px 48px;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .aircraft-reveal__specs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spec-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .aircraft-reveal__specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spec-item {
        border-right: none;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .video-play-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   SOLUTION SECTION (legacy - keep for now)
   ============================================ */
.solution {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

.solution__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution__image {
    position: relative;
}

.solution__img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.solution__image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(220, 24, 32, 0.08), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.solution__content {
    max-width: 520px;
}

.solution__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--color-navy);
}

.solution__text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.solution__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.feature-pill:hover {
    border-color: var(--color-red);
    background: rgba(220, 24, 32, 0.05);
}

.feature-pill__icon {
    width: 16px;
    height: 16px;
    color: var(--color-red);
}

/* ============================================
   THREE PILLARS SECTION
   ============================================ */
.pillars {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.pillars__header {
    text-align: center;
    margin-bottom: 64px;
}

.pillars__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    position: relative;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.15s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.pillar-card:hover {
    border-color: rgba(220, 24, 32, 0.3);
    box-shadow: 0 30px 60px rgba(1, 49, 84, 0.2);
}

.pillar-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.pillar-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar-card__content {
    padding: 32px;
}

.pillar-card__number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-red);
    margin-bottom: 12px;
}

.pillar-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-navy);
}

.pillar-card__text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.pillar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-red);
    transition: gap var(--transition-fast);
}

.pillar-card__link:hover {
    gap: 12px;
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.technology {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
    overflow: hidden;
}

.technology__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.technology__image {
    position: relative;
}

.technology__image-placeholder {
    aspect-ratio: 16/10;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.technology__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.technology__callouts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-navy);
    box-shadow: 0 4px 20px rgba(1, 49, 84, 0.1);
}

.callout--1 { top: 15%; left: 10%; }
.callout--2 { top: 40%; right: 5%; }
.callout--3 { bottom: 20%; left: 15%; }

.callout__dot {
    width: 8px;
    height: 8px;
    background: var(--color-red);
    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.2); }
}

.technology__content {
    max-width: 480px;
}

.technology__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--color-navy);
}

.technology__text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.technology__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.technology__list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.technology__list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-red);
}

.technology__list-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.technology__list-text strong {
    color: var(--color-navy);
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.social-proof__header {
    text-align: center;
    margin-bottom: 64px;
}

.social-proof__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 64px;
    text-align: center;
}

.testimonial__quote {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial__quote::before {
    content: '"';
    display: block;
    font-size: 4rem;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 16px;
    font-style: normal;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial__avatar {
    width: 64px;
    height: 64px;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    border: 2px solid var(--color-border);
}

.testimonial__avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.testimonial__info {
    text-align: left;
}

.testimonial__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-navy);
}

.testimonial__title {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.logo-placeholder {
    padding: 16px 32px;
    background: var(--color-bg-primary);
    border: 1px dashed var(--color-border);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

.team__header {
    text-align: center;
    margin-bottom: 64px;
}

.team__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.team__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.team-card {
    background: var(--color-bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(1, 49, 84, 0.12);
}

.team-card__image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__content {
    padding: 24px;
}

.team-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-red);
    margin-bottom: 8px;
}

.team-card__credentials {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.team-card__bio {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.team__advisors {
    margin-bottom: 64px;
}

.team__advisors-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.team__advisors-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.advisor-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
    min-width: 280px;
}

.advisor-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.advisor-card__role {
    font-size: 0.875rem;
    color: var(--color-navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.advisor-card__credentials {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.team__stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.team-stat {
    text-align: center;
}

.team-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 8px;
}

.team-stat__label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

.timeline__header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

.timeline__track {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline__track::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-border));
}

.timeline__item {
    position: relative;
    text-align: center;
    flex: 1;
}

.timeline__dot {
    width: 20px;
    height: 20px;
    background: var(--color-bg-primary);
    border: 3px solid var(--color-red);
    border-radius: 50%;
    margin: 30px auto 24px;
    position: relative;
    z-index: 1;
}

.timeline__item--active .timeline__dot {
    background: var(--color-red);
    box-shadow: 0 0 20px rgba(220, 24, 32, 0.4);
}

.timeline__year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 8px;
}

.timeline__label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    max-width: 150px;
    margin: 0 auto;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-bg-dark), var(--color-navy-light));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(220, 24, 32, 0.1), transparent 70%);
}

.cta-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-section__content {
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--color-text-on-dark);
}

.cta-section__text {
    font-size: 1.125rem;
    color: var(--color-text-on-dark-secondary);
    line-height: 1.8;
}

.cta-form {
    position: relative;
    z-index: 1;
    background: var(--color-bg-primary);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-form__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-navy);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-red);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.cta-form__submit {
    width: 100%;
    margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border-dark);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--color-text-on-dark);
}

.footer__logo .nav__logo-icon {
    width: 48px;
    height: 48px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--color-text-on-dark-secondary);
    line-height: 1.7;
}

.footer__column-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--color-text-on-dark);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 0.9rem;
    color: var(--color-text-on-dark-secondary);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-text-on-dark);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--color-border-dark);
}

.footer__copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-dark);
    border-radius: 8px;
    color: var(--color-text-on-dark-secondary);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--color-red);
    color: #ffffff;
    border-color: var(--color-red);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   IMAGE PROMPT BOX (Placeholder Style)
   ============================================ */
.image-prompt-box {
    background: rgba(1, 49, 84, 0.03);
    border: 1px dashed rgba(1, 49, 84, 0.2);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.image-prompt-box--dark {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.image-prompt-box__label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-red);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 12px;
}

.image-prompt-box__text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-style: italic;
}

.image-prompt-box--dark .image-prompt-box__text {
    color: var(--color-text-on-dark-secondary);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .solution__grid,
    .technology__grid,
    .cta-section__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .why-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .team__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team__advisors-grid {
        flex-direction: column;
        align-items: center;
    }

    .team__stats {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__cta {
        display: none;
    }

    .nav__mobile-toggle {
        display: flex;
    }

    .hero__content {
        padding-top: 120px;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

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

    .team__advisors-grid {
        flex-direction: column;
        align-items: center;
    }

    .advisor-card {
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }

    .team__stats {
        flex-direction: column;
        gap: 24px;
    }

    .comparison-card {
        padding: 32px;
    }

    .timeline__track {
        flex-direction: column;
        gap: 40px;
    }

    .timeline__track::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
