/* ========== VOLVO-INSPIRED THEME — MAS ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[hidden] { display: none !important; }

:root {
    --primary: #141414;
    --primary-light: #1a1a1a;
    --accent: #c8102e;
    --accent-hover: #a00d24;
    --text: #141414;
    --text-secondary: #555;
    --text-muted: #888;
    --border: #e8e8e8;
    --bg: #ffffff;
    --bg-warm: #fafaf8;
    --bg-cool: #f5f5f3;
    --bg-dark: #141414;
    --bg-dark-2: #1c1c1c;
    --blue: #1d4e89;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0, 0, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }

.text-red { color: var(--accent); }
.text-blue { color: var(--blue); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 0;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border: 2px solid transparent;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--bg);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--bg);
    color: var(--primary);
    border-color: var(--bg);
}

.btn-full { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

/* Logo image in navbar — no frame/background, just the logo itself, 20% bigger
   than before (76px -> 91px). Fixed size in every navbar state so it stays
   perfectly stable while scrolling. */
.nav-logo-img {
    height: 91px;
    width: auto;
    display: block;
    border-radius: 10px;
}

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

.nav-links a {
    padding: 8px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--bg); }
.navbar:not(.scrolled) .nav-links a::after { background: var(--bg); }

.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; }

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg) !important;
    padding: 10px 24px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border: none !important;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--accent-hover) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--primary);
    transition: all 0.3s var(--ease);
}

