/* ============================================
   FLY IT SWISS - CORPORATE DESIGN SYSTEM
   Professional ESN Theme
   ============================================ */

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Brand Colors - Enriched Palette */
    --color-cyan: #00f6ff;
    --color-cyan-light: #5dfdff;
    --color-cyan-dark: #00b8c4;
    --color-blue: #00aaff;
    --color-blue-deep: #0066cc;
    --color-purple: #667eea;
    --color-indigo: #4c51bf;

    /* Teal Lottie Palette - Exact colors from animation */
    --color-teal: #00AFAA;
    --color-teal-light: #00D4CE;
    --color-teal-dark: #008A86;
    --color-teal-bright: #00FFF8;

    /* Dark Theme - Deep Space */
    --bg-dark: #020617;
    --bg-dark-secondary: #0f172a;
    --bg-dark-tertiary: #1e293b;
    --bg-dark-card: #1e293b;
    --bg-dark-elevated: #334155;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --text-accent: #00AFAA;

    /* Advanced Gradients - Teal Lottie Style */
    --gradient-primary: linear-gradient(135deg, #00AFAA 0%, #00D4CE 100%);
    --gradient-secondary: linear-gradient(135deg, #008A86 0%, #00AFAA 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 175, 170, 0.2) 0%, rgba(0, 212, 206, 0.2) 100%);
    --gradient-depth: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 175, 170, 0.05) 100%);

    /* Accent Effects - Teal Glow */
    --accent-gradient: linear-gradient(135deg, #00AFAA 0%, #00D4CE 100%);
    --accent-glow: 0 0 60px rgba(0, 175, 170, 0.4), 0 0 120px rgba(0, 212, 206, 0.2);
    --accent-glow-strong: 0 0 80px rgba(0, 175, 170, 0.6), 0 0 160px rgba(0, 212, 206, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(30, 41, 59, 0.6);
    --glass-border: rgba(203, 213, 225, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Neutral Colors */
    --border-color: rgba(203, 213, 225, 0.1);
    --border-color-strong: rgba(0, 175, 170, 0.2);
    --surface-overlay: rgba(255, 255, 255, 0.03);
    --surface-overlay-strong: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows - Enhanced Depth */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.35);
    --shadow-2xl: 0 35px 70px rgba(0, 0, 0, 0.45);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 246, 255, 0.3);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Animated Background Canvas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 170, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 246, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Floating Particles Layer */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 15s linear infinite;
    box-shadow: 0 0 10px var(--color-cyan);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Progress Indicator - Story Timeline */
.story-progress {
    position: fixed;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--border-color-strong);
    transition: all var(--transition-base);
    position: relative;
    cursor: pointer;
}

.progress-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: var(--color-cyan);
    border-radius: 50%;
    transition: transform var(--transition-bounce);
    box-shadow: var(--shadow-glow);
}

.progress-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.progress-dot::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: var(--space-lg);
    background: var(--border-color);
}

.progress-dot:last-child::after {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: var(--space-lg);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-img {
    width: 80px;
    height: auto;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto var(--space-md);
}

.loader-progress {
    height: 100%;
    width: 0;
    background: var(--accent-gradient);
    animation: load 2s ease-in-out forwards;
}

.loader-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes load {
    to { width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-slow);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(0, 170, 255, 0.03) 0%,
        transparent 20%,
        transparent 80%,
        rgba(102, 126, 234, 0.03) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.85);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 246, 255, 0.1);
    border-bottom-color: var(--border-color-strong);
}

.navbar.scrolled::before {
    opacity: 1;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 90px;
    width: auto;
    transition: transform var(--transition-base);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.country-flags {
    display: flex;
    align-items: center;
    padding: 0.3rem 0.5rem;
    background: linear-gradient(135deg, rgba(0, 175, 170, 0.1) 0%, rgba(0, 212, 206, 0.1) 100%);
    border: 1px solid rgba(0, 175, 170, 0.2);
    border-radius: 0.4rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    cursor: default;
}

.country-flags:hover {
    background: linear-gradient(135deg, rgba(0, 175, 170, 0.15) 0%, rgba(0, 212, 206, 0.15) 100%);
    border-color: rgba(0, 175, 170, 0.3);
    box-shadow: 0 0 20px rgba(0, 175, 170, 0.2);
    transform: scale(1.05);
}

.country-flags svg {
    width: auto;
    height: 20px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-certification {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    margin-left: auto;
    margin-right: var(--space-xl);
    position: relative;
    cursor: pointer;
}

.nav-certification::after {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    opacity: 0.8;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 175, 170, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px rgba(0, 175, 170, 0);
    }
}

.nav-certification:hover {
    border-color: var(--color-cyan);
    background: rgba(0, 246, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 175, 170, 0.2);
}

.nav-certification:hover::after {
    animation: none;
    transform: scale(1.1);
}

.nav-certification-badge {
    height: 50px;
    width: auto;
}

.nav-certification-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* GPTW Tooltip */
.gptw-tooltip {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 360px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 175, 170, 0.5);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 175, 170, 0.2);
    pointer-events: none;
}

