/* ============================================
   FILLTRUCK - Premium SaaS Stylesheet
   ============================================ */

:root {
    --navy-900: #0A1628;
    --navy-800: #0F1F36;
    --navy-700: #14294A;
    --navy-600: #1E3A5F;
    --blue-500: #2563EB;
    --blue-400: #3B82F6;
    --blue-100: #DBEAFE;
    --green-500: #10B981;
    --green-400: #34D399;
    --green-100: #D1FAE5;
    --orange-500: #F97316;
    --orange-400: #FB923C;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.2);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;

    /* Hauteur du banner urgence — mise à jour dynamiquement par JS via ResizeObserver */
    --banner-height: 0px;
}

/* Quand un banner est présent, on bascule le header en sticky : le banner occupe sa hauteur en flow,
   le header se positionne naturellement dessous, puis sticke à top:0 au scroll. */
body.has-banner .header {
    position: sticky !important;
    top: 0 !important;
}
body.has-banner .hero { padding-top: 60px !important; }
@media (max-width: 768px) {
    body.has-banner .hero { padding-top: 40px !important; }
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   LAYOUT
   ============================================ */

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

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

.section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--blue-100);
    color: var(--blue-500);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-500), #0EA572);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange-500), #EA580C);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy-900);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block { width: 100%; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
}

.logo-mark svg { width: 22px; height: 22px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--blue-500); }

.nav-links a.active { color: var(--navy-900); font-weight: 600; }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue-500);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn { padding: 10px 20px; font-size: 14px; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--navy-900);
}

@media (max-width: 1180px) {
    .nav-links { display: none; }
    .nav-actions .btn-secondary { display: none; }
    .menu-toggle { display: flex; }
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px;
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu a:hover { background: var(--gray-50); color: var(--navy-900); }

.mobile-menu .btn { width: 100%; margin-top: 12px; }

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 3px var(--green-100);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--navy-900);
    margin-bottom: 24px;
}

.hero-title .gradient {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 540px;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--green-500);
}

/* HERO MOCKUP */

.hero-mockup {
    position: relative;
    perspective: 2000px;
}

.mockup-app {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(4deg);
    transition: var(--transition-slow);
}

.mockup-app:hover { transform: rotateY(-2deg) rotateX(2deg) translateY(-8px); }

.mockup-header {
    background: var(--navy-900);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-tab {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
}

.mockup-body {
    background: var(--gray-50);
    padding: 0;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.mockup-map {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(59, 130, 246, 0.08), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(16, 185, 129, 0.06), transparent 50%),
        linear-gradient(180deg, #E8EEF5 0%, #DCE5EF 100%);
}

.mockup-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
}

.mockup-route {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 60%;
    height: 40%;
    pointer-events: none;
}

.mockup-pin {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--blue-500);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-pin::after {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transform: rotate(45deg);
}

.mockup-pin.green { background: var(--green-500); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4); }
.mockup-pin.orange { background: var(--orange-500); box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4); }

.mockup-pin-1 { top: 22%; left: 18%; animation: float 3s ease-in-out infinite; }
.mockup-pin-2 { top: 44%; left: 50%; animation: float 3s ease-in-out 0.5s infinite; }
.mockup-pin-3 { top: 58%; left: 78%; animation: float 3s ease-in-out 1s infinite; }
.mockup-pin-4 { top: 70%; left: 28%; animation: float 3s ease-in-out 1.5s infinite; }

@keyframes float {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-6px); }
}

.mockup-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-100), #BFDBFE);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    flex-shrink: 0;
}

.mockup-card-info { flex: 1; }
.mockup-card-title { font-size: 13px; font-weight: 600; color: var(--navy-900); }
.mockup-card-meta { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

.mockup-card-badge {
    background: var(--green-100);
    color: var(--green-500);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.mockup-stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-stat-1 { top: 16px; left: 16px; animation: floatUp 4s ease-in-out infinite; }
.mockup-stat-2 { top: 16px; right: 16px; animation: floatUp 4s ease-in-out 1s infinite; }

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

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green-100), #A7F3D0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-500);
}

.stat-icon.blue { background: linear-gradient(135deg, var(--blue-100), #BFDBFE); color: var(--blue-500); }

.stat-text { font-size: 11px; color: var(--gray-500); }
.stat-value { font-size: 14px; font-weight: 700; color: var(--navy-900); }

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--navy-900);
    color: var(--white);
    padding: 60px 0;
}

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

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

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

