/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a0f;
    --bg-card: #111118;
    --bg-card-hover: #1a1a24;
    --accent-primary: #3b82f6;
    --accent-secondary: #06b6d4;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --accent-cyan-glow: rgba(6, 182, 212, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(59, 130, 246, 0.3);
    --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
    --gradient-text: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
    --success: #10b981;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   GRID OVERLAY
   ============================================ */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

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

.glow-text {
    text-shadow: 0 0 40px var(--accent-glow), 0 0 80px var(--accent-cyan-glow);
}

/* ============================================
   ANIMATIONS KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.6; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50%      { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px var(--accent-cyan-glow); }
}

@keyframes scanline {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(59, 130, 246, 0.3); }
    50%      { border-color: rgba(6, 182, 212, 0.6); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

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

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

/* ── Nav links (liste principale) ── */
.nav-links {
    display: flex;
    align-items: center;   /* ← aligne tous les li sur la même ligne horizontale */
    gap: 40px;
    list-style: none;
}

/* Chaque élément de liste a la même hauteur de ligne */
.nav-links li {
    display: flex;
    align-items: center;
    line-height: 1;        /* ← neutralise le line-height du body pour éviter décalage */
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: width 0.3s ease;
}

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

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

/* ── Dropdown ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;   /* texte + flèche centrés verticalement */
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Menu déroulant */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);   /* petit espace sous le texte du lien */
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

/* Petit triangle au-dessus du menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    color: var(--text-primary);
    background: rgba(59, 130, 246, 0.1);
}

/* Désactive la barre de soulignement sur les liens du dropdown */
.nav-dropdown-menu li a::after {
    display: none;
}

/* CTA navbar */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

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

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow), 0 8px 30px var(--accent-cyan-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .highlight {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease-out 0.4s both;
}

.data-visualization {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    height: 130px;
    width: 130px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.floating-card:nth-child(1) { top: 8%;    left: 8%;  animation-delay: 0s; }
.floating-card:nth-child(2) { top: 8%;    right: 8%; animation-delay: 1s; }
.floating-card:nth-child(3) { bottom: 18%; left: 8%;  animation-delay: 2s; }
.floating-card:nth-child(4) { bottom: 18%; right: 8%; animation-delay: 3s; }

.floating-card .card-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-hero);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.floating-card .card-title {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 4px;
    line-height: 1.2;
}

.floating-card .card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-ring::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 50%;
}

.orbit-ring::after {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 50%;
}

.center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 0 60px var(--accent-glow), 0 0 100px var(--accent-cyan-glow);
    animation: glow 3s ease-in-out infinite;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-secondary);
}

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

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
}

.about-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.about-image-content .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-image-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-image-content p {
    color: var(--text-secondary);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-hero);
    padding: 24px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge .number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.values-list {
    list-style: none;
    margin-top: 32px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.value-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glow);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.1);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '→';
    color: var(--accent-primary);
    font-weight: 600;
}

.service-price {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.service-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: var(--border-glow);
}

.service-card.featured::after {
    content: 'POPULAIRE';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-hero);
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

/* ============================================
   METHODOLOGY SECTION
   ============================================ */
.methodology {
    background: var(--bg-secondary);
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    animation: borderGlow 3s linear infinite;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-hero);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    border-color: var(--accent-primary);
}

.process-step:hover .step-number::before {
    opacity: 0.3;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 200px;
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.case-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.case-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-hero);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.case-industry {
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.case-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.case-body {
    padding: 30px;
}

.case-problem {
    margin-bottom: 20px;
}

.case-problem-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.case-problem-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.case-solution {
    margin-bottom: 24px;
}

.case-solution-label {
    font-size: 0.75rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.case-solution-text {
    font-size: 0.9rem;
}

.case-results {
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.case-result-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.case-result-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.case-result-list {
    list-style: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.case-result-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.case-result-list li::before {
    content: '→';
    color: var(--accent-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.1;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--gradient-hero);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px var(--accent-glow);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--accent-glow), 0 12px 40px var(--accent-cyan-glow);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method-content p,
.contact-method-content a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-method-content a:hover {
    color: var(--accent-primary);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-hero);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-hero);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    animation: pulse 1.5s ease-in-out infinite;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-card);
    border-radius: 3px;
    overflow: hidden;
}

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

/* ============================================
   SIMULATEUR SECTION
   ============================================ */
.simulator-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.simulator-container {
    max-width: 800px;
    margin: 0 auto;
}

.simulator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.simulator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-hero);
}

