/* Home Landing Page Styles */

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

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #00008B;
    letter-spacing: -0.02em;
}

.nav-cta {
    background: #00008B;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: #00006B;
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25em;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00008B;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.hero-cta:hover {
    background: #00006B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 139, 0.4);
    color: white;
    text-decoration: none;
}

/* Demo Video Section */
.demo-video-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.demo-video-section .container {
    text-align: center;
    max-width: 1200px;
}

.demo-video-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #00008B;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.demo-video-section img,
.demo-video-section video,
.demo-video-section .demo-video {
    width: 80%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.demo-video-section img:hover,
.demo-video-section video:hover,
.demo-video-section .demo-video:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1em;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 40px;
    height: 40px;
    background: #fee2e2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.problem-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1em;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #f8fafc;
}

.solution-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.step {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 32px;
    height: 32px;
    background: #00008B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
    font-size: 14px;
}

.step h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #00008B;
    margin-bottom: 12px;
}

.step p {
    color: #64748b;
    font-size: 1em;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.benefit-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1em;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #0f172a;
    color: white;
}

.pricing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-section .section-title {
    color: white;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pricing-section .section-subtitle {
    color: #94a3b8;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-highlight {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    backdrop-filter: blur(8px);
}

.pricing-highlight h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 16px;
}

.pricing-example {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1em;
}

.price-number {
    font-size: 2em;
    font-weight: 700;
    color: #00008B;
    margin-bottom: 6px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
    color: #1a1a1a;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #00008B;
}

.cta-subtitle {
    font-size: 1.1em;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #64748b;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00008B;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: white;
    background: #00006B;
    text-decoration: none;
}

.cta-section p {
    color: #64748b;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #1e293b;
}

footer p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .cta-title {
        font-size: 2em;
    }
    
    .demo-video-section h2 {
        font-size: 2em;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .problem-section,
    .solution-section,
    .benefits-section,
    .pricing-section,
    .cta-section,
    .demo-video-section {
        padding: 60px 0;
    }
    
    .demo-video-section img,
    .demo-video-section video,
    .demo-video-section .demo-video {
        width: 95%;
    }
    
    /* Repasser en 1 colonne sur mobile pour les grilles */
    .solution-flow,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} 