.navbar:not(.scrolled) .nav-toggle span { background: var(--bg); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-dark);
    background-image: url('assets/hero-hangar.jpg');
    background-size: cover;
    background-position: center 40%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,20,20,0.25) 0%, rgba(20,20,20,0.55) 100%);
    z-index: 2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(200,16,46,0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(29,78,137,0.05) 0%, transparent 60%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15,15,30,0.62) 0%, rgba(20,20,20,0.42) 50%, rgba(20,20,30,0.58) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 105px 32px 48px;
    max-width: 800px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-accent {
    font-weight: 700;
    position: relative;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 300;
    color: var(--bg);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 6px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.hero-tagline {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(20,20,20,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.stat {
    text-align: left;
    flex: 1;
    padding: 32px 32px 32px 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.stat:last-child { border-right: none; }
.stat:first-child { padding-left: 0; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 200;
    color: var(--bg);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.hero-scroll {
    display: none;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* ========== SECTIONS ========== */
.section {
    padding: 48px 0;
    position: relative;
}

.section-header {
    text-align: left;
    margin-bottom: 48px;
    max-width: 640px;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 em {
    font-style: normal;
    font-weight: 700;
    color: var(--accent);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.section-desc strong { color: var(--text); font-weight: 600; }

/* ========== ABOUT ========== */
.about {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.about-card {
    background: var(--bg);
    padding: 48px 32px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    background: var(--bg-warm);
}

.about-card-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 100;
    color: rgba(200,16,46,0.15);
    margin-bottom: 20px;
    line-height: 1;
    transition: color 0.4s var(--ease);
}

.about-card:hover .about-card-number {
    color: rgba(200,16,46,0.6);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* About photo strip */
.about-photo-strip {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 48px;
}

.about-photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    transition: transform 0.8s var(--ease);
}

.about-photo-strip:hover img {
    transform: scale(1.02);
}

.about-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, transparent 100%);
    padding: 48px 40px 28px;
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Section photo strip — shared pattern */
.section-photo-strip {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-top: 48px;
}

.section-photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease);
    filter: brightness(0.88);
}

.section-photo-strip:hover img {
    transform: scale(1.02);
}

.section-photo-strip-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.7) 0%, transparent 100%);
    padding: 40px 40px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ========== CERTIFICATIONS ========== */
.certifications {
    background: var(--bg-warm);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.cert-card {
    padding: 40px 24px 36px;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    transition: all 0.4s var(--ease);
    text-align: center;
    background: var(--bg);
}

.cert-card:hover {
    border-top-color: var(--accent);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}

.cert-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    color: var(--primary);
    background: rgba(20,20,20,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: all 0.4s var(--ease);
}

.cert-card:hover .cert-icon {
    background: rgba(200,16,46,0.08);
    color: var(--accent);
    transform: scale(1.08);
}

.cert-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

.cert-badge-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.cert-badge-item:hover {
    border-color: var(--primary);
}

.badge-label {
    background: var(--primary);
    color: var(--bg);
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* ========== FLEETS ========== */
.fleets {
    background: var(--bg);
}

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

.fleet-card {
    background: var(--bg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}

.fleet-card-featured {
    border-color: var(--primary);
}

.fleet-card-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Fleet card header with image */
.fleet-card-header {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background: var(--bg-dark);
}

.fleet-aircraft-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease);
}

.fleet-card:hover .fleet-aircraft-img {
    transform: scale(1.06);
}

.fleet-card-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, rgba(20,20,20,0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    gap: 6px;
    z-index: 2;
}

.fleet-card-header-overlay--dark {
    background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.2) 100%);
}

.fleet-badge {
    background: var(--accent);
    color: var(--bg);
    padding: 4px 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fleet-badge--light {
    background: rgba(255,255,255,0.15);
    color: var(--bg);
    border: 1px solid rgba(255,255,255,0.3);
}

.fleet-type {
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fleet-type--light {
    color: rgba(255,255,255,0.5);
}

.fleet-card-body {
    padding: 32px;
}

.fleet-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.fleet-models {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.02em;
}

.fleet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fleet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

.fleet-list li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 1px;
    margin-top: 10px;
    background: var(--accent);
}

/* ========== SERVICES ========== */
.services {
    background: var(--bg-warm);
}

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

.service-card {
    padding: 40px 32px;
    border-left: 3px solid var(--border);
    transition: all 0.4s var(--ease);
    background: transparent;
    border-radius: 0;
}

.service-card:hover {
    border-left-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    transform: translateX(4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(20,20,20,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    opacity: 0.75;
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
    opacity: 1;
    color: var(--accent);
    background: rgba(200,16,46,0.08);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ========== WORKSHOPS ========== */
.workshops {
    background: var(--bg-dark);
    color: var(--bg);
}

.workshops .section-tag { color: rgba(200,16,46,0.8); }
.workshops .section-tag::before { background: rgba(200,16,46,0.8); }
.workshops .section-header h2 { color: var(--bg); font-weight: 300; }
.workshops .section-desc { color: rgba(255,255,255,0.45); }

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
}

.workshop-card {
    background: var(--bg-dark);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.workshop-card:hover {
    background: var(--bg-dark-2);
}

/* Workshop image */
.workshop-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.workshop-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65) grayscale(15%);
    transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.workshop-card:hover .workshop-photo {
    transform: scale(1.05);
    filter: brightness(0.75) grayscale(0%);
}

.workshop-content {
    padding: 40px 32px 48px;
}

.workshop-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.workshop-icon {
    width: 44px;
    height: 44px;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: all 0.5s var(--ease);
}

.workshop-card:hover .workshop-icon {
    color: var(--accent);
}

.workshop-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.workshop-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 300;
}

.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.workshop-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    font-weight: 300;
}

.workshop-list li::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 1px;
    margin-top: 9px;
    background: var(--accent);
}

/* ========== TEAM ========== */
.team {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Team photo column */
.team-photo-col {
    position: relative;
}

.team-photo-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(12%) brightness(0.95);
    transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.team-photo-wrap:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) brightness(1);
}

.team-photo-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20,20,20,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-exp {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 200;
    color: var(--bg);
    line-height: 1;
    flex-shrink: 0;
}

.team-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-exp-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.team-certs {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Team cards */
.team-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    align-content: start;
}

.team-card {
    background: var(--bg);
    padding: 32px;
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-card:hover {
    background: var(--bg-warm);
}

.team-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.team-card-badge-c {
    background: var(--primary);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.team-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ========== GROUP ========== */
.group {
    background: var(--bg-warm);
}

.group-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

.group-card {
    padding: 40px 36px;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.5s var(--ease);
}

.group-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.group-card-mas {
    border-top: 3px solid var(--accent);
}

.group-card-waga {
    border-top: 3px solid var(--blue);
}

.group-card-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.group-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.group-cert {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.group-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.group-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

.group-list li::before {
    content: '';
    flex-shrink: 0;
    width: 3px;
    height: 18px;
    margin-top: 2px;
}

.group-card-mas .group-list li::before { background: var(--accent); }
.group-card-waga .group-list li::before { background: var(--blue); }

.group-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--text-muted);
    align-self: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--bg);
}

.group-footer {
    text-align: center;
    padding: 24px 40px;
    background: var(--primary);
}

.group-footer p {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--bg);
    letter-spacing: 0.06em;
}

/* ========== DIFFERENTIATORS ========== */
.differentiators {
    background: var(--bg);
    color: var(--text);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.differentiators .section-tag { color: var(--text-muted); }
.differentiators .section-header h2 { color: var(--primary); }
.differentiators .section-desc { color: var(--text-secondary); }
.differentiators .section-desc strong { color: var(--primary); }

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.diff-card {
    padding: 48px 36px;
    background: var(--bg);
    border-right: 1px solid var(--border);
    transition: all 0.5s var(--ease);
}

.diff-card:last-child { border-right: none; }

.diff-card:hover {
    background: var(--bg-warm);
}

.diff-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--accent);
    border: 2px solid rgba(200,16,46,0.2);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.diff-card:hover .diff-number {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.diff-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--bg-warm);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Plaque photo — a real 3rd column next to the "Demander un Devis" card,
   so it shows up on any normal wide desktop screen (not just huge monitors).
   Hidden by default; becomes a real grid column from 1550px up, where the
   section's container also widens a bit to make room without cramping the
   info/form columns. */