.simulator-form {
    display: grid;
    gap: 24px;
}

.simulator-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.simulator-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.simulator-select,
.simulator-input {
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simulator-select:focus,
.simulator-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.simulator-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.simulator-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.simulator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.simulator-result {
    margin-top: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    display: none;
}

.simulator-result.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.simulator-result-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.simulator-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 8px;
}

.simulator-price-range {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.simulator-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.simulator-detail {
    text-align: center;
}

.simulator-detail-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.simulator-detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.simulator-cta {
    margin-top: 24px;
    text-align: center;
}

.simulator-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.simulator-cta a:hover {
    color: var(--accent-secondary);
    gap: 12px;
}

/* ============================================
   MESSAGES DE FORMULAIRE
   ============================================ */

.form-message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    animation: slideDown 0.4s ease-out;
}

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

.form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-message ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.form-message li {
    margin: 5px 0;
}

.form-message .success-content,
.form-message .error-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-message .success-icon,
.form-message .error-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.form-message p {
    margin: 4px 0;
    opacity: 0.9;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
}

.form-message small {
    opacity: 0.6;
    font-size: 0.75rem;
}

/* Champs en erreur */
.form-input.input-error,
.form-textarea.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Scroll automatique vers le message */
.form-message:target {
    scroll-margin-top: 100px;
}
/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Effet de fond subtil */
.clients-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   CAROUSEL CONTAINER
   ============================================ */
.clients-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin-top: 20px;
}

/* Gradients de fondu sur les côtés */
.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

/* ============================================
   TRACK & ANIMATION
   ============================================ */
.clients-track {
    display: flex;
    gap: 40px;
    animation: scroll-clients 30s linear infinite;
    width: max-content;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause au hover */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}


/* ============================================
   CLIENT ITEM
   ============================================ */
.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-item:hover {
    transform: translateY(-8px);
}

/* Logo wrapper avec effet glassmorphism */
.client-logo-wrapper {
    width: 140px;
    height: 140px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

/* Effet de brillance au hover */
.client-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.6s ease;
}

.client-item:hover .client-logo-wrapper::before {
    left: 100%;
}

.client-item:hover .client-logo-wrapper {
    border-color: var(--border-glow);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px var(--accent-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.1),
        var(--bg-card)
    );
}

/* Logo image */
.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-item:hover .client-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Nom du client */
.client-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.client-item:hover .client-name {
    opacity: 1;
    transform: translateY(0);
    color: var(--text-secondary);
}

/* ============================================
   TRUST BADGE
   ============================================ */
.clients-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.clients-trust-badge:hover {
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    font-size: 1.25rem;
}

