/* ========================================
   CarbuMetrics - Site Vitrine V2
   Professional Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0ea5e9;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --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;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-dark: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    
    /* Spacing */
    --section-padding: 90px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

/* ========================================
   Launch Announcement Banner - Clean White Style
   ======================================== */
.launch-banner {
    background: white;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%) 1;
    padding: 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body.has-launch-banner {
    padding-top: 50px;
}

body.has-launch-banner .navbar {
    top: 50px;
}

.launch-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 24px;
    position: relative;
}

.launch-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid #a7f3d0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.launch-banner-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.launch-banner-separator {
    width: 1px;
    height: 18px;
    background: var(--gray-200);
}

.launch-banner-text {
    color: var(--gray-600);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
}

.launch-banner-text strong {
    color: var(--gray-900);
    font-weight: 600;
}

.launch-banner-emoji {
    font-size: 15px;
    margin-right: 5px;
}

.launch-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.launch-banner-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

.launch-banner-cta i {
    font-size: 13px;
}

.launch-banner-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .launch-banner-content {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .launch-banner-text {
        font-size: 13px;
    }
    
    .launch-banner-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .launch-banner-cta {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    body.has-launch-banner {
        padding-top: 46px;
    }
    
    body.has-launch-banner .navbar {
        top: 46px;
    }
}

@media (max-width: 600px) {
    .launch-banner-desktop {
        display: none;
    }
    
    .launch-banner-cta {
        display: none;
    }
}

@media (max-width: 540px) {
    .launch-banner-content {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .launch-banner-separator {
        display: none;
    }
    
    .launch-banner-badge {
        font-size: 9px;
        padding: 4px 8px;
        gap: 6px;
    }
    
    .launch-banner-dot {
        width: 6px;
        height: 6px;
    }
    
    .launch-banner-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .launch-banner-emoji {
        font-size: 14px;
    }
    
    body.has-launch-banner {
        padding-top: 42px;
    }
    
    body.has-launch-banner .navbar {
        top: 42px;
    }
}

@media (max-width: 380px) {
    .launch-banner {
        padding: 8px 10px;
    }
    
    .launch-banner-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .launch-banner-text {
        font-size: 10px;
    }
    
    body.has-launch-banner {
        padding-top: 40px;
    }
    
    body.has-launch-banner .navbar {
        top: 40px;
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.2s ease;
}

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

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
}

.gradient-text {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
:root {
    --btn-primary-bg: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --btn-primary-color: white;
    --btn-primary-radius: 12px;
    --btn-primary-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
    --btn-outline-bg: white;
    --btn-outline-color: #3b82f6;
    --btn-outline-border: 2px solid #3b82f6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: #3b82f6;              /* blue-500 */
    color: white;
    border-radius: 12px;
    border: none;
    border-bottom: 4px solid #2563eb; /* blue-600 */
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #60a5fa;              /* blue-400 */
    border-bottom: 4px solid #3b82f6; /* blue-500 */
}

.btn-primary:active {
    border-bottom: 2px solid #3b82f6;
    transform: translateY(2px);
}

.btn-outline {
    background: var(--btn-outline-bg);
    color: var(--btn-outline-color);
    border: var(--btn-outline-border);
    border-radius: var(--btn-primary-radius);
    transition: all 0.25s ease;
    font-weight: 600;
}

.btn-outline:hover {
    background: #eff6ff;
    border-color: #60a5fa;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.btn-block {
    width: 100%;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--gray-300);
    border-color: var(--gray-300);
    color: var(--gray-500);
}

.btn-primary:disabled,
.btn-primary[disabled] {
    background: var(--gray-300);
    color: var(--gray-500);
}

.btn-outline:disabled,
.btn-outline[disabled] {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-400);
}

/* Pre-launch disabled state for links */
.btn-prelaunch {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--gray-300) !important;
    border-color: var(--gray-300) !important;
    color: var(--gray-500) !important;
}

