/* ============================================
   LANDING PAGE - LOGICIEL GESTION TRANSPORT
   Design moderne, professionnel, B2B SaaS
   ============================================ */

/* Variables CSS */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --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);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.5);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.landing-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.landing-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.landing-logo img {
    height: 45px;
    width: auto;
}

.landing-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
}

.landing-header.scrolled .landing-logo span {
    color: var(--dark);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.landing-header.scrolled .landing-nav a {
    color: var(--gray-700);
}

.landing-nav a:hover {
    color: var(--accent);
}

.landing-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.landing-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.landing-header.scrolled .mobile-menu-toggle {
    color: var(--dark);
}

/* ============================================
   HERO SECTION - NIGHT MODE SLIDER
   Design sombre, immersif, slider principal
   ============================================ */

.hero-night-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1a1f3a 50%, #0f172a 100%);
    padding: 0;
}

.hero-night-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Slider Container */
.hero-night-slider-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 2rem 0;
}

.hero-night-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-night-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-night-slide-active {
    opacity: 1;
    pointer-events: auto;
}

.slide-content {
    flex: 1;
    max-width: 600px;
    animation: slideContentIn 0.8s ease 0.2s backwards;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 900;
}

.slide-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.feature-check i {
    color: var(--success);
    font-size: 1.25rem;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Slide Visual */
.slide-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    animation: slideVisualIn 0.8s ease 0.3s backwards;
    position: relative;
    z-index: 10;
}

@keyframes slideVisualIn {
    from {
        opacity: 0;
        transform: translateX(60px) rotateY(-20deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.slide-visual i {
    font-size: 200px;
    color: rgba(37, 99, 235, 0.15);
    filter: drop-shadow(0 20px 60px rgba(37, 99, 235, 0.2));
}

/* Navigation */
.hero-night-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.night-nav-prev,
.night-nav-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
}

.night-nav-prev:hover,
.night-nav-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.night-dots {
    display: flex;
    gap: 1rem;
}

.night-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.night-dot-active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

.night-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* CTA Banner */
.hero-night-banner {
    position: relative;
    z-index: 2;
    background: rgba(37, 99, 235, 0.15);
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.hero-night-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Night Slider */
@media (max-width: 1024px) {
    .hero-night-slide {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .slide-visual {
        margin-top: 2rem;
    }
    
    .slide-visual i {
        font-size: 120px;
    }
    
    .slide-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-night-slider {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-night-slider-container {
        min-height: 100vh;
        max-height: none;
        overflow: visible;
        flex-direction: column;
        padding: 0;
    }
    
    .hero-night-slides {
        width: 100%;
        height: 100vh;
        position: relative;
    }
    
    .hero-night-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
        text-align: center;
        width: 100%;
        height: auto;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
    }
    
    .hero-night-slide-active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-content {
        max-width: 100%;
    }
    
    .slide-visual {
        display: none;
    }
    
    .slide-visual i {
        font-size: 80px;
    }
    
    .hero-night-nav {
        bottom: 1rem;
        gap: 2rem;
    }
    
    .night-nav-prev,
    .night-nav-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .night-dots {
        gap: 0.75rem;
    }
    
    .hero-night-banner {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .hero-night-banner p {
        font-size: 1rem;
    }
}

/* ============================================
   PROBLEMS SECTION - NOUVEAU DESIGN MODERNE
   ============================================ */
.problems-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* ============================================
   DEPRECATED CSS - OLD SLIDERS REMOVED
   
   All CSS for rejected slider designs has been cleaned.
   Only .hero-night-slider CSS is retained.
   ============================================ */

/* ============================================
   PROBLEMS SECTION - NOUVEAU DESIGN MODERNE
   ============================================ */
.problems-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.problems-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

/* Introduction Split Layout */
.problems-intro-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.problems-intro-content {
    position: relative;
}

.section-label-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: var(--danger);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.section-label-large i {
    font-size: 1.25rem;
}

.section-title-xl {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.accent-dot {
    color: var(--danger);
    font-weight: 800;
}

.problems-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.problems-question {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.problems-stats-mini {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-mini-item {
    display: flex;
    flex-direction: column;
}

.stat-mini-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-mini-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visual Graphic */
.problems-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problems-visual-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    animation: rotate-slow 20s linear infinite;
}

.circle-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(37, 99, 235, 0.2);
    top: 0;
    left: 0;
}

.circle-2 {
    width: 70%;
    height: 70%;
    border-color: rgba(239, 68, 68, 0.2);
    top: 15%;
    left: 15%;
    animation-duration: 15s;
    animation-direction: reverse;
}

.circle-3 {
    width: 40%;
    height: 40%;
    border-color: rgba(245, 158, 11, 0.2);
    top: 30%;
    left: 30%;
    animation-duration: 10s;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.visual-icon-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon-wrapper i {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.visual-icon-wrapper i:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--danger);
    animation-delay: 0s;
}

.visual-icon-wrapper i:nth-child(2) {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    animation-delay: 0.75s;
}

.visual-icon-wrapper i:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    animation-delay: 1.5s;
}

.visual-icon-wrapper i:nth-child(4) {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success);
    animation-delay: 2.25s;
}

/* Cards Grid Modern */
.problems-cards-wrapper {
    margin-top: 4rem;
}

.problems-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.problem-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.problem-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gray-300);
    transition: var(--transition);
}

.problem-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.problem-card-modern:hover::before {
    width: 100%;
    opacity: 0.05;
}

.problem-card-accent::before {
    background: var(--danger);
}

.problem-card-highlight::before {
    background: var(--accent);
}

.problem-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.problem-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--danger);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.15);
    transition: var(--transition);
}