.clients-trust-badge strong {
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .clients-section {
        padding: 80px 0;
    }
    
    .client-logo-wrapper {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
    
    .clients-track {
        gap: 30px;
    }
    
    .carousel-fade {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .client-logo-wrapper {
        width: 100px;
        height: 100px;
        padding: 16px;
        border-radius: 16px;
    }
    
    .clients-track {
        gap: 24px;
        animation-duration: 20s;
    }
    
    .carousel-fade {
        width: 60px;
    }
    
    .client-name {
        display: none;
    }
    
    .clients-trust-badge {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .client-logo-wrapper {
        width: 80px;
        height: 80px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .clients-track {
        gap: 16px;
        animation-duration: 15s;
    }
    
    .carousel-fade {
        width: 40px;
    }
    
    .clients-trust-badge {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================
   VARIANTE : GRILLE STATIQUE (optionnelle)
   ============================================ */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ============================================
   ANIMATION ALTERNATIVE (hover global)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .carousel-fade {
        display: none;
    }
}


/* ============================================
   MOBILE MENU (overlay)
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent-primary);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-section {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 20px 0 10px;
    padding-left: 20px;
}

.mobile-submenu {
    padding-left: 40px !important;
    font-size: 1.1rem !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        order: -1;
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .simulator-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NOUVELLE CHARTE GRAPHIQUE SIMBA 2025
   Overrides et enrichissements
   ============================================ */

/* --- Override variables --- */
:root {
    --accent-orange: #f19e47;
    --accent-blue: #1e90ff;
    --accent-orange-glow: rgba(241, 158, 71, 0.35);
    --accent-blue-glow: rgba(30, 144, 255, 0.35);
}

/* --- Remplacement des degrades par des couleurs pleines --- */
.gradient-text,
.hero-title .highlight,
.stat-number,
.service-price-value,
.case-result-main,
.simulator-price,
.experience-badge .number,
.loader-logo,
.clients-trust-badge strong,
.step-number {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: var(--accent-orange);
}

/* --- Gradients remplaces par couleurs pleines --- */
.btn-primary,
.form-submit,
.simulator-btn,
.cta-btn-primary {
    background: var(--accent-blue);
}

.btn-primary:hover,
.form-submit:hover,
.simulator-btn:hover,
.cta-btn-primary:hover {
    background: var(--accent-orange);
}

/* Experience badge */
.experience-badge {
    background: var(--accent-orange);
}

/* Service card featured */
.service-card.featured {
    background: rgba(30, 144, 255, 0.05);
    border-color: var(--accent-blue-glow);
}

.service-card.featured::after {
    background: var(--accent-orange);
}

/* Case icon */
.case-icon {
    background: var(--accent-blue);
}

/* Floating card icon */
.floating-card .card-icon {
    background: var(--accent-blue);
}

.floating-card .card-value {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: var(--accent-orange);
}

/* Center core */
.center-core {
    background: var(--accent-blue);
    box-shadow: 0 0 60px var(--accent-blue-glow), 0 0 100px var(--accent-orange-glow);
}

/* Hero badge */
.hero-badge {
    background: rgba(241, 158, 71, 0.1);
    border-color: var(--accent-orange-glow);
    color: var(--accent-orange);
}

.hero-badge .dot {
    background: var(--accent-orange);
}

/* Section label */
.section-label {
    color: var(--accent-orange);
}

/* Nav links hover */
.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-dropdown-menu li a:hover {
    background: rgba(241, 158, 71, 0.08);
    color: var(--text-primary);
}

/* Value icon */
.value-icon {
    background: rgba(241, 158, 71, 0.1);
    border-color: var(--accent-orange-glow);
    color: var(--accent-orange);
}

/* Contact method icon */
.contact-method-icon {
    background: rgba(241, 158, 71, 0.1);
    border-color: var(--accent-orange-glow);
    color: var(--accent-orange);
}

/* Footer column underline */
.footer-column h4::after {
    background: var(--accent-orange);
}

/* Social links */
.social-link:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Footer links */
.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-legal a:hover {
    color: var(--accent-orange);
}

/* Process timeline */
.process-timeline::before {
    background: var(--accent-blue);
    animation: none;
    opacity: 0.4;
}

.step-number {
    border-color: var(--accent-blue-glow);
    color: var(--accent-blue);
}

.process-step:hover .step-number {
    border-color: var(--accent-orange);
}

.step-number::before {
    background: var(--accent-orange);
}

/* Grid overlay */
.grid-overlay {
    background-image:
        linear-gradient(rgba(241, 158, 71, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 144, 255, 0.03) 1px, transparent 1px);
}

/* Stat card top line */
.stat-card::before {
    background: var(--accent-orange);
}

/* CTA background */
.cta-bg {
    background: var(--accent-blue);
}

/* Simulator card top line */
.simulator-card::before {
    background: var(--accent-orange);
}

/* Simulator result */
.simulator-result {
    background: rgba(30, 144, 255, 0.05);
    border-color: var(--accent-blue-glow);
}

/* Buttons */
.btn-secondary:hover {
    border-color: var(--accent-orange);
    background: rgba(241, 158, 71, 0.08);
}

.btn-outline {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.btn-outline:hover {
    background: var(--accent-orange);
    color: white;
}

/* Orbit ring */
.orbit-ring {
    border-color: rgba(30, 144, 255, 0.2);
}

.orbit-ring::before {
    border-color: rgba(241, 158, 71, 0.15);
}

.orbit-ring::after {
    border-color: rgba(30, 144, 255, 0.1);
}

/* Glow text */
.glow-text {
    text-shadow: 0 0 40px var(--accent-orange-glow), 0 0 80px var(--accent-blue-glow);
}

/* Dropdown arrow SVG */
.dropdown-arrow-svg {
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow-svg {
    transform: rotate(180deg);
}

/* --- Nav active state --- */
.nav-links li.active > a,
.nav-dropdown.active > .nav-dropdown-toggle {
    color: var(--accent-orange);
}

.nav-dropdown-menu li a.active {
    color: var(--accent-orange);
    background: rgba(241, 158, 71, 0.08);
}

/* Mobile menu highlight */
.mobile-menu a.mobile-menu-highlight {
    background: var(--accent-orange);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    margin-top: 10px;
}

.mobile-menu a.mobile-menu-highlight:hover {
    background: var(--accent-blue);
    color: white;
}

/* Mobile submenu active */
.mobile-submenu.active {
    color: var(--accent-orange);
}

/* SVG icon color inheritance */
.lucide-icon {
    display: inline-block;
    vertical-align: middle;
}

/* SVG icons in buttons */
.btn svg,
.nav-cta svg,
.cta-btn-primary svg,
.cta-btn-secondary svg {
    flex-shrink: 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb li[aria-current="page"] {
    color: var(--accent-orange);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ============================================
   PAGE HERO (sous-pages)
   ============================================ */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero .hero-description {
    max-width: 640px;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 280px;
    max-width: 360px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue-glow);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Etiquette "Populaire" / "Meilleure offre" */
.pricing-card .pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-orange);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 2;
}

.pricing-card.popular {
    border-color: var(--accent-orange-glow);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(241, 158, 71, 0.05) 100%);
}

/* Ordre vertical : 1) nom 2) prix 3) features 4) CTA */
.pricing-card .pricing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
    order: 1;
}

.pricing-card .pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 20px;
    order: 2;
}

.pricing-card .pricing-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    order: 2;
}

.pricing-card .pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    order: 3;
    width: 100%;
}

.pricing-card .pricing-cta {
    order: 4;
    margin-top: auto;
    width: 100%;
}

.pricing-card .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .pricing-features svg {
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* ============================================
   CONFIGURATEUR MODULES
   ============================================ */
.configurator-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.configurator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.configurator-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.module-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.module-item:hover {
    border-color: var(--accent-blue-glow);
}

.module-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-orange);
    cursor: pointer;
    flex-shrink: 0;
}

.module-item .module-info {
    flex: 1;
    margin-left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.module-item .module-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.module-item .module-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--accent-orange);
    white-space: nowrap;
}

