.elementor-27459 .elementor-element.elementor-element-463ae3e{--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;}.elementor-27459 .elementor-element.elementor-element-f64c293{--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-314a910 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    line-height: 1.6;
    color: #333;
}

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

/* Typographie harmonisée */
h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Classes spécialisées */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 20px;
    text-align: center;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2b2e71;
    margin-bottom: 15px;
}

.emphasis-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e91e63;
    margin: 30px 0;
    text-align: center;
}

.yellow-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 20px;
    margin: 30px auto;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    max-width: 600px;
}

.warning-box {
    background: #013466;
    color: white;
    padding: 25px;
    margin: 40px 0;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Cost Calculator */
.cost-calculator {
    background: #f8f9fa;
    border: 2px solid #dc3545;
    border-left: 6px solid #dc3545;
    padding: 30px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

.cost-calculator h3 {
    color: #dc3545;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.cost-item {
    background: white;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-item.highlight {
    background: #dc3545;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.cost-total {
    background: #dc3545;
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Hero Section */
.hero {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.hero .btn {
    background: #DC3545;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background: #c82333;
}

.hero-image {
    margin-top: 60px;
}

/* Promise Section */
.promise-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

/* Who Built Section */
.who-built-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.who-built-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.who-built-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.who-built-card:hover {
    border-color: #2b2e71;
    transform: translateY(-5px);
}

/* Progress Bars */
.progress-container {
    margin: 40px 0;
}

.progress-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
    justify-content: center;
}

.progress-bar-container {
    background: #e9ecef;
    border-radius: 15px;
    height: 40px;
    width: 400px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 15px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-bar.before {
    background: linear-gradient(45deg, #dc3545, #b91c1c);
    width: 0;
}

.progress-bar.after {
    background: linear-gradient(45deg, #28a745, #20c997);
    width: 0;
}

.progress-text {
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 120px;
}

/* Framework Section */
.framework-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.framework-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.framework-step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: #2b2e71;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    color: #2b2e71;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Why Work Section (Prix) */
.why-work-section {
    padding: 100px 0;
    background: #013466;
    color: white;
    text-align: center;
}

.investment-pricing {
    margin: 40px 0;
}

.pricing-box {
    background: white;
    color: #2b2e71;
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-box h3 {
    color: #dc3545;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Guarantee Grid */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center;
}

.guarantee-item {
    background: #f8f9fa;
    border: 2px solid #28a745;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b2e71;
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2b2e71;
    box-shadow: 0 6px 20px rgba(43, 46, 113, 0.15);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b2e71;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
    transition: transform 0.3s ease;
}

.faq-question.active span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 30px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    display: none;
    text-align: left;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin-bottom: 15px;
    text-align: left;
    color: #333;
    font-size: 1.1rem;
}

.faq-answer strong {
    color: #2b2e71;
    font-weight: 700;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.1rem;
}

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

/* CTA Section */
.cta {
    padding: 8rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage.googleapis.com/msgsndr/HtUEb0a96GiHZUIAHR26/media/68b429a074ce1f3567131aff.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 50, 102, 0.7);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #DC3545;
    color: white;
    font-size: 1.2rem;
    padding: 15px 30px;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

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

    h3, .subsection-title {
        font-size: 1.6rem;
    }

    .emphasis-text {
        font-size: 2rem;
    }

    .cta {
        padding: 4rem 0;
        min-height: 50vh;
    }

    .cta-content {
        min-height: 50vh;
    }

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

    .who-built-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .framework-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .progress-bar-container {
        width: 250px;
        height: 25px;
    }

    .progress-item {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important;
        margin: 30px 0 !important;
    }

    .progress-text {
        text-align: center !important;
        min-width: auto !important;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cost-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}/* End custom CSS */