/* ===================================
   PRODUCTS PAGE - STYLE COMPACT
   Même couleurs mais layout différent
   =================================== */

/* Hero Products - Plus compact */
.products-hero {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
    min-height: auto !important;
}

.products-hero .hero-title {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, var(--light-text) 30%, var(--secondary-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.products-hero .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
}

/* Products Section - Espacement réduit */
.products-section {
    padding: 3rem 0 !important;
    background: transparent;
}

.bigbi-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.graphask-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.02) 0%, rgba(6, 182, 212, 0.05) 100%);
}

/* Product Header - Horizontal Layout */
.product-header {
    display: flex !important;
    align-items: center !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1) !important;
}

.product-header-logo {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.product-header-content {
    flex: 1 !important;
}

.product-header-content h2 {
    font-size: 2.5rem !important;
    color: #1e293b !important;
    margin: 0 0 0.5rem 0 !important;
}

.product-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
    color: white !important;
    padding: 0.4rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.product-header-content p {
    color: #475569 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.product-header-buttons {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

/* Features Compact Grid - 3 colonnes */
.features-compact-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
}

.feature-compact-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 2rem 1.5rem !important;
    border-radius: 12px !important;
    border: 2px solid rgba(37, 99, 235, 0.1) !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.feature-compact-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2) !important;
    border-color: #2563eb !important;
}

.feature-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 1rem auto !important;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
}

.feature-icon svg {
    width: 28px !important;
    height: 28px !important;
}

.feature-compact-card h3 {
    font-size: 1.1rem !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
}

.feature-compact-card p {
    color: #64748b !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Product Stats - 4 colonnes */
.product-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%) !important;
    border-radius: 16px !important;
    text-align: center !important;
}

.stat-item {
    padding: 1rem !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.5rem !important;
}

.stat-label {
    color: #475569 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

/* Example Questions */
.example-questions {
    margin-top: 3rem !important;
    text-align: center !important;
}

.example-questions h3 {
    font-size: 1.5rem !important;
    color: #1e293b !important;
    margin-bottom: 1.5rem !important;
}

.questions-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}

.question-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    border: 2px solid rgba(37, 99, 235, 0.1) !important;
    transition: all 0.3s ease !important;
}

.question-card:hover {
    border-color: #2563eb !important;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15) !important;
}

.flag-icon {
    font-size: 2rem !important;
    display: block !important;
    margin-bottom: 0.75rem !important;
}

.question-card p {
    color: #475569 !important;
    font-size: 0.95rem !important;
    font-style: italic !important;
    margin: 0 !important;
}

/* Perfect Together Section */
.products-together {
    padding: 4rem 0 !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%) !important;
}

.together-flow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.flow-step {
    flex: 1 !important;
    max-width: 300px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 2rem !important;
    border-radius: 16px !important;
    border: 2px solid rgba(37, 99, 235, 0.1) !important;
    transition: all 0.3s ease !important;
}

.flow-step:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2) !important;
    border-color: #2563eb !important;
}

.flow-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 1rem auto !important;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
}

.flow-icon svg {
    width: 36px !important;
    height: 36px !important;
}

.flow-step h3 {
    font-size: 1.3rem !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}

.flow-step p {
    color: #64748b !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

.flow-arrow {
    font-size: 2rem !important;
    color: #2563eb !important;
    font-weight: 700 !important;
}

/* CTA Section - Compact */
.products-cta {
    padding: 4rem 0 !important;
    text-align: center !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%) !important;
}

.cta-content h2 {
    font-size: 2.5rem !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.cta-content p {
    font-size: 1.2rem !important;
    color: #475569 !important;
    margin-bottom: 2rem !important;
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .features-compact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .questions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .together-flow {
        flex-direction: column !important;
    }

    .flow-arrow {
        transform: rotate(90deg) !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .products-hero .hero-title {
        font-size: 2rem !important;
    }

    .product-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }

    .product-header-logo {
        width: 100px !important;
        height: 100px !important;
    }

    .product-header-content h2 {
        font-size: 2rem !important;
    }

    .product-header-buttons {
        justify-content: center !important;
    }

    .features-compact-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .product-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    .questions-grid {
        grid-template-columns: 1fr !important;
    }

    .flow-step {
        max-width: 100% !important;
    }

    .cta-content h2 {
        font-size: 2rem !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .cta-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .products-hero .hero-title {
        font-size: 1.75rem !important;
    }

    .product-header-content h2 {
        font-size: 1.75rem !important;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .flow-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .flow-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
}