/* ===== VARIABLES & RESET ===== */
:root {
    --primary: #2A83C6;
    --primary-dark: #1e6aa5;
    --secondary: #4dbbd5;
    --dark: #1b2e4b;
    --dark-light: #1e293b;
    --cyan: #4dbbd5;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;
    
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2A83C6 0%, #4dbbd5 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

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

/* ===== HERO SECTION ===== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background:
    radial-gradient(circle at 20% 30%, rgba(42, 131, 198, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(77, 187, 213, 0.06), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.04), transparent 60%),
    linear-gradient(135deg, #f8fbfe 0%, #ffffff 100%);
}

.hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
    linear-gradient(rgba(42, 131, 198, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 131, 198, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero-modern-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-bg-effects {
    display: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(42, 131, 198, 0.2);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    animation: slideInFromTop 0.8s ease-out;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

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

.typed-text {
    position: relative;
    display: inline-block;
}

.typed-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    animation: blink 1s step-end infinite;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: slideInFromLeft 0.8s ease-out 0.6s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-2);
    color: white;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(42, 131, 198, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(42, 131, 198, 0.4);
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: rgba(42, 131, 198, 0.1);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    animation: slideInFromBottom 0.8s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(42, 131, 198, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-number {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label-hero {
    font-size: 0.8rem;
    /* color: var(--text-light); */
    text-transform: initial;
    font-weight: 700;
}

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

@keyframes slideInFromLeft {
    from {
    opacity: 0;
    transform: translateX(-30px);
    }
    to {

    opacity: 1;
    transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* Stats */
.stats {
    background: var(--dark);
    color: #fff;
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.stat {
    text-align: center;
    padding: 10px 8px;
}
.stat-value {
    margin: 0;
    font-weight: 900;
    font-size: clamp(2.0rem, 2.6vw, 3.1rem);
    color: var(--cyan);
    letter-spacing: -0.5px;
}
.suffix { font-size: 0.7em; font-weight: 800; margin-left: 4px; }
.stat-label {
    margin: 6px 0 0 0;
    opacity: 0.88;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.82rem;
}

    /* Trust */
.trust { 
    padding: 64px 0; 
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
    linear-gradient(rgba(42, 131, 198, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 131, 198, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

.trust-head { 
    text-align: center; 
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.kicker {
    margin: 0 0 12px 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(42, 131, 198, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(42, 131, 198, 0.2);
}

.trust-sub { 
    margin: 0 auto; 
    color: var(--text-light); 
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.logo-slider { 
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.logo-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.client-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(42, 131, 198, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100px;
    min-width: 0;
}

.client-card img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    display: block;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(42, 131, 198, 0.15);
    border-color: rgba(42, 131, 198, 0.3);
}

.client-card:hover img { 
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    animation: slideInFromRight 0.8s ease-out 0.4s both;
}

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

.dashboard-mockup {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.mockup-screen {
    width: 100%;
    height: auto;
    display: block;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 200px;
    transition: var(--transition);
    animation: floatCard 3s ease-in-out infinite;
}

.float-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

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

.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    left: -5%;
    animation-delay: 2s;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-badge {
    padding: 0.25rem 0.75rem;
    background: var(--gradient-2);
    color: white;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.card-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 4rem 2rem;
    background: var(--bg-soft);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.client-logo {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-logo img {
    max-height: 50px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition);
}

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

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 6rem 2rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    position: relative;
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    overflow: hidden;
}

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

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: soft-light;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2.2rem;
    color: white;
    
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text);
    font-weight: 600;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.2rem;
}

/* ===== PROCESS/TIMELINE SECTION ===== */
.process-section {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
}

.process-section .section-title,
.process-section .section-desc {
    color: white;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(42, 131, 198, 0.2);
    transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 0 12px rgba(42, 131, 198, 0.3);
}

.marker-number {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.timeline-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: white;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--bg-soft);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 800;
    color: var(--dark);
}

.author-company {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 2rem;
    background: white;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--gradient-2);
    border-radius: var(--radius-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    bottom: -150px;
    left: -150px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-content: space-between;
}

.cta-content-text{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: white;
}

.cta-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-soft);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

/* Tablette - 1024px */
@media (max-width: 1024px) {
    .hero-modern {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .float-card {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-marker {
        width: 80px;
        height: 80px;
    }
    
    .marker-number {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .hero-modern {
        padding: 5rem 0 2rem;
    }
    
    .hero-modern-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .dashboard-mockup {
        border-radius: var(--radius-md);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .trust {
        padding: 3rem 0;
    }
    
    .logo-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .client-card {
        padding: 1.5rem;
        height: 90px;
    }
    
    .client-card img {
        max-height: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        left: 0;
    }
    
    .marker-number {
        font-size: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-container {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-desc {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Mobile petit - 480px */
@media (max-width: 480px) {
    .hero-modern {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label-hero {
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-section,
    .clients-section {
        padding: 3rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .cta-container {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}