

      

        /* ===== BENEFITS SECTION ===== */
        .benefits-section {
            padding: 100px 40px;
            background: #f8f9fa;
        }

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #B87854;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #4A5568;
            max-width: 800px;
            margin: 20px auto 0;
            line-height: 1.7;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefit-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: #B87854;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 15px;
        }

        .benefit-card p {
            color: #4A5568;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* ===== PROCESS SECTION ===== */
        .process-section {
            padding: 100px 40px;
            background: white;
        }

        .process-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-timeline {
            position: relative;
            margin-top: 60px;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #B87854, #a36848);
            transform: translateX(-50%);
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-step::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: #B87854;
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 8px white;
        }

        .process-content {
            flex: 1;
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin: 0 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .process-content:hover {
            border-color: #B87854;
            transform: scale(1.03);
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .process-number {
            display: inline-block;
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .process-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 10px;
        }

        .process-content p {
            color: #4A5568;
            line-height: 1.6;
        }

        /* ===== COSTS SECTION ===== */
        .costs-section {
            padding: 100px 40px;
            background: #f8f9fa;
        }

        .costs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cost-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #B87854;
        }

        .cost-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .cost-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cost-card ul {
            list-style: none;
            padding: 0;
        }

        .cost-card li {
            padding: 10px 0;
            color: #4A5568;
            border-bottom: 1px solid #e5e7eb;
        }

        .cost-card li:last-child {
            border-bottom: none;
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 100px 40px;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 50px auto 0;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: #B87854;
        }

        .service-header {
            padding: 40px 30px;
            text-align: center;
            color: white;
        }

        .service-header.sarl {
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
        }

        .service-header.sas {
            background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
        }

        .service-header.sci {
            background: linear-gradient(135deg, #4A5568 0%, #6b7280 100%);
        }

        .service-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .service-header p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .service-body {
            padding: 40px 30px;
        }

        .service-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 30px;
            text-align: center;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #4A5568;
            border-bottom: 1px solid #e5e7eb;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features i {
            color: #B87854;
            font-size: 1.1rem;
        }

        .service-cta {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(27, 59, 95, 0.3);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .benefits-grid,
            .costs-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-step {
                flex-direction: column !important;
            }

            .process-content {
                margin: 20px 0;
            }

            .process-timeline::before {
                left: 40px;
            }

            .process-step::before {
                left: 40px;
            }
        }

        @media (max-width: 768px) {
            .benefits-section,
            .process-section,
            .costs-section,
            .services-section {
                padding: 60px 20px;
            }

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

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

            .benefits-grid,
            .costs-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-content {
                margin: 20px 0;
                padding: 20px;
            }
        }


/* ===== PRICING SECTION (page création société) ===== */
.pricing-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3B5F;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #B87854;
}

.service-card.featured {
    border: 3px solid #10b981;
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2);
}

.service-header {
    padding: 30px;
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
}

.service-card.featured .service-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.service-price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.service-price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.service-body {
    padding: 35px;
}

.service-description {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-included {
    margin-bottom: 25px;
}

.service-included-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 15px;
}

.service-included ul {
    list-style: none;
    padding: 0;
}

.service-included li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4A5568;
    border-bottom: 1px solid #f1f5f9;
}

.service-included li:last-child {
    border-bottom: none;
}

.service-included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
    font-size: 1.2rem;
}

.service-cta {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.service-card.featured .service-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 59, 95, 0.3);
}

.service-card.featured .service-cta:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* ===== DIFFERENTIATION SECTION ===== */
.differentiation-section {
    padding: 100px 40px;
    background: white;
}

.differentiation-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.differentiation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 20px;
}

.differentiation-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.differentiation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.differentiation-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #B87854;
    transition: all 0.3s ease;
}

.differentiation-card:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.differentiation-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.differentiation-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.differentiation-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 15px;
}

.differentiation-card-text {
    color: #4A5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== PROCESS SECTION (nouvelle version) ===== */
.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3B5F;
    text-align: center;
    margin-bottom: 20px;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step-new {
    display: flex;
    gap: 25px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #B87854;
}

.process-step-new:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.process-step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 12px;
}

