/* ===================================
   STYLES DÉDIÉS PAGE SAAS
   =================================== */

/* Hero amélioré */
.hero-value-props {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-prop {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    white-space: nowrap;
}

/* Section explication SaaS */
.saas-explanation {
    max-width: 1000px;
    margin: 0 auto;
}

.saas-definition {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    margin-bottom: 3rem;
    text-align: center;
}

.saas-definition h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.saas-definition p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.definition-highlight {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

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

.problem-card, .solution-card {
    background: var(--dark);
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.card-header {
    padding: 1.5rem 2rem;
    font-weight: 600;
}

.problem-header {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-header {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.problem-card h4 {
    color: #ef4444;
    margin: 0;
    font-size: 1.2rem;
}

.solution-card h4 {
    color: #22c55e;
    margin: 0;
    font-size: 1.2rem;
}

.problem-card ul, .solution-card ul {
    list-style: none;
    margin: 0;
    padding: 2rem;
}

.problem-card li, .solution-card li {
    padding: 0.8rem 0;
    color: var(--text-main);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.problem-card li:before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.solution-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Résultats dans les cartes services */
.service-results {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.result-item {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Exemples concrets */
.service-example {
    background: rgba(14, 165, 233, 0.05);
    border-left: 3px solid var(--accent);
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-main);
}

.service-example strong {
    color: var(--accent);
    font-weight: 600;
}

/* Section bénéfices avec résultats */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-result-card {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-result-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-result-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-stats {
    margin-bottom: 2rem;
}

.stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-breakdown {
    text-align: left;
    margin-bottom: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.breakdown-item {
    color: var(--text-main);
    padding: 0.3rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.benefit-result-card p {
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.benefit-result-card p:last-child {
    margin-bottom: 0;
}

.benefit-result-card strong {
    color: var(--primary);
    font-weight: 600;
}

/* Timeline d'approche */
.approach-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(37, 99, 235, 0.3) 100%);
}

.timeline-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.step-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-deliverable {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.step-deliverable::before {
    content: "📋 ";
    margin-right: 0.5rem;
}

/* Indicateurs de confiance */
.trust-indicators {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.trust-indicators h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.trust-item strong {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Section contact enrichie */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-intro p {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.contact-guarantee {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-option {
    background: var(--dark);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.contact-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.primary-option {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.02) 100%);
}

.option-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-option h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-option p {
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.option-benefits {
    text-align: left;
    margin-bottom: 2rem;
}

.option-benefits div {
    color: var(--text-main);
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.contact-info {
    text-align: center;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-person {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details {
    color: var(--text-main);
    margin-bottom: 1rem;
}

.contact-promises {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.promise {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Responsive pour page SaaS */
@media (max-width: 768px) {
    .hero-value-props {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .value-prop {
        text-align: center;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .timeline-step::after {
        display: none;
    }
    
    .step-number {
        margin: 0 auto;
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-promises {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .saas-definition {
        padding: 2rem;
    }
    
    .benefit-result-card {
        padding: 2rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-value-props {
        margin: 1.5rem 0;
    }
    
    .value-prop {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .saas-definition {
        padding: 1.5rem;
    }
    
    .saas-definition h3 {
        font-size: 1.5rem;
    }
    
    .problem-card, .solution-card {
        margin-bottom: 1rem;
    }
    
    .card-header {
        padding: 1rem 1.5rem;
    }
    
    .problem-card ul, .solution-card ul {
        padding: 1.5rem;
    }
    
    .benefit-result-card {
        padding: 1.5rem;
    }
    
    .stat {
        font-size: 2.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .contact-option {
        padding: 2rem;
    }
    
    .contact-guarantee {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
}
/* Grille 2x2 pour la section "Ce qu'il est Possible de Construire" */
.services-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid-2x2 {
        grid-template-columns: 1fr;
    }
}
/* Métriques professionnelles */
.benefit-metric {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .metric-value {
        font-size: 2rem;
    }
}
/* Grille 2x2 pour la section bénéfices */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: 1fr;
    }
}
/* Section Méthodologie Modernisée */
.methodology-corporate {
    background: var(--dark);
    padding: 5rem 0;
}

.section-intro {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 1rem auto 0;
    text-align: center;
}

.methodology-timeline {
    max-width: 1000px;
    margin: 4rem auto 0;
}

.timeline-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 100px;
    top: 120px;
    bottom: -4rem;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(37, 99, 235, 0.2) 100%);
}

.step-visual {
    text-align: center;
    position: sticky;
    top: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.step-duration {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.step-content {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.step-content h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-subtitle {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.step-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    color: var(--text-main);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.benefit-item strong {
    color: var(--accent);
    font-weight: 600;
}

.step-deliverable {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    line-height: 1.4;
}

/* Garanties techniques */
.methodology-guarantees {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.methodology-guarantees h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.guarantee-card {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    letter-spacing: 1px;
}

.guarantee-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.guarantee-card ul {
    list-style: none;
    text-align: left;
}

.guarantee-card li {
    color: var(--text-main);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.guarantee-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .methodology-timeline {
        margin-top: 3rem;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .timeline-step::after {
        display: none;
    }
    
    .step-visual {
        position: static;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .methodology-corporate {
        padding: 3rem 0;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .methodology-guarantees {
        margin-top: 3rem;
    }
    
    .methodology-guarantees h3 {
        font-size: 1.5rem;
    }
}
/* Section contact professionnelle */
.contact-person {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-person strong {
    display: block;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-role {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    text-align: center;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-label {
    display: block;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--accent);
}

.contact-commitments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.commitment-item {
    text-align: center;
    padding: 1rem;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.commitment-item strong {
    display: block;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.commitment-item span {
    color: var(--text-main);
    font-size: 0.85rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-commitments {
        grid-template-columns: 1fr;
    }
    
    .contact-method, .commitment-item {
        padding: 0.8rem;
    }
}
/* Uniformisation des tailles de texte pour les listes problème/solution */
.problem-card li, .solution-card li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.8rem 0;
}

.problem-card li:before, .solution-card li:before {
    font-size: 0.9rem;
}
/* Correction du débordement de texte sur les icônes */
.problem-card li, .solution-card li {
    padding-left: 2rem;
}

.problem-card li:before, .solution-card li:before {
    left: 0.5rem;
}

/* Styles spécifiques pour la page Applications Métiers */
.value-proposition {
    text-align: center;
    margin-bottom: 3rem;
}

.value-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.value-highlight h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.value-highlight p {
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* CTA inline dans les cartes problème/solution */
.cta-inline {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.btn-primary-small, .btn-secondary-small {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary-small {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-primary-small:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary-small {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary-small:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Styles pour les cartes de solutions */
.service-problem, .service-solution {
    padding: 1rem 0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-problem {
    color: var(--text-main);
    border-left: 3px solid #ef4444;
    padding-left: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
}

.service-solution {
    color: var(--text-main);
    border-left: 3px solid #22c55e;
    padding-left: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
}

.service-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.result-metric {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
    white-space: nowrap;
}

.service-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* Cartes de bénéfices avec highlight */
.highlight-card {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.02) 100%);
    position: relative;
}

.highlight-card::before {
    content: 'PRIORITÉ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.roi-calculation {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.cta-benefit {
    margin-top: 1.5rem;
    text-align: center;
}

/* Contact avec value props */
.contact-value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.contact-benefit {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
    white-space: nowrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-guarantee {
    text-align: center;
    margin-top: 1.5rem;
}

.guarantee-text {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 0.9rem;
    display: inline-block;
}

/* Garanties avec highlight */
.highlight-guarantee {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.02) 100%);
}

.guarantee-cta {
    margin-top: 1rem;
    text-align: center;
}

.guarantee-badge {
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Responsive pour les nouveaux éléments */
@media (max-width: 768px) {
    .contact-value-props {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-results {
        flex-direction: column;
    }
    
    .result-metric {
        text-align: center;
    }
    
    .value-highlight {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .value-highlight {
        padding: 1.5rem;
    }
    
    .value-highlight h3 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-benefit {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}