.gptw-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(0, 175, 170, 0.3);
    border-left: 1px solid rgba(0, 175, 170, 0.3);
    transform: rotate(45deg);
}

.nav-certification:hover .gptw-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.tooltip-content h4 {
    color: var(--color-teal);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tooltip-content h4 i {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.tooltip-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-cta {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--accent-glow);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

.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);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Parallax Background Image */
.hero-image-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(20%);
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 6, 23, 0.92) 0%,
        rgba(15, 23, 42, 0.88) 50%,
        rgba(2, 6, 23, 0.95) 100%
    );
    z-index: 1;
}

.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 170, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(102, 126, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 246, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 10%, rgba(0, 182, 196, 0.1) 0%, transparent 40%);
    animation: gradient-shift 25s ease-in-out infinite;
    filter: blur(60px);
    z-index: 2;
}

@keyframes gradient-shift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.15) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.95) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        opacity: 0.9;
    }
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 246, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 246, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-lg);
}

.certification-badge {
    width: 24px;
    height: 24px;
}

.hero-tag span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    opacity: 0;
    transform: translateY(20px);
}

/* Buttons - Enhanced */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1.125rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--color-teal);
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(0, 175, 170, 0.39);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--color-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 175, 170, 0.55);
}

.btn-primary:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px 0 rgba(0, 175, 170, 0.3);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--surface-overlay-strong);
    border-color: var(--border-color-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CUSTOM CURSOR - AVION DE LIGNE
   Élégant, sobre, thème Teal/Cyan
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-cursor svg {
    width: 100%;
    height: 100%;
    color: var(--color-teal);
    filter: drop-shadow(0 0 8px rgba(0, 175, 170, 0.6));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-cursor.active {
    opacity: 1;
    animation: planePulse 3s ease-in-out infinite;
}

/* Animation de pulsation subtile */
@keyframes planePulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0, 175, 170, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(0, 246, 255, 0.8));
    }
}

/* État hover - Avion plus grand et lumineux */
.custom-cursor.hover {
    width: 48px;
    height: 48px;
}

.custom-cursor.hover svg {
    color: var(--color-cyan);
    filter: drop-shadow(0 0 16px rgba(0, 246, 255, 0.9))
            drop-shadow(0 0 24px rgba(0, 175, 170, 0.5));
    animation: planeTakeoff 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Animation de décollage au hover */
@keyframes planeTakeoff {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(-5deg) translateY(-2px);
    }
    100% {
        transform: scale(1.05) rotate(-3deg) translateY(-1px);
    }
}

/* Trail effect - Trainée de l'avion */
.custom-cursor::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 175, 170, 0.4) 50%,
        rgba(0, 246, 255, 0.6) 100%
    );
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.custom-cursor.active::after {
    opacity: 1;
    animation: trailPulse 2s ease-in-out infinite;
}

@keyframes trailPulse {
    0%, 100% {
        opacity: 0.3;
        width: 25px;
    }
    50% {
        opacity: 0.7;
        width: 35px;
    }
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Metrics */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-cyan);
    font-family: var(--font-display);
}

.metric-suffix {
    font-size: 1.5rem;
    color: var(--color-cyan);
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-cyan), transparent);
    animation: scroll-line 1.5s ease-in-out infinite;
}

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

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

/* ============================================
   AMBIENT BACKGROUND - CALM & MINIMAL
   ============================================ */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 175, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 175, 170, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 1;
    animation: gridShift 40s linear infinite;
}