.process-step-content p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
    padding: 60px 40px;
    margin: 80px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27, 59, 95, 0.3);
}

.bonus-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.bonus-item-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bonus-item-icon {
    width: 35px;
    height: 35px;
    background: rgba(184, 120, 84, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.bonus-item-text {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== PRICE COMPARISON ===== */
.price-comparison {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-comparison-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B3B5F;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.price-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.price-column {
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.price-column.highlighted {
    border-color: #B87854;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
}

.price-column-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 20px;
    text-align: center;
}

.price-column-items {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.price-column-items li {
    padding: 10px 0;
    color: #4A5568;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-column-total {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B3B5F;
    text-align: center;
    padding-top: 15px;
    border-top: 2px solid #B87854;
}

.price-saving {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #155724;
    line-height: 1.5;
}

/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.final-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 1.2rem;
    color: #4A5568;
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.final-cta-reassurance {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.final-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 120, 84, 0.3);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 120, 84, 0.4);
}

/* ===== SECTION BUDGET TOTAL ===== */
.budget-recap-section {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 25px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 2px solid #38bdf8;
}

.budget-recap-title {
    color: #0c4a6e;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.budget-recap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.budget-recap-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.budget-recap-card-title {
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 8px;
}

.budget-recap-card-line {
    font-size: 0.9rem;
    color: #475569;
    margin: 4px 0;
}

.budget-recap-card-total {
    border-top: 2px solid #e2e8f0;
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 700;
    color: #1B3B5F;
}

.budget-recap-note {
    margin-top: 15px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE MOBILE ===== */

/* Tablettes */
@media (max-width: 1024px) {
    .pricing-grid,
    .differentiation-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-section {
        margin: 60px 20px;
        padding: 50px 30px;
    }
    
    .price-comparison {
        margin: 40px 20px;
        padding: 35px 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Sections principales */
    .differentiation-section,
    .process-section,
    .pricing-section,
    .costs-section {
        padding: 60px 20px;
    }
    
    /* Titres */
    .differentiation-title,
    .process-title,
    .pricing-title,
    .section-title {
        font-size: 1.8rem;
    }
    
    .differentiation-subtitle,
    .process-subtitle,
    .pricing-subtitle,
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Grilles */
    .differentiation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .differentiation-card {
        padding: 30px;
    }
    
    /* Process steps */
    .process-step-new {
        flex-direction: column;
        padding: 25px;
    }
    
    .process-step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-price-amount {
        font-size: 2.5rem;
    }
    
    /* Bonus Section */
    .bonus-section {
        margin: 40px 20px;
        padding: 40px 20px;
        border-radius: 12px;
    }
    
    .bonus-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-item {
        padding: 20px;
    }
    
    /* Price Comparison */
    .price-comparison {
        margin: 30px 15px;
        padding: 25px 15px;
        border-radius: 10px;
    }
    
    .price-comparison-title {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .price-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-column {
        padding: 20px;
    }
    
    .price-column-total {
        font-size: 1.5rem;
    }
    
    .price-saving {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 60px 20px;
    }
    
    .final-cta-title {
        font-size: 1.6rem;
    }
    
    .final-cta-text {
        font-size: 1rem;
    }
    
    .final-cta-button {
        padding: 18px 40px;
        font-size: 1rem;
    }
    
    /* Budget Recap */
    .budget-recap-section {
        margin: 30px 15px 0;
        padding: 20px;
    }
    
    .budget-recap-title {
        font-size: 1.1rem;
    }
    
    .budget-recap-grid {
        grid-template-columns: 1fr;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .differentiation-title,
    .process-title,
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .bonus-section {
        margin: 30px 10px;
        padding: 30px 15px;
    }
    
    .bonus-title {
        font-size: 1.3rem;
    }
    
    .price-comparison {
        margin: 20px 10px;
        padding: 20px 12px;
    }
    
    .final-cta-title {
        font-size: 1.4rem;
    }
    
    .final-cta-button {
        padding: 16px 35px;
        font-size: 0.95rem;
    }
}