.module-item .module-pages-input {
    width: 60px;
    padding: 8px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-align: center;
}

/* Recap configurator */
.configurator-recap {
    background: rgba(30, 144, 255, 0.05);
    border: 1px solid var(--accent-blue-glow);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.configurator-recap-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.configurator-recap-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.configurator-recap-row:last-of-type {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 16px;
}

.configurator-recap-label {
    color: var(--text-secondary);
}

.configurator-recap-value {
    font-weight: 600;
    color: var(--text-primary);
}

.configurator-recap-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 24px;
}

.configurator-total-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.configurator-total-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.configurator-total-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: -16px;
    margin-bottom: 24px;
}

.configurator-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue-glow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}

.faq-item.open .faq-question svg,
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer,
.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

.faq-answer-inner ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer-inner li {
    margin-bottom: 6px;
}

/* ============================================
   PAGES PRESTATIONS - Template commun
   ============================================ */
.prestation-problems {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--accent-blue-glow);
    transform: translateY(-4px);
}

.problem-card .problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(241, 158, 71, 0.1);
    border: 1px solid var(--accent-orange-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.problem-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Methodology timeline (page prestation) */
.methodology-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-blue);
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    padding: 24px 0 24px 32px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 28px;
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
}

.timeline-step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Includes list */
.includes-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.includes-list li svg {
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* Testimonial card */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    color: var(--accent-orange);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 2px;
}

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