.problem-card-modern:hover .problem-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.problem-card-highlight .problem-icon-modern {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: var(--accent);
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.15);
}

.problem-card-modern h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.problem-card-modern p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.problem-impact {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-badge.danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.impact-badge.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.impact-badge.high {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.impact-badge.medium {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.1) 100%);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

/* Solution Teaser */
.problems-solution-teaser {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.problems-solution-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.teaser-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.teaser-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px 0 rgba(245, 158, 11, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px 0 rgba(245, 158, 11, 0.6);
    }
}

.teaser-text {
    flex: 1;
}

.teaser-text h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.teaser-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1.125rem;
}

/* Responsive Problems Section */
@media (max-width: 1024px) {
    .problems-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .problems-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-visual-graphic {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .problems-section {
        padding: 4rem 0;
    }
    
    .problems-intro-wrapper {
        padding: 2rem;
    }
    
    .section-title-xl {
        font-size: 2rem;
    }
    
    .problems-lead {
        font-size: 1.125rem;
    }
    
    .problems-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }
    
    .problems-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card-modern {
        padding: 2rem;
    }
    
    .teaser-content {
        flex-direction: column;
        text-align: center;
    }
    
    .teaser-text h3 {
        font-size: 1.5rem;
    }
}

/* Old Styles - Keep for compatibility */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--danger);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
    border-radius: 0 0 0 100%;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--danger);
    margin-bottom: 1.5rem;
}

.problem-card h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9375rem;
}

.problems-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px dashed var(--primary);
}

.problems-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.problems-cta span {
    color: var(--primary);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    padding: 6rem 0;
    background: var(--white);
}

.solution-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.solution-text h2 {
    margin-bottom: 1.5rem;
}

.solution-text h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-text p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.solution-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--gray-700);
}

