/* =====================================================
   MyLeads Premium - Feuille de styles principale v2.0
   Design moderne avec palette de couleurs vibrantes
   ===================================================== */

/* Variables CSS - Palette MyLeads Premium */
:root {
    /* Couleurs principales exactes */
    --rose-magenta: rgb(184, 80, 143);
    --bleu-moyen: rgb(75, 92, 166);
    --rose-fonce: rgb(174, 78, 133);
    --bleu-indigo: rgb(75, 93, 164);
    --cyan: rgb(49, 148, 183);
    --cyan-lumineux: rgb(50, 149, 184);
    --rose-fuchsia: rgb(199, 85, 173);
    --bleu-fonce: rgb(75, 94, 173);
    
    /* Couleurs d'accent */
    --accent-1: #B8508F;
    --accent-2: #3294B6;
    --accent-3: #C755AD;
    
    /* Gradients principaux */
    --gradient-primary: linear-gradient(to right, #C755AD, #4A93B8);
    --gradient-reverse: linear-gradient(to left, #C755AD, #4A93B8);
    --gradient-diagonal: linear-gradient(135deg, #C755AD 0%, #4A93B8 100%);
    --gradient-vertical: linear-gradient(to bottom, #C755AD, #4A93B8);
    
    /* Gradients additionnels */
    --gradient-1: linear-gradient(135deg, var(--rose-fuchsia) 0%, var(--cyan) 100%);
    --gradient-2: linear-gradient(135deg, var(--bleu-moyen) 0%, var(--cyan-lumineux) 100%);
    --gradient-3: linear-gradient(135deg, var(--rose-magenta) 0%, var(--bleu-indigo) 100%);
    
    /* Couleurs de texte et fond */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5e;
    --text-light: #6b6b7b;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fb;
    --bg-light: #f0f2f5;
    --bg-dark: #1a1a2e;
    
    /* Bordures et ombres */
    --border: rgba(75, 93, 164, 0.1);
    --border-light: rgba(199, 85, 173, 0.08);
    
    --shadow-sm: 0 2px 8px rgba(75, 93, 164, 0.08);
    --shadow: 0 4px 24px rgba(75, 93, 164, 0.12);
    --shadow-lg: 0 12px 48px rgba(75, 93, 164, 0.16);
    --shadow-xl: 0 24px 80px rgba(75, 93, 164, 0.20);
    --shadow-colored: 0 8px 32px rgba(199, 85, 173, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HERO SECTION PREMIUM
   ===================================================== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 50%, #f0f2f5 100%);
}

/* Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(199, 85, 173, 0.1), rgba(75, 93, 164, 0.1));
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bleu-moyen);
    border: 1px solid rgba(199, 85, 173, 0.2);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--rose-fuchsia);
}

/* Hero Title avec animations */
.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    min-height: 160px; /* Hauteur fixe pour éviter les sauts */
}

.title-line-1,
.title-line-2 {
    display: block;
}

.rotating-container {
    display: inline-block;
    position: relative;
    min-width: 250px; /* Largeur fixe pour le conteneur */
    text-align: left;
}

.rotating-text {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.gradient-animated {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.title-line-3 {
    display: block;
}

.text-highlight {
    color: var(--bleu-moyen);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underline-grow 0.8s ease-out forwards;
}

@keyframes underline-grow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.rotating-container {
    display: inline-block;
    position: relative;
}

.rotating-text {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-rotate 4s ease infinite;
}

@keyframes text-rotate {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 0;
        transform: translateY(20px);
    }
    75% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Value Props Grid */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-prop-item:hover {
    transform: translateY(-2px);
    border-color: var(--rose-fuchsia);
    box-shadow: var(--shadow);
}

.prop-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prop-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.prop-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.prop-content span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Premium Glassmorphism */
.hero-cta-container {
    margin-top: 48px;
}

.cta-premium-glass {
    display: inline-flex;
    align-items: center;
    position: relative;
    background: var(--gradient-primary);
    padding: 0;
    border-radius: 60px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(199, 85, 173, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cta-premium-glass:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(199, 85, 173, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-content {
    display: flex;
    align-items: center;
}

.cta-text {
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.cta-price {
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-premium-glass:hover .cta-glow {
    opacity: 1;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--cyan);
}

/* Hero Visual - Dashboard 3D */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-3d {
    position: relative;
    transform-style: preserve-3d;
    animation: float-dashboard 6s ease-in-out infinite;
}

@keyframes float-dashboard {
    0%, 100% {
        transform: translateY(0) rotateX(5deg) rotateY(-10deg);
    }
    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(-10deg);
    }
}

.dashboard-window {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(75, 93, 164, 0.15),
        0 0 0 1px rgba(199, 85, 173, 0.1);
    overflow: hidden;
    transform: translateZ(20px);
}

.window-header {
    background: linear-gradient(to right, rgba(199, 85, 173, 0.05), rgba(75, 93, 164, 0.05));
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.window-controls span:first-child {
    background: #ff5f57;
}

.window-controls span:nth-child(2) {
    background: #ffbd2e;
}

.window-controls span:last-child {
    background: #28ca42;
}

.window-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-body {
    padding: 32px;
}

/* Stats Cards Animées */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    padding: 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: 140px;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card.gradient-1 {
    background: linear-gradient(135deg, var(--rose-fuchsia) 0%, var(--rose-magenta) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(199, 85, 173, 0.3);
}

.stat-card.gradient-2 {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--bleu-moyen) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(49, 148, 183, 0.3);
}

.stat-card.gradient-3 {
    background: linear-gradient(135deg, var(--rose-magenta) 0%, var(--bleu-indigo) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(184, 80, 143, 0.3);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-icon svg {
    color: white;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    color: white;
    opacity: 1;
}

/* Live Leads Stream */
.live-leads-container {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.leads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.leads-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--rose-fuchsia);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--rose-fuchsia);
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% {
        box-shadow: 0 0 0 0 rgba(199, 85, 173, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(199, 85, 173, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(199, 85, 173, 0);
    }
}

.leads-stream {
    max-height: 200px;
    overflow-y: auto;
}

.lead-item {
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lead-name {
    font-weight: 600;
    color: var(--text-primary);
}

.lead-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Conversion Chart */
.conversion-chart {
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 10;
    animation: float-badge 4s ease-in-out infinite;
}

.badge-1 {
    top: -20px;
    right: -40px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -60px;
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.floating-badge svg {
    width: 20px;
    height: 20px;
    color: var(--rose-fuchsia);
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.animate-float {
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================================================
   SOCIAL PROOF BANNER
   ===================================================== */
.social-proof-banner {
    background: var(--gradient-primary);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.proof-slider {
    position: relative;
}

.proof-track {
    display: flex;
    animation: scroll-proof 20s linear infinite;
}

@keyframes scroll-proof {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.proof-item {
    flex-shrink: 0;
    padding: 0 40px;
    color: white;
    font-size: 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-item strong {
    font-size: 20px;
    font-weight: 800;
}

/* =====================================================
   VIDEO TESTIMONIALS MODERN
   ===================================================== */
.video-testimonials-modern {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rose-fuchsia);
    margin-bottom: 16px;
}

.section-title-gradient {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.gradient-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* Testimonials Grid */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-modern {
    position: relative;
    cursor: pointer;
}

.card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card-modern:hover .card-inner {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.video-container-modern {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-card-modern:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card-modern:hover .play-overlay {
    opacity: 1;
}

.play-button-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(199, 85, 173, 0.4);
}

.play-button-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(199, 85, 173, 0.5);
}

.play-button-modern svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.duration-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.testimonial-card-modern.playing .video-thumbnail,
.testimonial-card-modern.playing .play-overlay,
.testimonial-card-modern.playing .duration-badge {
    display: none;
}

.testimonial-card-modern.playing .testimonial-video-element {
    display: block;
}

/* Testimonial Info */
.testimonial-info {
    padding: 24px;
}

.testimonial-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 12px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--cyan);
    font-weight: 600;
}

.verified-badge svg {
    width: 16px;
    height: 16px;
}

/* =====================================================
   PROBLEM/SOLUTION SPLIT
   ===================================================== */
.problem-solution-split {
    position: relative;
    min-height: 600px;
    background: white;
    overflow: hidden;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.split-side {
    padding: 80px 60px;
    position: relative;
}

.problem-side {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 20%, #fbbf24 100%);
}

.solution-side {
    background: var(--gradient-diagonal);
}

.split-content {
    max-width: 500px;
    margin: 0 auto;
}

.split-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-side .icon-container {
    color: #dc2626;
}

.solution-side .icon-container {
    color: white;
}

.split-header h3 {
    font-size: 32px;
    font-weight: 800;
}

.problem-side h3 {
    color: #991b1b;
}

.solution-side h3 {
    color: white;
}

/* Lists */
.problems-list,
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-item,
.solution-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-number {
    font-size: 48px;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
    min-width: 100px;
}

.solution-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    min-width: 100px;
}

.problem-text strong,
.solution-text strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.problem-text {
    color: #7f1d1d;
}

.solution-text {
    color: white;
}

.problem-text p,
.solution-text p {
    opacity: 0.8;
    font-size: 16px;
}

/* =====================================================
   HOW IT WORKS TIMELINE
   ===================================================== */
.how-it-works-timeline {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.timeline-container {
    max-width: 800px;
    margin: 60px auto;
    position: relative;
}

.timeline-progress {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.step-marker {
    position: relative;
    margin: 0 auto 24px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.timeline-step.active .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: 1;
}

.timeline-step.active .step-pulse {
    animation: pulse-step 2s infinite;
}

@keyframes pulse-step {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 8px;
}

.step-detail {
    font-size: 14px;
    color: var(--rose-fuchsia);
    font-weight: 600;
}

/* CTA Button */
.cta-center {
    text-align: center;
    margin-top: 60px;
}

.btn-gradient-animated {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-colored);
    animation: gradient-move 3s ease infinite;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-gradient-animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(199, 85, 173, 0.35);
}

.btn-gradient-animated svg {
    transition: transform 0.3s ease;
}

.btn-gradient-animated:hover svg {
    transform: translateX(4px);
}

/* =====================================================
   FEATURES BENTO GRID
   ===================================================== */
.features-modern {
    padding: 100px 0;
    background: white;
}

.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-bento-item {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Large feature */
.feature-bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.feature-bento-item.gradient-card {
    background: var(--gradient-diagonal);
    color: white;
    border: none;
}

.feature-icon-3d {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-3d svg {
    width: 48px;
    height: 48px;
    color: white;
}

.feature-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Medium features */
.feature-bento-item.medium {
    grid-column: span 2;
}

.feature-bento-item.gradient-border {
    background: white;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(white, white),
        var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-bento-item.medium h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-bento-item.medium p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Small features */
.feature-bento-item.small {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.small-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.feature-bento-item.small h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-bento-item.small p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* =====================================================
   IMPACT STATS SECTION
   ===================================================== */
.impact-stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(199, 85, 173, 0.05) 0%, transparent 50%);
}

.stats-grid-animated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: white;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-box.gradient-bg {
    background: var(--gradient-diagonal);
    color: white;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg .stat-number {
    background: white;
    -webkit-text-fill-color: white;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.gradient-bg .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 0;
}

/* =====================================================
   PRICING MODERN
   ===================================================== */
.pricing-modern {
    padding: 100px 0;
    background: white;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: white;
    border-radius: 24px;
    padding: 48px 32px;
    position: relative;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-modern.featured {
    border-color: var(--rose-fuchsia);
    transform: scale(1.05);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 32px 0 16px;
}

.currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}

.amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 20px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.custom-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list svg {
    color: var(--cyan);
    flex-shrink: 0;
}

.features-list li.highlight {
    font-weight: 600;
    color: var(--text-primary);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-pricing:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-pricing.featured {
    background: var(--gradient-primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pricing.featured:hover {
    box-shadow: var(--shadow-colored);
}

.btn-pricing.outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-pricing.outline:hover {
    background: var(--text-primary);
    color: white;
}

.guarantee-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* =====================================================
   FAQ MODERN ACCORDION
   ===================================================== */
.faq-modern {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-modern {
    margin-bottom: 16px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item-modern:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item-modern.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-modern.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS CAROUSEL
   ===================================================== */
.testimonials-carousel-modern {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.testimonials-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 400px;
    padding: 0 16px;
}

.testimonial-card-carousel {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.rating svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

blockquote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-secondary);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.slider-nav:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:hover svg {
    color: white;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

/* =====================================================
   CTA FINAL PREMIUM
   ===================================================== */
.cta-final-premium {
    padding: 120px 0;
    background: var(--gradient-diagonal);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text-animated {
    position: relative;
    display: inline-block;
}

.gradient-text-animated::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
    animation: underline-pulse 2s ease infinite;
}

@keyframes underline-pulse {
    0%, 100% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(0.95);
    }
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: white;
}

.benefit svg {
    width: 24px;
    height: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--text-primary);
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 20px 32px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   FLOATING ACTION BUTTONS
   ===================================================== */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
}

.fab-chat {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(199, 85, 173, 0.3);
    transition: var(--transition);
    position: relative;
}

.fab-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(199, 85, 173, 0.4);
}

.fab-chat svg {
    width: 28px;
    height: 28px;
    color: white;
}

.fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* =====================================================
   MOBILE STICKY CTA
   ===================================================== */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--gradient-primary);
        padding: 16px;
        z-index: 100;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }

    .sticky-cta-button {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: transparent;
        color: white;
        text-decoration: none;
        font-weight: 700;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-price {
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-container {
        gap: 60px;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-bento-item.large {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .hero-premium {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .split-side {
        padding: 60px 40px;
    }
    
    .pricing-cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Typography mobile */
    .hero-title {
        font-size: 40px;
    }
    
    .section-title-gradient {
        font-size: 32px;
    }
    
    /* Hero adjustments */
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    /* Dashboard mockup mobile */
    .dashboard-3d {
        animation: none;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .floating-badge {
        display: none;
    }
    
    /* Testimonials grid mobile */
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    /* Features bento mobile */
    .features-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-bento-item.large,
    .feature-bento-item.medium {
        grid-column: 1;
    }
    
    /* Stats grid mobile */
    .stats-grid-animated {
        grid-template-columns: 1fr;
    }
    
    /* Timeline mobile */
    .timeline-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline-progress {
        display: none;
    }
    
    /* FAQ mobile */
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    /* CTA mobile */
    .cta-title {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Floating actions mobile */
    .floating-actions {
        bottom: 80px;
        right: 20px;
    }
    
    .fab-chat {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title-gradient {
        font-size: 28px;
    }
    
    .value-prop-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cta-premium-glass {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-text,
    .cta-price {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
    
    .cta-price {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* =====================================================
   ANIMATIONS AVANCÉES
   ===================================================== */

/* Parallax scrolling */
@supports (animation-timeline: scroll()) {
    .gradient-orb {
        animation-timeline: scroll();
        animation-range: 0vh 100vh;
    }
    
    .orb-1 {
        animation-name: parallax-orb-1;
    }
    
    .orb-2 {
        animation-name: parallax-orb-2;
    }
    
    .orb-3 {
        animation-name: parallax-orb-3;
    }
    
    @keyframes parallax-orb-1 {
        to {
            transform: translateY(-100px);
        }
    }
    
    @keyframes parallax-orb-2 {
        to {
            transform: translateY(-150px);
        }
    }
    
    @keyframes parallax-orb-3 {
        to {
            transform: translate(-50%, calc(-50% - 80px));
        }
    }
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.scale {
    transform: scale(0.9);
}

.animate-on-scroll.scale.visible {
    transform: scale(1);
}

/* Counter animations */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counting {
    animation: countUp 0.6s ease forwards;
}

/* =====================================================
   EFFETS SPÉCIAUX
   ===================================================== */

/* Glassmorphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Neon glow effects */
.neon-glow {
    text-shadow: 
        0 0 10px rgba(199, 85, 173, 0.8),
        0 0 20px rgba(199, 85, 173, 0.6),
        0 0 30px rgba(199, 85, 173, 0.4);
}

/* Gradient text animation */
.gradient-text-flow {
    background: linear-gradient(
        90deg,
        var(--rose-fuchsia) 0%,
        var(--cyan) 25%,
        var(--bleu-moyen) 50%,
        var(--rose-magenta) 75%,
        var(--rose-fuchsia) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* 3D card hover effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(-10deg);
}

/* Morphing blob background */
.blob-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.3;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: rotate(90deg);
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: rotate(180deg);
    }
}

/* =====================================================
   UTILITAIRES
   ===================================================== */

/* Spacing */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 48px; }

.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 48px; }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Display utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* =====================================================
   ACCESSIBILITY
   ===================================================== */

/* Focus styles */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--rose-fuchsia);
    outline-offset: 2px;
}

/* Skip to content */
.skip-to-content {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-to-content:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .hero-bg-animation,
    .floating-actions,
    .mobile-sticky-cta,
    .video-container-modern,
    .slider-nav {
        display: none !important;
    }
    
    body {
        color: #000;
        background: white;
    }
    
    .gradient-animated,
    .gradient-text-animated {
        -webkit-text-fill-color: #000;
        background: none;
        color: #000;
    }
    
    .section-title-gradient {
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* =====================================================
   PERFORMANCE OPTIMIZATIONS
   ===================================================== */

/* GPU acceleration for animations */
.hero-visual,
.gradient-orb,
.floating-badge,
.dashboard-3d,
.testimonial-card-modern,
.stat-card,
.feature-bento-item {
    will-change: transform;
}

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter');
}

/* Lazy loading images */
img[loading="lazy"] {
    background: var(--bg-secondary);
}

/* =====================================================
   CUSTOM SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--rose-fuchsia), var(--cyan));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--rose-magenta), var(--bleu-moyen));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--rose-fuchsia) var(--bg-secondary);
}

/* =====================================================
   BROWSER COMPATIBILITY
   ===================================================== */

/* Webkit specific */
@supports (-webkit-backdrop-filter: blur(10px)) {
    .glass-card,
    .hero-badge,
    .cta-badge {
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Firefox specific */
@-moz-document url-prefix() {
    .gradient-animated {
        background-clip: text;
    }
}

/* =====================================================
   END OF STYLESHEET
   ===================================================== */