.mobile-menu-cta.btn-prelaunch {
    background: var(--gray-200) !important;
    color: var(--gray-500) !important;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.logo i {
    font-size: 28px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-buttons .btn-ghost {
    color: var(--gray-600);
}

.nav-buttons .btn-ghost:hover {
    color: var(--primary);
    background: transparent;
}

.mobile-menu-btn {
    display: none;
    padding: 8px;
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 24px;
    cursor: pointer;
}

/* Hide mobile dropdown on desktop */
.mobile-dropdown {
    display: none;
}

.nav-links.active {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    gap: 0;
}

.nav-links.active a {
    padding: 12px 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

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

.nav-links.active a:last-child {
    border-bottom: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 105vh;
    padding: 160px 0 140px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 100%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
}

.hero-grid {
    display: none;
}

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

.hero-content {
    color: var(--gray-900);
}

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

.hero-badge i {
    color: var(--warning);
}

.hero-title {
    font-family: 'DM Sans', var(--font-sans);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

/* Typewriter Effect */
.hero-last-line {
    display: inline-block;
    white-space: nowrap;
}

.typewriter {
    display: inline;
    color: var(--primary);
}

.cursor {
    display: inline;
    animation: blink 0.7s infinite;
    color: var(--primary);
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

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

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Hero Image / Dashboard Mockup */
.hero-image {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f4 100%);
    border-bottom: 1px solid #e0e0e0;
}

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

.mockup-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-url {
    flex: 1;
    font-size: 9px;
    color: #5f6368;
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.mockup-content {
    aspect-ratio: 16/12;
    background: #f8fafc;
    overflow: hidden;
    font-size: 10px;
}

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

.mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-400);
}

.mockup-placeholder i {
    font-size: 64px;
    color: var(--primary);
    opacity: 0.5;
}

/* ========================================
   DASHBOARD MOCKUP RECREATION
   ======================================== */
.dash {
    display: flex;
    height: 100%;
    font-size: 8px;
    background: #f8fafc;
    user-select: none;
    pointer-events: none;
    transform-origin: top left;
}

.dash-sidebar {
    width: 140px;
    background: white;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6px;
    flex-shrink: 0;
}

.dash-sidebar-top {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 10px;
    color: #111827;
    padding: 2px 0 4px;
}

.dash-logo i {
    font-size: 14px;
    color: #2563eb;
}

.dash-search {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    color: #9ca3af;
    font-size: 7px;
    margin-bottom: 2px;
}

.dash-shortcut {
    margin-left: auto;
    font-size: 6px;
    background: white;
    padding: 1px 2px;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
}

.dash-station-select {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 5px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 4px;
    color: #0369a1;
    font-size: 7px;
    font-weight: 500;
    margin-bottom: 2px;
}

.dash-station-select i:last-child {
    margin-left: auto;
    font-size: 8px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2px;
}

.dash-nav-label {
    font-size: 5px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 4px 6px 1px;
    margin-top: 3px;
}

.dash-nav-label:first-child {
    margin-top: 0;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    color: #4b5563;
    font-size: 7px;
    font-weight: 500;
}

.dash-nav-item i {
    font-size: 8px;
    color: #9ca3af;
}

.dash-nav-item.active {
    background: #eff6ff;
    color: #2563eb;
}

.dash-nav-item.active i {
    color: #2563eb;
}

.dash-nav-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 3px 0;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px;
    border-top: 1px solid #e5e7eb;
    padding-top: 6px;
}

.dash-user-avatar {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 7px;
    font-weight: 600;
}

.dash-user-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dash-user-name {
    font-size: 8px;
    font-weight: 600;
    color: #111827;
}

.dash-user-role {
    font-size: 7px;
    color: #6b7280;
}

.dash-user i {
    color: #9ca3af;
    font-size: 10px;
}

/* Main Content */
.dash-main {
    flex: 1;
    padding: 10px 12px;
    overflow: hidden;
}

.dash-header {
    margin-bottom: 18px;
}

.dash-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dash-header h1 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}

.dash-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dash-filter-group {
    display: flex;
    background: #f3f4f6;
    border-radius: 4px;
    padding: 1px;
}

.dash-filter {
    padding: 3px 6px;
    font-size: 7px;
    font-weight: 500;
    color: #6b7280;
    border-radius: 3px;
}

.dash-filter.active {
    background: white;
    color: #111827;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.dash-date-picker {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 7px;
    color: #374151;
}

.dash-date-picker i {
    font-size: 9px;
    color: #6b7280;
}

/* Stats Cards */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.dash-stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 6px 8px;
}

.dash-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.dash-stat-header span {
    font-size: 6px;
    color: #6b7280;
}

.dash-stat-header i {
    font-size: 8px;
    color: #9ca3af;
}

.dash-stat-link {
    font-size: 6px;
    color: #2563eb;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
    text-align: right;
}

.dash-stat-spacer {
    height: 8px;
}

.dash-stat-value {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    font-family: var(--font-display);
    line-height: 1.2;
}

.dash-stat-trend {
    font-size: 5px;
    margin-top: 1px;
}

.dash-stat-trend.positive {
    color: #10b981;
}

/* Bottom Section */
.dash-bottom {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 8px;
    margin-top: 8px;
}

/* Tank Levels */
.dash-tanks {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px;
}