.solution-checklist li i {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.solution-visual {
    position: relative;
}

.solution-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.solution-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.feature-icon i {
    color: var(--white) !important;
}

.feature-card h4 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   CTA SECTIONS - Appels à l'action
   ============================================ */

/* CTA après Solution */
.section-cta {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: var(--radius-2xl);
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-note i {
    color: #10b981;
}

/* CTA Final après Benefits */
.final-cta {
    margin-top: 5rem;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-features {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.cta-features i {
    color: #10b981;
    font-size: 1.25rem;
}

.final-cta-action {
    text-align: center;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.cta-pricing {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-pricing strong {
    color: var(--white);
    font-size: 1.5rem;
}

.cta-trust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.trust-item i {
    color: #fbbf24;
    font-size: 1.1rem;
}

/* Responsive CTAs */
@media (max-width: 768px) {
    .section-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .final-cta {
        padding: 3rem 2rem;
    }
    
    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .final-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .btn-xl {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.benefits-section .section-header {
    position: relative;
    z-index: 1;
}

.benefits-section .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px 0 rgba(245, 158, 11, 0.4);
}

.benefit-card h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.benefit-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    padding: 6rem 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-us-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.why-us-card:hover {
    background: var(--gray-50);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.why-us-card h4 {
    margin-bottom: 0.75rem;
}

.why-us-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9375rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.cta-trust i {
    color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.pricing-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.pricing-card--popular {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08), var(--shadow-xl);
}

.pricing-ribbon {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}

.pricing-head {
    margin-bottom: 1.5rem;
}

.pricing-head h3 {
    margin: 0.5rem 0 0.25rem;
    color: var(--dark);
}

.pricing-for {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.pricing-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-weight: 600;
    border-radius: 999px;
    font-size: 0.8rem;
}

.pricing-chip-accent {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price .price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
}

.pricing-price .per {
    color: var(--gray-500);
    font-weight: 600;
}

.pricing-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 0.75rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.pricing-list i {
    color: var(--success);
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.pricing-cta {
    width: 100%;
}

.pricing-note {
    margin: 2.5rem auto 0;
    max-width: 720px;
    background: var(--gray-50);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1rem 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
}

.pricing-note i {
    color: var(--primary);
}

.pricing-faq {
    margin-top: 4rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-faq h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.pricing-faq .faq-item {
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.pricing-faq .faq-item h5 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-faq .faq-item h5 i {
    color: var(--primary);
}

.pricing-faq .faq-item p {
    margin: 0;
    color: var(--gray-600);
}

/* ============================================
   PRICING VALUE PROPOSITIONS
   ============================================ */
.pricing-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 0;
}

.value-prop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.value-prop:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    transform: translateY(-4px);
}

.value-prop i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-prop h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.value-prop p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   PRICING HIGHLIGHT & SAVINGS
   ============================================ */
.pricing-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
    color: #b45309;
    font-weight: 700;
    border-radius: 999px;
    font-size: 0.8rem;
}

.price-saving {
    display: block;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.price-custom {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-footer-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   PRICING GUARANTEES SECTION
   ============================================ */
.pricing-guarantees {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(37, 99, 235, 0.1);
    text-align: center;
}

.pricing-guarantees h3 {
    margin-bottom: 3rem;
    color: var(--dark);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guarantee-item {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.guarantee-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.guarantee-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.guarantee-item h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.guarantee-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

.guarantee-footer {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin: 0;
    padding-top: 1.5rem;
}

/* ============================================
   RESPONSIVE PRICING
   ============================================ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-guarantees {
        padding: 2rem;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.75rem;
    }
    
    .pricing-value-props {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .pricing-guarantees {
        padding: 1.75rem;
        margin-top: 3rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-item {
        padding: 1.5rem;
    }
    
    .pricing-price .price {
        font-size: 2.25rem;
    }
}

.landing-footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: block;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .landing-logo {
    margin-bottom: 1.5rem;
}

.footer-brand .landing-logo span {
    color: var(--white);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: var(--white) !important;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        padding: 7rem 0 3rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stat {
        flex: 1 1 45%;
    }
    
    .solution-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-visual {
        order: -1;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .problems-grid,
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    opacity: 1;
}

/* Stagger delays */
[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }
[data-delay="600"] { animation-delay: 0.6s; }[data-delay="700"] { animation-delay: 0.7s; }
[data-delay="800"] { animation-delay: 0.8s; }
[data-delay="900"] { animation-delay: 0.9s; }

/* ============================================
   HERO SECTION - NOUVEAU DESIGN GPS
   ============================================ */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-item i {
    color: var(--accent-light);
    font-size: 1.25rem;
}

.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.hero-note i {
    color: var(--success);
}

.hero-visual {
    position: relative;
}

.hero-dashboard-mockup {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.hero-floating-card strong {
    display: block;
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 700;
}

.hero-floating-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.hero-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    display: block;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SOLUTION DATA FLOW
   ============================================ */
.solution-data-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.data-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    min-width: 100px;
}

.data-flow-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.data-flow-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.solution-data-flow > .fas {
    color: var(--primary);
    font-size: 1.25rem;
}

.solution-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
}

.stat-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-item strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.stat-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ============================================
   GPS TRACKING SECTION - MODERN DESIGN
   ============================================ */
.gps-tracking-section-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.gps-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Header GPS */
.gps-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label-gps {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.1);
}

.gps-title-xl {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gps-subtitle-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto;
}

/* Split Layout: Carte + Stats */
.gps-split-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Carte GPS Container */
.gps-map-container {
    position: relative;
}

.gps-map-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

.gps-map-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Markers GPS */
.gps-marker {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.gps-marker:hover {
    transform: scale(1.15);
}

.marker-active {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.marker-available {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.marker-maintenance {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    animation: pulse-wave 2s ease-out infinite;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.marker-pos-1 {
    top: 25%;
    left: 35%;
}

.marker-pos-2 {
    top: 55%;
    right: 30%;
    animation-delay: 0.5s;
}

.marker-pos-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 1s;
}

/* Vehicle Card */
.gps-vehicle-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    min-width: 320px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.vehicle-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gray-100);
}

.vehicle-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.vehicle-identity {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-identity strong {
    color: var(--dark);
    font-size: 1.125rem;
}

.vehicle-plate {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 600;
}

.vehicle-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-mission {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-mission i {
    font-size: 0.5rem;
    animation: blink 1.5s infinite;
}

.vehicle-card-stats {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vehicle-card-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.vehicle-card-stats .stat-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
}

.vehicle-card-stats .stat-data {
    display: flex;
    flex-direction: column;
}

.vehicle-card-stats .stat-data strong {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.vehicle-card-stats .stat-data span {
    color: var(--gray-600);
    font-size: 0.8rem;
}

.vehicle-card-footer {
    display: flex;
    gap: 0.75rem;
}

.card-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--gray-50);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Map Legend */
.map-legend {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.map-legend h5 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1rem;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.legend-dot.status-mission {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.legend-dot.status-available {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.legend-dot.status-maintenance {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.legend-dot.status-alarm {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

/* Stats Panel */
.gps-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stats-header h4 {
    color: var(--dark);
    font-size: 1.25rem;
    margin: 0;
}

.stats-refresh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.stats-refresh i {
    color: var(--primary);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-grid {
    display: grid;
    gap: 1rem;
}

.stat-box {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.stat-primary::before {
    background: linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
}

.stat-success::before {
    background: linear-gradient(180deg, #10b981 0%, #34d399 100%);
}

.stat-warning::before {
    background: linear-gradient(180deg, #f59e0b 0%, #fbbf24 100%);
}

.stat-info::before {
    background: linear-gradient(180deg, #06b6d4 0%, #22d3ee 100%);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.stat-primary .stat-icon-box {
    background: var(--gradient-primary);
}

.stat-success .stat-icon-box {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.stat-warning .stat-icon-box {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.stat-info .stat-icon-box {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.625rem;
    border-radius: 50px;
}

.stat-trend.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.stat-trend.neutral {
    background: rgba(107, 114, 128, 0.1);
    color: var(--gray-600);
}

/* Quick Actions */
.quick-actions {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.quick-actions h5 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1rem;
}

.action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

.action-btn:last-child {
    margin-bottom: 0;
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateX(5px);
}

.action-btn i {
    font-size: 1.125rem;
}

/* Features Modern Grid */
.gps-features-modern {
    margin-top: 5rem;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card-modern {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: var(--transition);
}

.feature-card-inner {
    padding: 2.5rem;
    position: relative;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    height: 100%;
    transition: var(--transition);
}

.feature-card-modern:hover .feature-card-inner {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.feature-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.icon-tracking {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.icon-mileage {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.icon-fuel {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.icon-maintenance {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.feature-card-modern h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card-modern p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.feature-card-modern:hover .benefit-tag {
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--primary);
}

.benefit-tag i {
    font-size: 0.9rem;
}

/* Responsive GPS Modern */
@media (max-width: 1024px) {
    .gps-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gps-tracking-section-modern {
        padding: 4rem 0;
    }
    
    .gps-title-xl {
        font-size: 2rem;
    }
    
    .gps-subtitle-lead {
        font-size: 1.125rem;
    }
    
    .gps-vehicle-card {
        position: static;
        margin-top: 1rem;
        min-width: auto;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-box {
        flex-wrap: wrap;
    }
    
    .feature-card-inner {
        padding: 2rem;
    }
}

/* Old GPS Tracking Section - Backward compatibility */
.gps-tracking-section {
    padding: 6rem 0;
    background: var(--white);
}

.gps-visual-container {
    margin: 4rem 0;
    position: relative;
}

.gps-map-mockup {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.gps-map-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.gps-vehicle-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
}

.marker-1 {
    top: 20%;
    left: 30%;
}

.marker-2 {
    top: 50%;
    right: 25%;
    animation-delay: 0.5s;
}

.marker-3 {
    bottom: 25%;
    left: 50%;
    animation-delay: 1s;
}

.gps-info-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    min-width: 300px;
}

.vehicle-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.vehicle-info strong {
    color: var(--dark);
    font-size: 1rem;
}

.status-active {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
}

.status-active i {
    font-size: 0.5rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.vehicle-stats {
    display: grid;
    gap: 0.75rem;
}

.vehicle-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.vehicle-stats .stat i {
    color: var(--primary);
}

.gps-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gps-feature-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.gps-feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.gps-feature-card h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.gps-feature-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gps-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.gps-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.gps-feature-list i {
    color: var(--success);
    font-size: 0.85rem;
}

/* ============================================
   GPS DATA CHAIN - MODERN DESIGN
   ============================================ */
.gps-data-chain-modern {
    margin-top: 6rem;
    padding: 4rem 0;
    position: relative;
}

.data-chain-header {
    text-align: center;
    margin-bottom: 4rem;
}

.data-chain-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.data-chain-header h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--dark);
}

.data-chain-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.data-chain-flow-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.chain-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chain-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.chain-step-card {
    background: var(--white);
    padding: 2.5rem 1.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
}

.chain-step-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.chain-step-card.card-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-color: var(--primary);
    border-width: 3px;
}

.chain-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.gps-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.missions-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.fuel-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.maintenance-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.profit-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.chain-step-card h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.chain-step-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.chain-step-data {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: auto;
}

.data-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--gray-700);
    text-align: left;
}

.data-point i {
    color: var(--primary);
    font-size: 0.9rem;
}

.chain-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    z-index: 1;
}

.chain-step-final .chain-connector {
    display: none;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--secondary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.connector-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    box-shadow: var(--shadow-sm);
}

/* Benefits Summary */
.data-chain-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
    border-radius: var(--radius-2xl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-content strong {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
}

.benefit-content span {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive GPS Data Chain */
@media (max-width: 1200px) {
    .data-chain-flow-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
    }
    
    .chain-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .gps-data-chain-modern {
        padding: 3rem 0;
    }
    
    .data-chain-header {
        margin-bottom: 3rem;
    }
    
    .data-chain-flow-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chain-step-card {
        min-height: auto;
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .data-chain-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
}

/* Old GPS Data Chain - Keep for backward compatibility */
.gps-data-chain {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: var(--radius-2xl);
    text-align: center;
}

.gps-data-chain h3 {
    margin-bottom: 3rem;
    color: var(--dark);
}

.data-chain-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.chain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    min-width: 140px;
    transition: var(--transition);
}

.chain-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.chain-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.chain-item h5 {
    margin: 0;
    color: var(--dark);
    font-size: 1rem;
}

.chain-item p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.chain-arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

.gps-cta-box {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gps-cta-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gps-cta-content h3 i {
    color: var(--accent-light);
}

.gps-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   RESPONSIVE GPS SECTION
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .gps-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-chain-flow {
        flex-direction: column;
    }
    
    .chain-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-floating-card {
        position: static;
        margin: 1rem 0;
    }
    
    .solution-data-flow {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .solution-data-flow > .fas {
        transform: rotate(90deg);
    }
    
    .gps-features-grid {
        grid-template-columns: 1fr;
    }
    
    .gps-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .gps-info-card {
        position: static;
        margin-top: 1rem;
    }
}