@keyframes gridShift {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

/* Hide on mobile */
@media (max-width: 768px) {
    .ambient-background {
        display: none;
    }
}

/* ============================================
   EXPERTISE SECTION - "Montée en altitude"
   ============================================ */
.expertise {
    background: var(--bg-dark-secondary);
    position: relative;
    z-index: 2;
}

.expertise::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 170, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(102, 126, 234, 0.06) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.expertise-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.expertise-card:hover {
    border-color: var(--border-color-strong);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--accent-glow);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--space-md);
}

.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.expertise-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   ESN ANIMATION CANVAS
   ============================================ */
.esn-animation-container {
    position: relative;
    margin-top: var(--space-3xl);
    height: 520px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(10, 14, 26, 0.98) 0%,
        rgba(15, 23, 42, 0.98) 50%,
        rgba(10, 14, 26, 0.98) 100%
    );
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--color-cyan), var(--color-blue), #667eea) 1;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(0, 246, 255, 0.15);
}

.lottie-animation {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-overlay {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    pointer-events: none;
    z-index: 10;
}

.animation-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 100%
    );
    backdrop-filter: blur(30px);
    border: 2px solid var(--color-cyan);
    border-radius: var(--radius-lg);
    color: var(--color-cyan);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 246, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.animation-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.animation-label i {
    font-size: 1rem;
    animation: spin-gear 4s linear infinite, pulse-glow 2s ease-in-out infinite;
}

@keyframes spin-gear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 4px var(--color-cyan));
    }
    50% {
        opacity: 0.6;
        filter: drop-shadow(0 0 8px var(--color-cyan));
    }
}

@media (max-width: 768px) {
    .esn-animation-container {
        height: 400px;
        margin-top: var(--space-2xl);
    }

    .animation-label {
        font-size: 0.6875rem;
        padding: 8px 14px;
        letter-spacing: 1px;
    }

    .animation-label span {
        display: none;
    }

    .animation-label::after {
        content: 'Synergie ESN';
        display: inline;
    }
}

@media (max-width: 480px) {
    .esn-animation-container {
        height: 350px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--border-color-strong);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--accent-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-dark-card), rgba(0, 246, 255, 0.05));
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--surface-overlay);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
}

.service-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-2xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.service-features i {
    color: var(--color-cyan);
    font-size: 0.875rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.service-tech span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   CULTURE SECTION - "Le Cockpit"
   ============================================ */
.culture {
    background: var(--bg-dark-secondary);
    position: relative;
}

.culture::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(102, 126, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 246, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.benefit-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-cyan);
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

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

.culture-testimonial {
    background: var(--bg-dark-card);
    border-left: 3px solid var(--color-cyan);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-3xl);
    opacity: 0;
    transform: translateX(-30px);
}

.culture-testimonial blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

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

/* ============================================
   CAREERS SECTION - "Nouvelles trajectoires"
   ============================================ */
.careers {
    background: var(--bg-dark-secondary);
    position: relative;
}

.careers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 70%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, rgba(76, 81, 191, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.7;
}

.careers-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
}

.filter-select option {
    background: var(--bg-dark-elevated);
    color: var(--text-primary);
    padding: 0.5rem;
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 246, 255, 0.1);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.job-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.job-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.job-card.hidden {
    display: none;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.job-icon {
    width: 50px;
    height: 50px;
    background: var(--surface-overlay);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
}

.job-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-2xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.job-badge.urgent {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
}

.job-badge.featured {
    background: var(--accent-gradient);
    color: white;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-color);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.job-meta i {
    color: var(--color-cyan);
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.job-skills span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.job-salary {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.no-results {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3xl);
}

.no-results i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.no-results h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.no-results p {
    color: var(--text-secondary);
}

.careers-cta {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.careers-cta h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.careers-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* ============================================
   SALARY ESTIMATOR
   ============================================ */
.estimator {
    padding: var(--space-3xl) 0;
}

.estimator-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.estimator-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.estimator-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.estimator-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.estimator-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.estimator-animation {
    position: relative;
    height: 520px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(10, 14, 26, 0.98) 0%,
        rgba(15, 23, 42, 0.98) 50%,
        rgba(10, 14, 26, 0.98) 100%
    );
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--color-cyan), var(--color-blue), #667eea) 1;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(0, 246, 255, 0.15);
}

#business-animation {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#business-animation.loaded {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 968px) {
    .estimator-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .estimator-animation {
        order: -1;
        height: 400px;
    }

    #business-animation {
        transform: scale(0.95);
    }

    #business-animation.loaded {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .estimator-animation {
        height: 350px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-control option {
    background: var(--bg-dark-elevated);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-control optgroup {
    background: var(--bg-dark-card);
    color: var(--color-cyan);
    font-weight: 600;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 246, 255, 0.1);
}