.dash-tanks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.dash-tanks-header h2 {
    font-size: 9px;
    font-weight: 600;
    color: #111827;
}

.dash-tank {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.dash-tank:last-child {
    border-bottom: none;
}

.dash-tank-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-tank-icon i {
    font-size: 10px;
}

/* SP95/E10 - Vert clair emerald */
.dash-tank-icon.sp95 {
    background: #ecfdf5;
    color: #4ADE80;
}

/* SP98 - Vert foncé */
.dash-tank-icon.sp98 {
    background: #f0fdf4;
    color: #16A34A;
}

/* GPLc - Gris foncé */
.dash-tank-icon.gplc {
    background: #f3f4f6;
    color: #1F2937;
}

/* Gazole - Jaune vif */
.dash-tank-icon.gazole {
    background: #fefce8;
    color: #FFEA2C;
}

.dash-tank-info {
    flex: 1;
}

.dash-tank-name {
    font-size: 8px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1px;
}

.dash-tank-name span {
    font-weight: 400;
    color: #9ca3af;
    margin-left: 3px;
}

.dash-tank-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin: 3px 0 2px;
}

.dash-tank-fill {
    height: 100%;
    border-radius: 2px;
}

/* SP95/E10 - Vert clair emerald */
.dash-tank-fill.sp95 {
    background: linear-gradient(90deg, #34d399, #4ADE80);
}

/* SP98 - Vert foncé */
.dash-tank-fill.sp98 {
    background: linear-gradient(90deg, #16A34A, #22c55e);
}

/* GPLc - Gris foncé */
.dash-tank-fill.gplc {
    background: linear-gradient(90deg, #1F2937, #374151);
}

/* Gazole - Jaune vif */
.dash-tank-fill.gazole {
    background: linear-gradient(90deg, #eab308, #FFEA2C);
}

.dash-tank-percent {
    font-size: 6px;
    color: #6b7280;
}

.dash-tank-value {
    text-align: right;
    font-size: 8px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}

.dash-tank-value span {
    font-weight: 400;
    color: #9ca3af;
    font-size: 7px;
}

/* Right Column */
.dash-right-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Actions du jour */
.dash-actions {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px;
}

.dash-actions h2 {
    font-size: 8px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.dash-action-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 4px;
    border-radius: 4px;
    margin-bottom: 1px;
}

.dash-action-item:hover {
    background: #f9fafb;
}

.dash-action-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-action-icon i {
    font-size: 7px;
}

.dash-action-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.dash-action-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.dash-action-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.dash-action-icon.green {
    background: #f0fdf4;
    color: #16a34a;
}

.dash-action-content {
    flex: 1;
    min-width: 0;
}

.dash-action-title {
    font-size: 7px;
    font-weight: 500;
    color: #111827;
    display: block;
    margin-bottom: 1px;
}

.dash-action-desc {
    font-size: 6px;
    color: #6b7280;
    font-weight: 500;
}

.dash-action-desc.red { color: #dc2626; }
.dash-action-desc.orange { color: #ea580c; }
.dash-action-desc.blue { color: #2563eb; }
.dash-action-desc.green { color: #16a34a; }

.dash-action-item > i {
    font-size: 8px;
    color: #9ca3af;
}

/* Tendance 7 jours */
.dash-trend {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px;
    flex: 1;
}

.dash-trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.dash-trend-header h2 {
    font-size: 8px;
    font-weight: 600;
    color: #111827;
}

.dash-trend-link {
    font-size: 6px;
    color: #2563eb;
    font-weight: 500;
}

.dash-trend-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3px;
}

.dash-trend-value {
    font-size: 10px;
    font-weight: 700;
    color: #111827;
    font-family: var(--font-display);
    line-height: 1.2;
}

.dash-trend-label {
    font-size: 6px;
    color: #6b7280;
    display: block;
    margin-top: 1px;
}

.dash-trend-badge {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 6px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 8px;
}

.dash-trend-badge.positive {
    background: #f0fdf4;
    color: #16a34a;
}

.dash-trend-badge.negative {
    background: #fef2f2;
    color: #dc2626;
}

.dash-trend-badge i {
    font-size: 8px;
}

/* Mini Chart SVG - Exactement comme dans le logiciel (h-24 = 96px) */
.dash-trend-chart {
    height: 28px;
    margin: 3px 0 2px;
    padding: 0;
}

.dash-chart-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.dash-trend-days {
    display: flex;
    justify-content: space-between;
    font-size: 5px;
    color: #9ca3af;
    margin-top: 2px;
    padding: 0 6px;
    font-weight: 500;
}

/* New Dashboard Elements */
.dash-nav-label {
    font-size: 6px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 6px 1px;
}

.dash-nav.compact .dash-nav-item {
    padding: 3px 6px;
}

.dash-nav.compact .dash-nav-label {
    padding: 3px 6px 1px;
    margin-top: 4px;
}

.dash-nav-badge {
    margin-left: auto;
    background: #fed7aa;
    color: #ea580c;
    font-size: 5px;
    font-weight: 600;
    padding: 1px 3px;
    border-radius: 6px;
    padding: 1px 4px;
    border-radius: 6px;
    min-width: 12px;
    text-align: center;
}

.dash-tank-icon.yellow {
    background: #fefce8;
    color: #eab308;
}

.dash-tank-fill.yellow {
    background: linear-gradient(90deg, #eab308, #facc15);
}

.dash-tank-fill-pending {
    position: absolute;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        #d1d5db,
        #d1d5db 2px,
        #e5e7eb 2px,
        #e5e7eb 4px
    );
    opacity: 0.7;
}

.dash-tank-bar {
    position: relative;
}

.dash-tank-value .incoming {
    color: #22c55e;
    font-weight: 500;
}

.dash-tank-delivery {
    font-size: 6px;
    color: #2563eb;
    white-space: nowrap;
    margin-left: auto;
}

/* Right Column */
.dash-right-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Actions du jour */
.dash-actions {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px;
}

.dash-actions h2 {
    font-size: 9px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.dash-action-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.dash-action-item:last-child {
    border-bottom: none;
}

.dash-action-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-action-icon i {
    font-size: 10px;
}

.dash-action-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.dash-action-icon.green {
    background: #f0fdf4;
    color: #22c55e;
}

.dash-action-content {
    flex: 1;
}

.dash-action-title {
    font-size: 7px;
    font-weight: 600;
    color: #111827;
    display: block;
}

.dash-action-desc {
    font-size: 6px;
    color: #2563eb;
}

.dash-action-item > i {
    font-size: 8px;
    color: #9ca3af;
}

/* Tendance 7 jours */
.dash-trend {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px;
    flex: 1;
}

.dash-trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.dash-trend-header h2 {
    font-size: 9px;
    font-weight: 600;
    color: #111827;
}

.dash-trend-value {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-trend-number {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    font-family: var(--font-display);
}

.dash-trend-badge {
    font-size: 6px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
}

.dash-trend-badge.negative {
    background: #fef2f2;
    color: #ef4444;
}

.dash-trend-badge.positive {
    background: #f0fdf4;
    color: #22c55e;
}

.dash-trend-label {
    font-size: 6px;
    color: #6b7280;
    display: block;
    margin-bottom: 6px;
}

.dash-trend-chart {
    margin-top: 4px;
}

.dash-chart-svg {
    width: 100%;
    height: 35px;
}

.dash-chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 5px;
    color: #9ca3af;
    margin-top: 2px;
}

/* Floating Cards */
/* Apple Premium Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.08);
    font-size: 11px;
    animation: floatApple 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.floating-card .card-label {
    display: block;
    color: #86868b;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.floating-card .card-value {
    display: block;
    font-weight: 600;
    font-size: 12px;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

.floating-card .card-value.success { color: #34c759; }
.floating-card .card-value.warning { color: #ff9500; }

.card-stock {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.card-stock i { 
    color: #007aff;
    background: rgba(0, 122, 255, 0.1);
}

.card-margin {
    top: 50%;
    right: -30px;
    animation-delay: 1.5s;
}

.card-margin i { 
    color: #34c759;
    background: rgba(52, 199, 89, 0.1);
}

.card-alert {
    bottom: 10%;
    left: -20px;
    animation-delay: 3s;
}

.card-alert i { 
    color: #ff9500;
    background: rgba(255, 149, 0, 0.1);
}

.card-indexation {
    top: 10%;
    right: -30px;
    animation-delay: 4.5s;
}

.card-indexation i { 
    color: #ff9500;
    background: rgba(255, 149, 0, 0.1);
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    font-weight: 500;
}

.scroll-indicator i {
    font-size: 20px;
}

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

/* Transition douce hero -> section suivante */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    z-index: 5;
}

/* Scroll Reveal Effect - Sections slide up smoothly */
.problem-section,
.features-section,
.demo-section,
.steps-section,
.testimonials-section,
.pricing-section,
.faq-section,
.cta-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.problem-section.revealed,
.features-section.revealed,
.demo-section.revealed,
.steps-section.revealed,
.testimonials-section.revealed,
.pricing-section.revealed,
.faq-section.revealed,
.cta-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: 40px 0;
    background: white;
}

.trust-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.trust-logo i {
    font-size: 20px;
}

/* ========================================
   PROBLEM / SOLUTION
   ======================================== */
.problem-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, white 0%, var(--gray-50) 30%, var(--gray-50) 70%, white 100%);
}

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

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow);
}

.comparison-card.problem {
    border-top: 4px solid var(--danger);
}

.comparison-card.solution {
    border-top: 4px solid var(--success);
}

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

.comparison-header i {
    font-size: 28px;
}

.comparison-card.problem .comparison-header i { color: var(--danger); }
.comparison-card.solution .comparison-header i { color: var(--success); }

.comparison-header h3 {
    font-size: 20px;
}

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

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.comparison-list i {
    font-size: 18px;
    margin-top: 2px;
}

.comparison-card.problem .comparison-list i { color: var(--danger); }
.comparison-card.solution .comparison-list i { color: var(--success); }

/* ========================================
   FEATURES
   ======================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, white 0%, var(--gray-50) 15%, var(--gray-50) 85%, white 100%);
}

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

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

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

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
}

.feature-icon.blue { 
    background: #eff6ff;
}
.feature-icon.blue i { color: #2563eb; }

.feature-icon.green { 
    background: #ecfdf5;
}
.feature-icon.green i { color: #059669; }

.feature-icon.purple { 
    background: #f5f3ff;
}
.feature-icon.purple i { color: #7c3aed; }

.feature-icon.orange { 
    background: #fff7ed;
}
.feature-icon.orange i { color: #d97706; }

.feature-icon.red { 
    background: #fef2f2;
}
.feature-icon.red i { color: #dc2626; }

.feature-icon.teal { 
    background: #f0fdfa;
}
.feature-icon.teal i { color: #0d9488; }

.feature-icon.indigo { 
    background: #eef2ff;
}
.feature-icon.indigo i { color: #4f46e5; }

.feature-icon.pink { 
    background: #fdf2f8;
}
.feature-icon.pink i { color: #db2777; }

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
}

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

/* ========================================
   VALUES GRID (À propos page - Nos valeurs)
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.value-icon i {
    font-size: 28px;
}

.value-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.value-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.value-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   ADVANTAGES GRID (À propos page)
   ======================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advantage-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.advantage-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.advantage-icon i {
    font-size: 24px;
}

.advantage-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.advantage-icon.orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.advantage-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.advantage-icon.teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.advantage-icon.indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.advantage-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.advantage-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   DEMO SECTION
   ======================================== */
.demo-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, white 0%, var(--gray-50) 30%, var(--gray-50) 70%, white 100%);
}

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