.contact-plaque { display: none; }

@media (min-width: 1550px) {
    .contact .container { max-width: 1460px; }
    .contact-wrapper { grid-template-columns: 1fr 1fr 0.82fr; gap: 48px; }
    .contact-plaque {
        display: block;
        align-self: stretch;
    }
    .contact-plaque img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border: 1px solid var(--border);
        background: var(--bg);
    }
}

.contact-info .section-tag {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-tagline {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
    padding: 6px;
    opacity: 0.4;
    transition: all 0.3s var(--ease);
}

.contact-item:hover .contact-icon {
    opacity: 1;
    color: var(--accent);
}

.contact-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.contact-item a { color: var(--text-secondary); }
.contact-item a:hover { color: var(--accent); }

.contact-cert-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* Hangar image in contact info */
.contact-hangar-img {
    height: 200px;
    overflow: hidden;
}

.contact-hangar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(10%);
    transition: transform 0.6s var(--ease);
}

.contact-hangar-img:hover img {
    transform: scale(1.03);
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: var(--bg);
    padding: 48px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

/* Form feedback states */
.form-success,
.form-error {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.88rem;
    line-height: 1.5;
}

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

.form-success strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.form-success p { margin: 0; opacity: 0.8; }

.form-success svg { flex-shrink: 0; margin-top: 1px; color: #16a34a; }

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-error p { margin: 0; }
.form-error a { color: var(--accent); text-decoration: underline; }

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text);
    background: transparent;
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
}

.contact-form .btn-primary {
    margin-top: 12px;
    gap: 10px;
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner {
    animation: spin 0.75s linear infinite;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 58px;
    width: auto;
    background: rgba(255,255,255,0.95);
    padding: 6px 10px;
}

.footer-brand p {
    font-size: 0.82rem;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    line-height: 1.7;
    margin-top: 12px;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.footer-cert .badge-label {
    background: rgba(255,255,255,0.1);
    font-size: 0.65rem;
}

.footer-links-group h4 {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.footer-links-group li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-links-group a:hover {
    color: var(--bg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.4s var(--ease);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .workshop-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .team-photo-wrap { height: 380px; }
    .group-grid { grid-template-columns: 1fr; }
    .group-plus { margin: 0 auto; }
    .diff-grid { grid-template-columns: 1fr; }
    .diff-card { border-right: none; border-bottom: 1px solid var(--border); }
    .diff-card:last-child { border-bottom: none; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 56px; }
    .contact-form-wrapper { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-stats { flex-wrap: wrap; }
    .stat { flex: 0 0 50%; }
    .about-photo-strip { height: 320px; }
    .section-photo-strip { height: 240px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-logo { min-width: 64px; }
    .nav-logo-img { height: 52px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(20,20,20,0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { color: var(--bg) !important; font-size: 1.1rem; padding: 14px 28px !important; letter-spacing: 0.06em; }
    .nav-links a::after { display: none; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .about-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .team-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .hero-content { padding: 88px 20px 40px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; }
    .stat { flex: 0 0 auto; width: 100%; padding: 20px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .stat:last-child { border-bottom: none; }
    .stat-number { font-size: 2rem; }

    .section { padding: 40px 0; }
    .about { padding-bottom: 0; }
    .section-header { margin-bottom: 36px; }
    .contact-form { padding: 32px 24px; }
    .about-photo-strip { height: 220px; margin-top: 40px; }
    .section-photo-strip { height: 200px; margin-top: 40px; }
    .team-photo-wrap { height: 300px; }
    .workshop-img-wrap { height: 180px; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.visible:nth-child(1) { transition-delay: 0s; }
.fade-in.visible:nth-child(2) { transition-delay: 0.08s; }
.fade-in.visible:nth-child(3) { transition-delay: 0.16s; }
.fade-in.visible:nth-child(4) { transition-delay: 0.24s; }
.fade-in.visible:nth-child(5) { transition-delay: 0.32s; }
.fade-in.visible:nth-child(6) { transition-delay: 0.40s; }

/* Hero entrance */
.hero-label { animation: fadeUp 0.8s 0.2s both var(--ease-out); }
.hero h1 { animation: fadeUp 0.8s 0.4s both var(--ease-out); }
.hero-subtitle { animation: fadeUp 0.8s 0.6s both var(--ease-out); }
.hero-tagline { animation: fadeUp 0.8s 0.7s both var(--ease-out); }
.hero-actions { animation: fadeUp 0.8s 0.8s both var(--ease-out); }
.hero-stats { animation: fadeUp 0.8s 1s both var(--ease-out); }
.hero-scroll { animation: fadeUp 0.8s 1.2s both var(--ease-out); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