.form-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    outline: none;
    transition: var(--transition-base);
}

.form-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-cyan);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.form-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: var(--accent-glow);
}

.slider-value {
    text-align: center;
    margin-top: var(--space-sm);
    color: var(--color-cyan);
    font-weight: 600;
}

.estimator-result {
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-cyan);
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark));
    padding: var(--space-3xl) 0;
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
}

.cta-locations {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    max-width: 800px;
    margin: 0 auto;
}

.location {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    min-width: 150px;
}

.location i {
    color: var(--color-cyan);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) auto;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-cyan);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.25rem;
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-links a i {
    font-size: 1.25rem;
}

.social-links a span {
    font-weight: 500;
}

.social-links a:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

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

.footer-bottom p {
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-2xl), var(--accent-glow);
    animation: modal-enter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-enter {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--surface-overlay);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--color-cyan);
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-cyan);
    color: var(--bg-dark);
    border-color: var(--color-cyan);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal-icon {
    font-size: 3rem;
    color: var(--color-cyan);
    margin-bottom: var(--space-md);
    display: block;
    animation: float 3s ease-in-out infinite;
}

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

.modal-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-weight: 700;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-form label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form select option {
    background: var(--bg-dark-elevated);
    color: var(--text-primary);
    padding: 0.5rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 246, 255, 0.15);
    background: var(--bg-dark-card);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

#submit-btn i {
    margin-right: var(--space-xs);
}

/* Success message */
.form-success {
    background: linear-gradient(135deg, rgba(0, 246, 255, 0.1), rgba(102, 126, 234, 0.1));
    border: 1px solid var(--color-cyan);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    animation: slideIn 0.5s ease;
}

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

.form-success i {
    font-size: 3rem;
    color: var(--color-cyan);
    margin-bottom: var(--space-md);
}