.demo-text .section-title {
    text-align: left;
}

.demo-text .section-subtitle {
    text-align: left;
    margin-bottom: 40px;
}

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

.demo-feature {
    display: flex;
    gap: 16px;
}

.demo-feature i {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.demo-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.demo-feature p {
    font-size: 14px;
    color: var(--gray-500);
}

.demo-browser {
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 12px 24px -8px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-browser:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.2),
        0 15px 30px -10px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.15);
}

.browser-dots span:first-child { background: linear-gradient(180deg, #ff6b6b, #ee5a5a); }
.browser-dots span:nth-child(2) { background: linear-gradient(180deg, #ffd43b, #fab005); }
.browser-dots span:last-child { background: linear-gradient(180deg, #51cf66, #40c057); }

.browser-content {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-400);
}

.demo-placeholder i {
    font-size: 64px;
    color: var(--primary);
    opacity: 0.3;
}

.demo-placeholder small {
    font-size: 12px;
}

/* Mini Dashboard Preview */
.mini-dash {
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
}

.mini-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mini-dash-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
}

.mini-dash-title i {
    color: #2563eb;
    font-size: 18px;
}

.mini-dash-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748b;
    background: white;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.06);
}

.mini-dash-date i {
    color: #2563eb;
}

.mini-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mini-stat {
    background: white;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.mini-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-stat-icon i {
    font-size: 18px;
}

.mini-stat-icon.blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
}

.mini-stat-icon.green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
}

.mini-stat-icon.orange {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #ea580c;
}

.mini-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-stat-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mini-stat-value {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.mini-stat-value.success {
    color: #16a34a;
}

.mini-dash-tanks {
    background: white;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    flex: 1;
}

.mini-tanks-title {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.mini-tank {
    margin-bottom: 10px;
}

.mini-tank:last-child {
    margin-bottom: 0;
}

.mini-tank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.mini-tank-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #334155;
}

.mini-tank-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mini-tank-dot.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.mini-tank-dot.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.mini-tank-dot.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.mini-tank-dot.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.mini-tank-pct {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

.mini-tank-bar {
    height: 8px;
    background: linear-gradient(180deg, #e2e8f0, #f1f5f9);
    border-radius: 4px;
    overflow: hidden;
}

.mini-tank-fill {
    height: 100%;
    border-radius: 4px;
    position: relative;
}

.mini-tank-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
}

.mini-tank-fill.red {
    background: linear-gradient(90deg, #ef4444, #f87171);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.mini-tank-fill.green {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.mini-tank-fill.teal {
    background: linear-gradient(90deg, #14b8a6, #2dd4bf);
    box-shadow: 0 2px 6px rgba(20, 184, 166, 0.3);
}

.mini-tank-fill.blue {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.mini-dash-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.mini-dash-alert i {
    font-size: 16px;
    color: #f59e0b;
}

.placeholder-dashboard {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    color: #94a3b8;
    gap: 12px;
}

.placeholder-dashboard i {
    font-size: 48px;
    color: #cbd5e1;
}

.placeholder-dashboard span {
    font-size: 14px;
    font-weight: 500;
}

.browser-url {
    font-size: 11px;
    color: var(--gray-500);
    margin-left: auto;
    background: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

/* ========================================
   STEPS
   ======================================== */
.steps-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, 
        white 0%, 
        #eff6ff 10%, 
        #f0f7ff 30%,
        #dbeafe 70%,
        #eff6ff 90%,
        white 100%
    );
    position: relative;
    overflow: hidden;
}

/* Gradient Blur Orbs */
.steps-section .orb-1,
.steps-section .orb-2,
.steps-section .orb-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.steps-section .orb-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: rgba(37, 99, 235, 0.3);
}

.steps-section .orb-2 {
    top: 160px;
    right: 80px;
    width: 384px;
    height: 384px;
    background: rgba(96, 165, 250, 0.3);
}

.steps-section .orb-3 {
    bottom: 80px;
    left: 33%;
    width: 320px;
    height: 320px;
    background: rgba(59, 130, 246, 0.3);
}

.steps-section .container {
    position: relative;
    z-index: 10;
}

/* New Step Cards Design */
.steps-grid-new {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: var(--primary);
    font-size: 32px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.step-arrow i {
    transition: var(--transition);
    font-weight: bold;
}

@media (max-width: 992px) {
    .steps-grid-new {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

.step-card-new {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    flex: 1;
    max-width: 340px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-card-new:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.step-big-number {
    font-size: 64px;
    font-weight: 700;
    color: #dbeafe;
    margin-bottom: 16px;
    line-height: 1;
    font-family: var(--font-display);
}

.step-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-card-new p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step-card-new {
        max-width: 100%;
        width: 100%;
    }
}

/* Old Step Cards (kept for reference) */
.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.step-icon i {
    font-size: 36px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-500);
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: var(--gray-300);
}

.step-connector i {
    font-size: 24px;
}

/* ========================================
   TESTIMONIALS - Premium Design
   ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    position: relative;
    padding: 20px 0;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(to right, #f1f5f9, transparent);
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(to left, #f1f5f9, transparent);
}

.testimonials-track {
    display: flex;
    gap: 28px;
    animation: scroll-testimonials 45s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    flex-shrink: 0;
    width: 340px;
    padding: 28px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Decorative quote mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
    pointer-events: none;
}

/* Gradient accent on hover */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(99, 102, 241, 0.2);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.5px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.author-avatar svg {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
    font-size: 15px;
    letter-spacing: -0.01em;
}

.author-role {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

/* ========================================
   PRICING
   ======================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: white;
}

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

.pricing-card {
    position: relative;
    padding: 40px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

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

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
}

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

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.pricing-features li i {
    font-size: 18px;
    color: var(--success);
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-features li.disabled i {
    color: var(--gray-300);
}

.pricing-footer {
    text-align: center;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.guarantee i {
    font-size: 20px;
    color: var(--success);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, white 0%, var(--gray-50) 30%, var(--gray-50) 70%, white 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.faq-question i {
    font-size: 20px;
    color: var(--gray-400);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

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

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

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.cta-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Plus Jakarta Sans', var(--font-sans);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 13px;
    color: var(--gray-400);
}

/* Contact Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-option i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--primary);
}

.contact-option div {
    display: flex;
    flex-direction: column;
}

.contact-option .contact-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-option a {
    color: var(--gray-900);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.contact-option a:hover {
    color: var(--primary);
}

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

.contact-form-wrapper h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

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

/* Responsive CTA Grid */
@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .contact-options {
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 24px;
    }
}

/* ========================================
   FOOTER - Design moderne et épuré
   ======================================== */
.footer {
    position: relative;
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--gray-600);
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.footer-top-gradient {
    display: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
}

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

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-brand .logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand .logo i {
    font-size: 28px;
    color: var(--primary);
}

.footer-brand > p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #64748b;
}

.footer-brand .logo span {
    color: #1e293b;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.footer-badge:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.footer-badge i {
    font-size: 12px;
    color: #3b82f6;
}

.footer-links-grid {
    display: flex;
    justify-content: flex-end;
    gap: 56px;
}

.footer-links h4 {
    color: #1e293b;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: #64748b;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 20px;
}

/* Newsletter Section - Ultra minimaliste */
.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-newsletter-content {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.footer-newsletter-content h4 {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    margin: 0;
}

.footer-newsletter-content h4 i {
    display: none;
}

.footer-newsletter-content p {
    display: none;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-newsletter-form input {
    width: 160px;
    padding: 6px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #1e293b;
    font-size: 12px;
    transition: all 0.2s ease;
}

.footer-newsletter-form input::placeholder {
    color: #94a3b8;
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.footer-newsletter-form button {
    padding: 6px 12px;
    background: #3b82f6;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.footer-newsletter-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer-newsletter-form button i {
    display: none;
}

.footer-newsletter-success {
    display: none;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 12px;
}

.footer-newsletter-success i {
    font-size: 14px;
}

.footer-newsletter-success.show {
    display: flex;
}

.footer-newsletter-form.hidden {
    display: none;
}

@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-newsletter-form {
        width: 100%;
    }
    
    .footer-newsletter-form input {
        flex: 1;
        width: auto;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
}

.footer-legal {
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Global mobile fixes */
* {
    -webkit-overflow-scrolling: touch;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-container {
        gap: 50px;
    }
    
    .dashboard-mockup {
        transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    }
    
    .demo-content {
        gap: 50px;
    }
    
    .cta-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Floating Header Style */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 12px;
        background: transparent;
        z-index: 1000;
    }
    
    .navbar.scrolled {
        background: transparent;
        box-shadow: none;
        padding: 12px;
    }
    
    .navbar-container {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 20px 28px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.6);
    }
    
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .mobile-menu-btn:hover {
        background: var(--primary-dark);
        transform: scale(1.05);
    }
    
    .mobile-menu-btn.active {
        background: var(--primary-dark);
    }
    
    /* Mobile Dropdown Menu */
    .mobile-dropdown {
        display: none;
        position: fixed;
        top: 90px;
        left: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 8px;
        z-index: 999;
        animation: mobileMenuSlide 0.3s ease;
    }
    
    .mobile-dropdown.active {
        display: block;
    }
    
    @keyframes mobileMenuSlide {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-dropdown a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        color: var(--gray-700);
        font-size: 15px;
        font-weight: 500;
        border-radius: 12px;
        transition: var(--transition);
    }
    
    .mobile-dropdown a:hover {
        background: var(--gray-50);
        color: var(--primary);
    }
    
    .mobile-dropdown a i {
        font-size: 20px;
        color: var(--primary);
    }
    
    .mobile-dropdown .mobile-menu-divider {
        height: 1px;
        background: var(--gray-200);
        margin: 8px 0;
    }
    
    .mobile-dropdown .mobile-menu-cta {
        display: block;
        padding: 14px 16px;
        background: var(--primary);
        color: white;
        text-align: center;
        font-weight: 600;
        border-radius: 12px;
        margin-top: 8px;
        transition: var(--transition);
    }
    
    .mobile-dropdown .mobile-menu-cta:hover {
        background: var(--primary-dark);
        color: white;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-subtitle {
        margin: 0 auto 24px;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-image {
        max-width: 100%;
        margin: 20px auto 0;
        padding: 0 10px;
    }
    
    .dashboard-mockup {
        transform: none;
        transform-origin: top center;
        max-width: 100%;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(28px, 7vw, 42px);
    }
    
    /* Scroll indicator hidden on mobile */
    .scroll-indicator {
        display: none;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-card {
        padding: 24px 20px;
    }
    
    .value-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .value-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .value-card p {
        font-size: 13px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .advantage-card {
        padding: 20px;
        gap: 14px;
    }
    
    .advantage-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .advantage-icon i {
        font-size: 20px;
    }
    
    .advantage-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .advantage-content p {
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-text {
        text-align: center;
    }
    
    .demo-text .section-title,
    .demo-text .section-subtitle {
        text-align: center;
    }
    
    .demo-features {
        text-align: left;
    }
    
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 20px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
        /* Garder l'ordre naturel : Essentiel → Multi-sites → Réseau */
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-links-grid {
        flex-wrap: wrap;
        gap: 32px 48px;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    /* Problem section mobile */
    .problem-section {
        padding: 60px 0;
    }
    
    /* Trust section mobile */
    .trust-logos {
        gap: 24px;
    }
    
    .trust-logo {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Hero Mobile Fixes */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
        overflow-x: hidden;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero-title .gradient-text {
        font-size: 24px;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat {
        padding: 10px 0;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .hero-badge span {
        display: inline;
    }
    
    /* Dashboard Mockup Mobile - HIDE completely on small screens */
    .hero-image {
        display: none;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2,
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* Cards Mobile - FULL WIDTH */
    .feature-card {
        padding: 20px;
        margin: 0;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    /* Comparison Cards Mobile */
    .comparison-card {
        padding: 20px;
    }
    
    .comparison-header h3 {
        font-size: 16px;
    }
    
    .comparison-list li {
        font-size: 13px;
    }
    
    /* Demo Section Mobile */
    .demo-content {
        gap: 30px;
    }
    
    .demo-text .section-title {
        font-size: 22px;
    }
    
    .demo-features {
        gap: 16px;
    }
    
    .demo-feature {
        gap: 12px;
    }
    
    .demo-feature i {
        font-size: 20px;
    }
    
    .demo-feature h4 {
        font-size: 14px;
    }
    
    .demo-feature p {
        font-size: 12px;
    }
    
    /* Steps Mobile */
    .step-card-new {
        padding: 20px;
    }
    
    .step-big-number {
        font-size: 40px;
    }
    
    .step-card-new h3 {
        font-size: 16px;
    }
    
    .step-card-new p {
        font-size: 13px;
    }
    
    .steps-grid-new {
        gap: 12px;
    }
    
    .step-arrow {
        display: none;
    }
    
    /* Pricing Mobile */
    .pricing-card {
        padding: 24px 16px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }
    
    .price-value {
        font-size: 32px;
    }
    
    .pricing-features li {
        font-size: 13px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        min-width: 240px;
        width: 240px;
        padding: 16px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        font-size: 14px;
        padding: 16px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 13px;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Contact Form Mobile */
    .contact-form-wrapper {
        padding: 20px 16px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 18px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 48px 0 20px;
    }
    
    .guarantee-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .guarantee {
        font-size: 13px;
    }
    
    .footer-main {
        text-align: center;
        gap: 32px;
    }
    
    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-brand > p {
        font-size: 12px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-links-grid {
        justify-content: center;
        gap: 24px 32px;
    }
    
    .footer-links {
        min-width: 90px;
    }
    
    .footer-links h4 {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-bottom {
        font-size: 11px;
    }
}

/* ========================================
   COOKIE CARD (bottom-right)
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    width: 380px;
    max-width: calc(100vw - 48px);
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cookie-banner::before {
    content: "🍪";
    font-size: 32px;
    line-height: 1;
}

.cookie-banner-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: none;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cookie-btn-refuse {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.cookie-btn-refuse:hover {
    background: var(--gray-200);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
        padding: 20px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ========================================
   FEATURE SHOWCASE - 8 Cards Animation
   ======================================== */

.showcase-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

/* Zone d'affichage du mockup */
.showcase-display {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.showcase-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mockup-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #94a3b8;
}

.mockup-placeholder i {
    font-size: 64px;
}

.mockup-placeholder span {
    font-size: 18px;
    font-weight: 500;
}

/* Grille des 8 cards */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.showcase-card.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.3);
}

.showcase-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.showcase-card-icon i {
    font-size: 24px;
    color: #64748b;
    transition: color 0.3s ease;
}

.showcase-card.active .showcase-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
}

.showcase-card.active .showcase-card-icon i {
    color: white;
}

.showcase-card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.showcase-card-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* Indicateur de progression */
.showcase-card-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
    border-radius: 0 0 16px 16px;
    transition: width 0.1s linear;
}

.showcase-card.active .showcase-card-indicator {
    animation: indicatorProgress 4s linear forwards;
}

@keyframes indicatorProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Animation du mockup */
.showcase-mockup.fade-out {
    opacity: 0;
    transform: scale(0.98);
}

.showcase-mockup.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .showcase-card {
        padding: 16px;
    }
    
    .showcase-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .showcase-card-icon i {
        font-size: 20px;
    }
    
    .showcase-card-content h4 {
        font-size: 14px;
    }
    
    .showcase-card-content p {
        font-size: 12px;
    }
    
    .showcase-display {
        aspect-ratio: 4 / 3;
    }
}

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