.stat-number {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================
   PROBLEM / SOLUTION SECTIONS
   ============================================ */

.problem-section {
    background: var(--gray-50);
}

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

@media (max-width: 968px) {
    .problem-grid { grid-template-columns: 1fr; gap: 32px; }
}

.problem-content h2 { margin-bottom: 24px; }

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.problem-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--gray-700);
}

.problem-list .icon-x {
    width: 24px;
    height: 24px;
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.problem-list .icon-check {
    width: 24px;
    height: 24px;
    background: var(--green-100);
    color: var(--green-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-illustration {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.truck-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: var(--gray-50);
}

.truck-row:last-child { margin-bottom: 0; }

.truck-row.empty { background: #FEF2F2; }
.truck-row.full { background: var(--green-100); }

.truck-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.truck-info { flex: 1; }
.truck-name { font-weight: 600; color: var(--navy-900); font-size: 14px; }
.truck-route { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.truck-fill {
    width: 80px;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.truck-fill-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.truck-fill-bar.low { background: linear-gradient(90deg, #EF4444, #F87171); }
.truck-fill-bar.medium { background: linear-gradient(90deg, var(--orange-500), var(--orange-400)); }

.truck-percent { font-size: 13px; font-weight: 700; color: var(--navy-900); min-width: 36px; text-align: right; }

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */

.steps-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--gray-100);
    padding: 6px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.steps-tab {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.steps-tab.active {
    background: var(--white);
    color: var(--navy-900);
    box-shadow: var(--shadow-sm);
}

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

@media (max-width: 968px) {
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
}

.step-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-500);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-100), #BFDBFE);
    color: var(--blue-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon svg { width: 28px; height: 28px; }

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-900);
}

.step-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   FEATURES
   ============================================ */

.features-section { background: var(--gray-50); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
}

.feature-icon.blue { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.feature-icon.green { background: linear-gradient(135deg, #10B981, #047857); }
.feature-icon.orange { background: linear-gradient(135deg, #F97316, #C2410C); }
.feature-icon.purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.feature-icon.pink { background: linear-gradient(135deg, #EC4899, #BE185D); }
.feature-icon.cyan { background: linear-gradient(135deg, #06B6D4, #0E7490); }
.feature-icon.indigo { background: linear-gradient(135deg, #6366F1, #4338CA); }
.feature-icon.amber { background: linear-gradient(135deg, #F59E0B, #B45309); }

.feature-icon svg { width: 24px; height: 24px; }

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

.benefit-block {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.benefit-block.transporter::before { background: linear-gradient(90deg, var(--blue-500), var(--green-500)); }
.benefit-block.wholesaler::before { background: linear-gradient(90deg, var(--orange-500), var(--blue-500)); }

.benefit-block:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

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

.benefit-emoji {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.benefit-emoji.blue { background: linear-gradient(135deg, var(--blue-500), var(--navy-700)); }
.benefit-emoji.orange { background: linear-gradient(135deg, var(--orange-500), #C2410C); }

.benefit-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-900);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.benefit-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-check svg { width: 14px; height: 14px; }

/* ============================================
   APP MOCKUP SECTION
   ============================================ */

.app-section { background: var(--navy-900); color: white; overflow: hidden; }
.app-section .section-title { color: white; }
.app-section .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.app-section .section-eyebrow { background: rgba(255, 255, 255, 0.1); color: var(--blue-400); }

.app-mockup-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 64px;
}

@media (max-width: 968px) { .app-mockup-grid { grid-template-columns: 1fr; } }

.app-screen {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-screen-header {
    background: var(--gray-50);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
}

.app-search {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    flex: 1;
    max-width: 240px;
}

.app-user {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
}

.app-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 460px;
}

.app-sidebar {
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    padding: 16px 12px;
}

.app-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 4px;
    cursor: pointer;
}

.app-nav-item.active { background: var(--blue-100); color: var(--blue-500); }
.app-nav-item svg { width: 16px; height: 16px; }

.app-main {
    background: var(--gray-50);
    padding: 20px;
    overflow: hidden;
}

.app-main-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.app-main-sub {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-list-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.app-list-item:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); }

.app-list-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-100), #BFDBFE);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    flex-shrink: 0;
}

.app-list-info { flex: 1; min-width: 0; }
.app-list-title { font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 2px; }
.app-list-meta { font-size: 11px; color: var(--gray-500); }

.app-list-tag {
    background: var(--green-100);
    color: var(--green-500);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.app-list-tag.orange { background: #FFEDD5; color: var(--orange-500); }

.app-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.app-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.app-feature-icon.green { background: linear-gradient(135deg, var(--green-500), var(--green-400)); }
.app-feature-icon.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-400)); }

.app-feature-title { color: white; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.app-feature-desc { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.5; }

/* CHAT MOCKUP */
.chat-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 16px;
}

.chat-header {
    padding: 14px 18px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500), var(--blue-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
}

.chat-info { flex: 1; }
.chat-name { font-size: 13px; font-weight: 600; color: var(--navy-900); }
.chat-status { font-size: 11px; color: var(--green-500); display: flex; align-items: center; gap: 4px; }
.chat-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }

.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }

.chat-msg {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4;
}

.chat-msg.them { background: var(--gray-100); color: var(--navy-900); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.me { background: var(--blue-500); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-section .section-title { color: white; }
.cta-section .section-subtitle { color: rgba(255, 255, 255, 0.8); }

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
}

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

@media (max-width: 968px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue-500);
    border-color: var(--blue-500);
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: white; }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}

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

.footer-bottom-links a:hover { color: white; }

/* ============================================
   PAGE HEADERS
   ============================================ */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 19px;
    color: var(--gray-500);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

@media (max-width: 968px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.pricing-card.popular {
    border: 2px solid var(--blue-500);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.pricing-card.popular:hover { transform: scale(1.02) translateY(-6px); }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.pricing-price {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricing-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: var(--gray-500);
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--gray-700);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--gray-300); }

.faq-item.open { border-color: var(--blue-500); box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--gray-500);
    transition: var(--transition);
}

.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--blue-500); }

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

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer p {
    padding-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ============================================
   CONTACT
   ============================================ */

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

@media (max-width: 968px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h2 { font-size: 32px; margin-bottom: 16px; }
.contact-info p { color: var(--gray-500); margin-bottom: 32px; line-height: 1.6; }

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-100), #BFDBFE);
    color: var(--blue-500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-label { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 600; color: var(--navy-900); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--navy-900);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-radio {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.form-radio label {
    flex: 1;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--gray-700);
}

.form-radio input { display: none; }
.form-radio input:checked + label { border-color: var(--blue-500); background: var(--blue-100); color: var(--blue-500); }

/* ============================================
   ROLE PAGES (GROSSISTE / TRANSPORTEUR)
   ============================================ */

.role-section {
    padding: 100px 0;
}

.role-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}

.role-feature:last-child { margin-bottom: 0; }
.role-feature.reverse > :first-child { order: 2; }

@media (max-width: 968px) {
    .role-feature, .role-feature.reverse { grid-template-columns: 1fr; gap: 32px; }
    .role-feature.reverse > :first-child { order: 0; }
}

.role-feature-content .section-eyebrow { margin-bottom: 16px; }
.role-feature-content h2 { font-size: 32px; line-height: 1.2; margin-bottom: 16px; }
.role-feature-content p { color: var(--gray-500); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

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

.role-feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--gray-700);
}

.role-feature-list svg {
    width: 22px;
    height: 22px;
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 1px;
}

.role-visual {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* QA 2026-05-08 fix : progressive enhancement
 * Le contenu est VISIBLE par défaut (sans JS, sans Sentry, etc.).
 * L'animation fade-in s'applique UNIQUEMENT quand <html class="js-ready"> est présent
 * (ajoutée par main.js dès son boot). Si le JS plante avant cette ligne, tout reste lisible.
 * Cela évite le bug "hero entièrement invisible" si IntersectionObserver ne se déclenche pas.
 */
.fade-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js-ready .fade-in {
    opacity: 0;
    transform: translateY(20px);
}
html.js-ready .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* A11Y : utilisateurs avec prefers-reduced-motion → tout visible sans animation */
@media (prefers-reduced-motion: reduce) {
    .fade-in, html.js-ready .fade-in, html.js-ready .fade-in.visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.text-blue { color: var(--blue-500); }
.text-green { color: var(--green-500); }
.text-orange { color: var(--orange-500); }

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-lg { padding: 80px 0; }
    .hero { padding: 120px 0 60px; }
}

/* ============================================
   CONVERSION OPTIMIZATION COMPONENTS
   ============================================ */

/* Hero metric pill */
.hero-metric {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--green-100), #BBF7D0);
    border: 1px solid #86EFAC;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: #047857;
    margin-bottom: 20px;
}

.hero-metric svg { width: 16px; height: 16px; }

/* Logos bar */
.logos-bar {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.logos-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
    opacity: 0.6;
}

@media (max-width: 768px) { .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.logo-item {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo-item:hover { color: var(--navy-900); transform: scale(1.05); }
.logo-item svg { height: 28px; width: auto; }

/* Testimonials */
.testimonials-section { background: var(--white); }

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

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-500);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    margin-bottom: 16px;
}

.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.testimonial-role { font-size: 12px; color: var(--gray-500); }

.testimonial-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-100);
    color: #047857;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ROI Calculator */
.calc-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 968px) { .calc-grid { grid-template-columns: 1fr; gap: 32px; } }

.calc-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.calc-field { margin-bottom: 24px; }

.calc-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.calc-field-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-500);
    background: var(--blue-100);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--blue-500);
    border: 4px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--blue-500);
    border: 4px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.calc-result {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.2), transparent 50%);
    pointer-events: none;
}

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

.calc-result-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.calc-result-value {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-400), #BBF7D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

@media (max-width: 600px) { .calc-result-value { font-size: 48px; } }

.calc-result-period { color: rgba(255, 255, 255, 0.7); font-size: 14px; margin-bottom: 24px; }

.calc-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-detail-row:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.2); }
.calc-detail-row span:first-child { color: rgba(255, 255, 255, 0.7); }
.calc-detail-row span:last-child { color: white; font-weight: 600; }