/* ============================================
   ARTICLES / BLOG
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue-glow);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.article-image {
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.6;
}

.article-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-category {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.article-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.article-card:hover .article-read-more {
    gap: 12px;
}

/* Article detail page */
.article-hero {
    padding: 140px 0 40px;
    text-align: center;
}

.article-hero h1 {
    max-width: 800px;
    margin: 0 auto 24px;
}

.article-meta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 0;
}

.article-body h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 48px 0 20px;
    color: var(--text-primary);
}

.article-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.article-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body strong {
    color: var(--text-primary);
}

/* Encadres */
.tldr-box {
    background: rgba(241, 158, 71, 0.08);
    border: 1px solid var(--accent-orange-glow);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
}

.tldr-box-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tldr-box ul {
    margin: 0;
    padding-left: 20px;
}

.tldr-box li {
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.info-box {
    background: rgba(30, 144, 255, 0.06);
    border: 1px solid var(--accent-blue-glow);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
}

.info-box-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

/* Table of contents */
.toc {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
}

.toc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

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

.toc li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.toc li:last-child {
    border-bottom: none;
}

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.toc a:hover {
    color: var(--accent-orange);
}

/* ============================================
   PAGES LEGALES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-orange);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.7) invert(0.9);
}

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

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-info-list svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

/* ============================================
   A PROPOS PAGE
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue-glow);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-orange-glow);
    overflow: hidden;
}

.team-avatar svg {
    color: var(--text-muted);
}

.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
}

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

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-orange-glow);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(241, 158, 71, 0.1);
    border: 1px solid var(--accent-orange-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-orange);
}

.value-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE SUPPLEMENTAIRE
   ============================================ */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

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

    .configurator-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: 120px 0 40px;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .contact-map {
        height: 280px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .article-body {
        padding: 40px 0;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .timeline-step {
        padding-left: 24px;
    }

    .methodology-timeline {
        padding-left: 30px;
    }
}

/* ============================================
   SPRINT 2 — CORRECTIONS INDEX.PHP + A-PROPOS
   ============================================ */

/* --- Hero Photo asymetrique --- */
.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px 12px 60px 12px;
    box-shadow: 0 20px 60px rgba(241, 158, 71, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.hero-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(30, 144, 255, 0.2), 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* --- Stats : 4 colonnes centrees --- */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 100%;
    margin: 60px auto 0;
}

.hero-stats-row .stat-card {
    padding: 32px 16px;
    border-radius: 20px;
}

.hero-stats-row .stat-number {
    font-size: 3rem;
}

.hero-stats-row .stat-label {
    font-size: 1rem;
    margin-top: 12px;
}

@media (max-width: 992px) {
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-stats-row {
        grid-template-columns: 1fr;
    }
}

/* --- A propos : +50 en BLANC --- */
.experience-badge .number {
    color: #ffffff;
}

/* --- Methodologie : ligne masquee --- */
.process-timeline::before {
    display: none;
}

/* --- Section Fondateurs --- */
.founders-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.founder-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-orange-glow);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.founder-card:nth-child(2):hover {
    border-color: var(--accent-blue-glow);
}

.founder-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid var(--accent-orange-glow);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.founder-card:nth-child(2) .founder-photo {
    border-color: var(--accent-blue-glow);
}

.founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.founder-role {
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 20px;
}

.founder-card:nth-child(2) .founder-role {
    color: var(--accent-blue);
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.founder-skill {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.3s ease;
}

.founder-skill:hover {
    background: var(--accent-orange);
    color: white;
}

.founder-card:nth-child(2) .founder-skill {
    border-color: var(--accent-blue);
}

.founder-card:nth-child(2) .founder-skill:hover {
    background: var(--accent-blue);
    color: white;
}

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}
