/* ===============================
   HOSPIA - CSS PAGES PRODUITS
   =============================== */

/* Ce fichier contient les styles spécifiques aux pages produits SumrizeDoc et SumrizeVox */
/* Il sera populated avec le contenu original du product-styles.css */

/* Pour l'instant, fichier vide pour éviter les erreurs 404 */
/* TODO: Récupérer et intégrer le contenu du fichier product-styles.css original */

/* Variables CSS spécifiques aux pages produits */
:root {
    --product-primary: #2563eb;
    --product-secondary: #7c3aed;
    --product-accent: #06b6d4;
    --product-success: #10b981;
    --product-warning: #f59e0b;
    --product-gradient: linear-gradient(135deg, var(--product-primary), var(--product-secondary));
    --product-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    --product-border-radius: 16px;
}

/* ===============================
   HERO SECTION PRODUIT
   =============================== */

.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    text-align: center;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.02) 0%, transparent 70%);
    z-index: 1;
}

/* Hero spécifique à SumrizeVox */
.vox-hero::before {
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.02) 0%, transparent 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(37, 99, 235, 0.05), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(124, 58, 237, 0.05), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(6, 182, 212, 0.05), transparent);
    background-size: 400px 400px, 300px 300px, 500px 500px;
    animation: particleFloat 25s linear infinite;
}

@keyframes particleFloat {
    0% { background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 400px 400px, -300px 300px, 500px -500px; }
}

/* Ondes sonores pour SumrizeVox */
.sound-waves {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.wave {
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, var(--product-accent), var(--product-success));
    border-radius: 2px;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave:nth-child(2) { animation-delay: 0.1s; height: 60px; }
.wave:nth-child(3) { animation-delay: 0.2s; height: 80px; }
.wave:nth-child(4) { animation-delay: 0.3s; height: 50px; }

@keyframes waveAnimation {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.product-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.product-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1e293b;
}

.product-hero-title .gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.product-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-hero-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary {
    background: white;
    color: #3B82F6;
    border: 2px solid #3B82F6;
}

.btn-secondary:hover {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B82F6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

/* ===============================
   WORKFLOW SECTION
   =============================== */

.workflow-section {
    padding: 5rem 0;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.workflow-section.vox-workflow {
    background: var(--light-color);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    font-weight: 400;
}

.workflow-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.8rem;
    align-items: start;
    justify-content: center;
    margin-top: 4rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.workflow-step {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.step-content {
    background: white;
    padding: 3rem 2rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0.3;
    transform: scale(0.95);
    animation: stepActivation 1s ease-out forwards;
}

.workflow-step:nth-child(1) .step-content { animation-delay: 0.5s; }
.workflow-step:nth-child(3) .step-content { animation-delay: 1s; }
.workflow-step:nth-child(5) .step-content { animation-delay: 1.5s; }
.workflow-step:nth-child(7) .step-content { animation-delay: 2s; }
.workflow-step:nth-child(9) .step-content { animation-delay: 2.5s; }
.workflow-step:nth-child(11) .step-content { animation-delay: 3s; }

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 40px;
    height: 40px;
    background: var(--gray-300);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    animation: numberActivation 1s ease-out forwards;
}

.workflow-step:nth-child(1) .step-number { animation-delay: 0.5s; }
.workflow-step:nth-child(3) .step-number { animation-delay: 1s; }
.workflow-step:nth-child(5) .step-number { animation-delay: 1.5s; }
.workflow-step:nth-child(7) .step-number { animation-delay: 2s; }
.workflow-step:nth-child(9) .step-number { animation-delay: 2.5s; }
.workflow-step:nth-child(11) .step-number { animation-delay: 3s; }

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    text-align: center;
    padding-top: 0.5rem;
}

.workflow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4px;
    width: 100%;
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
    margin-top: 180px;
}

.workflow-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    animation: connectorFill 0.8s ease-out forwards;
}

.workflow-step:nth-child(2) .workflow-connector::before { animation-delay: 0.8s; }
.workflow-step:nth-child(4) .workflow-connector::before { animation-delay: 1.3s; }
.workflow-step:nth-child(6) .workflow-connector::before { animation-delay: 1.8s; }
.workflow-step:nth-child(8) .workflow-connector::before { animation-delay: 2.3s; }
.workflow-step:nth-child(10) .workflow-connector::before { animation-delay: 2.8s; }

.workflow-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -8px;
    color: var(--gray-300);
    font-size: 1.2rem;
    font-weight: bold;
    animation: arrowActivation 0.3s ease-out forwards;
}

.workflow-step:nth-child(2) .workflow-connector::after { animation-delay: 1.3s; }
.workflow-step:nth-child(4) .workflow-connector::after { animation-delay: 1.8s; }
.workflow-step:nth-child(6) .workflow-connector::after { animation-delay: 2.3s; }
.workflow-step:nth-child(8) .workflow-connector::after { animation-delay: 2.8s; }
.workflow-step:nth-child(10) .workflow-connector::after { animation-delay: 3.3s; }

@keyframes stepActivation {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes numberActivation {
    to {
        transform: translateX(-50%) scale(1);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
}

@keyframes connectorFill {
    to {
        left: 0;
    }
}

@keyframes arrowActivation {
    to {
        color: var(--primary-color);
    }
}

/* ===============================
   BENEFITS SECTION
   =============================== */

.benefits-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.modern-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--product-primary), var(--product-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-benefit-card {
    background: white;
    border-radius: var(--product-border-radius);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.modern-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--product-primary);
}

.benefit-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--product-primary), var(--product-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.benefit-icon-modern i {
    font-size: 1.5rem;
}

.benefit-content-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.benefit-content-modern p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===============================
   TESTIMONIALS SECTION
   =============================== */

.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-section .section-title {
    margin-bottom: 1rem;
}

.testimonials-section .section-subtitle {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--product-border-radius);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--product-primary);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--product-primary);
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 2rem;
}

.testimonial-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--product-primary), var(--product-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-avatar i {
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

@media (max-width: 768px) {
    .product-hero {
        padding: 6rem 1rem 4rem;
        min-height: auto;
    }

    .product-hero::before {
        display: none;
    }

    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }

    .stat-item {
        min-width: auto;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .workflow-step {
        min-width: auto;
    }

    .step-content {
        height: auto;
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }

    .workflow-connector {
        display: none;
    }

    .step-number {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .modern-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sound-waves {
        display: none;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .workflow-steps {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .workflow-step:nth-child(even) {
        display: none;
    }

    .workflow-step {
        min-width: auto;
    }

    .step-content {
        height: auto;
        padding: 2rem 1.5rem;
    }

    .step-number {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
}

@media (max-width: 480px) {
    .product-hero-content {
        padding: 0 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .workflow-step {
        padding: 1.5rem;
    }

    .modern-benefit-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ===============================
   ANIMATIONS
   =============================== */

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

.workflow-step {
    animation: fadeInUp 0.6s ease-out;
}

.workflow-step:nth-child(odd) {
    animation-delay: 0.1s;
}

.workflow-step:nth-child(even) {
    animation-delay: 0.2s;
}

.modern-benefit-card {
    animation: fadeInUp 0.6s ease-out;
}

.modern-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.modern-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.modern-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.modern-benefit-card:nth-child(4) { animation-delay: 0.4s; }
.modern-benefit-card:nth-child(5) { animation-delay: 0.5s; }
.modern-benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* ===============================
   MASQUER SECTION TÉMOIGNAGES
   =============================== */

/* Masque la section témoignages sur toutes les pages produits */
.testimonials-section {
    display: none !important;
} 