/* Live activity ticker */
.activity-ticker {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 998;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
    border: 1px solid var(--gray-100);
}

.activity-ticker.show { transform: translateY(0); }

.activity-ticker-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500), var(--green-400));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.activity-ticker-icon svg { width: 18px; height: 18px; }

.activity-ticker-content { flex: 1; min-width: 0; }
.activity-ticker-title { font-size: 13px; font-weight: 600; color: var(--navy-900); line-height: 1.3; }
.activity-ticker-meta { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

.activity-ticker-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.activity-ticker-close:hover { background: var(--gray-200); color: var(--navy-900); }

@media (max-width: 600px) {
    .activity-ticker { bottom: 88px; left: 16px; right: 16px; max-width: none; }
}

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 16px;
    display: none;
    gap: 8px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.sticky-cta .btn { flex: 1; padding: 12px; font-size: 14px; }

@media (max-width: 768px) { .sticky-cta { display: flex; } }

/* Lead capture popup */
.lead-popup {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lead-popup.show { opacity: 1; pointer-events: auto; }

.lead-popup-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    padding: 40px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-2xl);
}

.lead-popup.show .lead-popup-card { transform: scale(1); }

.lead-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lead-popup-close:hover { background: var(--gray-200); transform: rotate(90deg); }

.lead-popup-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.lead-popup-icon svg { width: 30px; height: 30px; }

.lead-popup h3 { font-size: 24px; margin-bottom: 8px; line-height: 1.2; }
.lead-popup p { color: var(--gray-500); margin-bottom: 24px; line-height: 1.5; }

.lead-popup-form { display: flex; flex-direction: column; gap: 12px; }

.lead-popup-trust {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid var(--gray-100);
    margin-top: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-badge svg { width: 18px; height: 18px; color: var(--green-500); }

/* Urgency banner — en flow tout en haut du body, AU-DESSUS du header sticky */
.urgency-banner {
    background: linear-gradient(90deg, var(--orange-500), #DC2626);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    /* sur viewport étroit, troncature ellipsis pour éviter un wrap massif */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.urgency-banner strong { font-weight: 700; }

@media (max-width: 600px) {
    .urgency-banner {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Updated CTA copy emphasis */
.btn-arrow {
    transition: var(--transition);
    display: inline-flex;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* Stat with comparison */
.stat-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero secondary trust line */
.hero-trust-extra {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray-500);
}

.hero-trust-extra strong { color: var(--navy-900); }

