.elementor-848 .elementor-element.elementor-element-8c46f42{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0127924 *//* --- 1. GENERAL STYLES & FONT --- */
/* (Ajustez la police si votre thème WordPress en utilise une autre) */
.ai-pharma-landing-page * {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

.ai-pharma-landing-page {
    --primary-color: #000;
    --secondary-color: #f7f7f7;
    --accent-color: #4a90e2; /* Blue for links/buttons if needed */
    --card-bg: #fff;
    --text-color: #333;
    --light-text: #666;
    --gradient-top: rgba(220, 230, 255, 0.8);
    --gradient-bottom: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    background-color: var(--card-bg);
}

.ai-pharma-landing-page section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-pharma-landing-page h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.ai-pharma-landing-page h2 {
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.ai-pharma-landing-page a {
    text-decoration: none;
    color: var(--primary-color);
}


/* --- 2. HEADER --- */
.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-header .logo {
    font-weight: 700;
    font-size: 1.2em;
}

.ai-header .nav-links a {
    margin-left: 25px;
    font-size: 0.9em;
    color: var(--light-text);
    transition: color 0.3s;
}

.ai-header .nav-links a:hover {
    color: var(--primary-color);
}

.btn-try-now {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.9em;
    transition: background-color 0.3s, color 0.3s;
}

.btn-try-now:hover {
    background-color: var(--primary-color);
    color: var(--card-bg);
}


/* --- 3. HERO SECTION (GRADIENT BACKGROUND) --- */
.hero-section {
    padding: 120px 5% 80px;
    text-align: center;
    /* Imite l'effet de dégradé bleuté de l'image */
    background: linear-gradient(180deg, var(--gradient-top) 0%, var(--gradient-bottom) 100%);
    border-radius: 0 0 50% 50% / 0 0 10% 10%; /* Pour la courbe légère en bas */
}

.hero-section p {
    font-size: 1.1em;
    color: var(--light-text);
    margin-bottom: 40px;
}

.btn-hero, .btn-submit {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--card-bg) !important;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* --- 4. SOLUTIONS SECTION --- */
.solutions-section .subtitle {
    text-align: center;
    font-size: 1.1em;
    color: var(--light-text);
    margin-bottom: 40px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    padding: 10px;
    background-color: var(--primary-color);
    border-radius: 30px;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

.tab-btn.active {
    background-color: var(--card-bg);
    color: var(--primary-color);
}

/* Tool Cards Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.tool-card {
    background-color: var(--card-bg);
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tool-card.placeholder {
    opacity: 0.5;
    background-color: #f0f0f0;
}

.tool-card.large-placeholder {
    grid-column: span 3;
}

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

.status {
    background-color: var(--primary-color);
    color: var(--card-bg);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: 600;
}

.status.coming-soon {
    background-color: #ccc;
    color: #666;
}

.details-link {
    font-size: 0.85em;
    color: var(--light-text) !important;
}

.tool-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.tool-card p {
    font-size: 0.9em;
    color: var(--light-text);
}

.card-mockup {
    height: 100px; /* Espace pour le mockup visuel */
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 15px;
    /* Style pour imiter un contenu d'application */
    background-image: linear-gradient(90deg, #e0e0e0 25%, #f8f8f8 50%, #e0e0e0 75%);
    background-size: 400% 100%;
    animation: loading 5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.tool-card.placeholder .card-mockup {
    background-image: none;
    background-color: #ddd;
}

.solutions-section .question {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 15px;
}

.btn-contact-us {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-contact-us:hover {
    background-color: var(--primary-color);
    color: var(--card-bg) !important;
}


/* --- 5. MISSION SECTION --- */
.mission-section {
    padding-top: 120px;
    padding-bottom: 120px;
    /* Imite le dégradé en bas de l'image d'origine */
    background: linear-gradient(180deg, var(--gradient-bottom) 0%, var(--gradient-top) 100%);
    text-align: center;
}

.mission-text {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.2em;
    font-weight: 500;
}

.mission-text.small-text {
    font-size: 1em;
    color: var(--light-text);
    margin-top: 40px;
}


/* --- 6. CONTACT FORM SECTION --- */
.contact-section h2 {
    margin-bottom: 50px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    grid-column: span 2;
    width: 200px;
    margin: 20px auto 0;
}


/* --- 7. FOOTER --- */
.ai-footer {
    border-top: 1px solid #eee;
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    color: var(--light-text);
}

.footer-logo {
    font-weight: 700;
    color: var(--primary-color);
}

.footer-links a {
    margin-left: 20px;
    color: var(--light-text);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* --- 8. ANIMATIONS KEYFRAMES --- */

/* Pulse Animation for Hero Button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Fade In Up (Scroll Animation Effect) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Delay for staggered effect */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }


/* --- 9. RESPONSIVE DESIGN --- */

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tool-card.large-placeholder {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ai-header {
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .ai-header .nav-links {
        display: none; /* Simplifier le header sur mobile */
    }
    .ai-header .btn-try-now {
        margin-left: auto;
    }
    
    .hero-section {
        padding: 80px 5% 50px;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .tool-card.large-placeholder {
        grid-column: span 1;
    }
    
    .category-tabs {
        justify-content: flex-start;
        padding: 10px 5px;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form input, .contact-form textarea {
        grid-column: span 1;
    }
    .contact-form button {
        grid-column: span 1;
    }
    
    .ai-footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-links a {
        margin: 0 10px;
    }
}/* End custom CSS */