.form-success h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav-certification {
        margin-right: var(--space-lg);
    }

    .nav-certification-text {
        display: none;
    }

    .nav-certification-badge {
        height: 36px;
    }

    .nav-certification::after {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -4px;
        right: -4px;
    }

    .gptw-tooltip {
        width: 280px;
        font-size: 0.85rem;
    }

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

    .service-card.featured {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    /* Hide decorative elements on mobile */
    .story-progress,
    .custom-cursor,
    .particles-container {
        display: none !important;
    }

    .brand-logo {
        height: 66px;
    }

    .country-flags {
        padding: 0.25rem 0.4rem;
    }

    .country-flags svg {
        height: 16px;
    }

    .nav-certification {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-md);
        border-top: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .expertise-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .careers-filters {
        grid-template-columns: 1fr;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-locations {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 3rem;
        --space-2xl: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .result-amount {
        font-size: 2rem;
    }
}

/* ============================================
   ALPINE MOUNTAINS PARALLAX - ELEGANT
   ============================================ */

.alpine-mountains {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.mountain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.mountain-layer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Different parallax speeds */
.mountain-back {
    height: 50vh;
    filter: blur(2px);
}

.mountain-middle {
    height: 55vh;
    filter: blur(1px);
}

.mountain-front {
    height: 60vh;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .alpine-mountains {
        display: none;
    }
}

/* ============================================
   ANIMATION INITIAL STATES - GSAP
   États initiaux uniformes pour tous les éléments
   ============================================ */

/* Animation fade-in uniforme - rapide et fluide */
.section-tag,
.section-title,
.section-description,
.expertise-card,
.service-card,
.benefit-card,
.job-card,
.culture-testimonial,
.estimator-card,
.estimator-animation,
.estimator-form,
.cta-title,
.cta-description,
.cta-actions,
.cta-locations {
    opacity: 0;
    transform: translateY(20px);
}
/* ============================================
   JOBS - NOTIFICATIONS & MODALS
   Styles pour la page carrières et candidatures
   ============================================ */

/* Notifications Toast */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    min-width: 320px;
    max-width: 450px;
    box-shadow: var(--shadow-xl), var(--accent-glow);
    z-index: 10002;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notification-success {
    border-left: 4px solid var(--color-cyan);
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    transition: color var(--transition-base);
    margin-left: auto;
}

.notification-close:hover {
    color: var(--text-primary);
}

/* Job Badge */
.job-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge.hot {
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    color: white;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    }
}

/* Job Details Modal */
.job-details {
    max-width: 800px;
}

.job-details-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.job-details-header h2 {
    font-size: 1.875rem;
    margin: var(--space-md) 0;
    color: var(--text-primary);
    font-weight: 700;
}

.job-meta-large {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: var(--space-lg);
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.job-meta-item i {
    color: var(--color-cyan);
    font-size: 1.1rem;
}

.job-details-body {
    margin-bottom: var(--space-xl);
}

.job-section {
    margin-bottom: var(--space-xl);
}

.job-section h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-weight: 600;
}

.job-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.skill-tag {
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.skill-tag:hover {
    background: var(--color-cyan);
    color: var(--bg-dark);
    border-color: var(--color-cyan);
}

.job-details-footer {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.job-details-footer button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.job-details-footer button:first-child {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: var(--bg-dark);
    border: none;
    box-shadow: var(--accent-glow);
}

.job-details-footer button:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 255, 255, 0.3);
}

/* Apply Form Modal */
.apply-form {
    max-width: 650px;
}

.apply-form h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

.apply-form .job-title {
    text-align: center;
    color: var(--color-cyan);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.apply-form form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.apply-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.apply-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.apply-form label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.apply-form label .required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.apply-form input,
.apply-form textarea,
.apply-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.apply-form input:focus,
.apply-form textarea:focus,
.apply-form select:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.apply-form input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
}

.apply-form .file-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.apply-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.apply-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.apply-form .checkbox-group label {
    flex: 1;
    cursor: pointer;
}

.apply-form .checkbox-group label a {
    color: var(--color-cyan);
    text-decoration: underline;
}

.apply-form .form-actions {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-md);
}

.apply-form .form-actions button {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.apply-form .form-actions button[type="submit"] {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: var(--bg-dark);
    border: none;
    box-shadow: var(--accent-glow);
}

.apply-form .form-actions button[type="submit"]:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 255, 255, 0.3);
}

.apply-form .form-actions button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.apply-form .form-actions button[type="button"] {
    background: var(--surface-overlay);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.apply-form .form-actions button[type="button"]:hover {
    background: var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .apply-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .job-meta-large {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .job-details-footer {
        flex-direction: column;
    }
    
    .job-details-footer button {
        width: 100%;
    }
}

/* ============================================
   SALARY CALCULATOR - Job Cards & Modals
   Calculateur salaire avec charges suisses
   ============================================ */

/* Salary Box dans les job cards */
.job-salary-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: var(--space-md);
}

.salary-primary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.salary-primary i {
    color: var(--color-cyan);
    margin-right: 0.5rem;
}

.salary-secondary {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.salary-net {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.salary-net strong {
    color: #10b981;
}

.salary-detail {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.salary-footnote {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

/* Salary Breakdown dans Modal */
.salary-breakdown {
    background: var(--surface-overlay);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
}

.salary-breakdown h3 {
    color: #10b981;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.salary-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.salary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background: var(--bg-dark-elevated);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.salary-row:hover {
    background: rgba(0, 255, 255, 0.05);
}

.salary-row.deduction {
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid #ef4444;
}

.salary-row.subtotal {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid #3b82f6;
}

.salary-row.total {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid #10b981;
    padding: 1rem 1.25rem;
}

.salary-row.monthly {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid var(--color-cyan);
}

.salary-row .label {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.salary-row .label small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.salary-row .value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: right;
    min-width: 140px;
}

.salary-row .value.negative {
    color: #ef4444;
}

.salary-row .value.highlight {
    color: #10b981;
    font-size: 1.25rem;
}

.salary-info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.salary-info-box i {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.salary-info-box p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Salary Table */
@media (max-width: 768px) {
    .salary-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .salary-row .value {
        text-align: left;
        font-size: 1.1rem;
    }

    .salary-breakdown {
        padding: var(--space-lg);
    }

    .salary-net {
        font-size: 1.1rem;
    }
}
