/* CSS spécifique pour la page d'accueil optimisée marketing */

/* Hero Trust Indicators */
.hero-trust {
    margin-top: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trust-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-badge {
    margin-top: 10px;
}

.ia-act-badge {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.ia-act-badge:hover {
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 42px;
    color: var(--bleu-nuit);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gris-secondaire);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Section - Layout en Z (1ère barre) */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-content {
    order: 1;
}

.problem-visual {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.problem-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e53e3e;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.15);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 20px;
    color: var(--bleu-nuit);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--noir-textuel);
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(215, 174, 84, 0.05) 100%);
}

.methodology-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.method-step {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.method-step .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--vert) 0%, var(--dore) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.method-step h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 20px;
    color: var(--bleu-nuit);
    margin: 20px 0 15px 0;
}

.method-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--noir-textuel);
    margin: 0;
}

.methodology-note {
    background: rgba(215, 174, 84, 0.1);
    border-left: 4px solid var(--dore);
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.methodology-note p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--noir-textuel);
    margin: 0;
}

.methodology-note strong {
    color: var(--bleu-nuit);
    font-weight: 700;
}

/* Product Section with Carousel */
.product-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(31, 58, 96, 0.03) 0%, rgba(215, 174, 84, 0.05) 100%);
}

.product-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 70%;
    object-fit: contain;
    background: #f8f9fa;
    padding: 20px;
}

.slide-caption {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, #2d4a7c 100%);
    color: white;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-caption h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.slide-caption p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Boutons de navigation */
.carousel-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--dore);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Indicateurs */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bleu-nuit);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(31, 58, 96, 0.3);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--dore);
    border-color: var(--dore);
    width: 40px;
    border-radius: 6px;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .product-section {
        padding: 60px 0;
    }

    .carousel-slides {
        aspect-ratio: 4 / 5;
    }

    .carousel-slide img {
        height: 60%;
        padding: 10px;
    }

    .slide-caption {
        height: 40%;
        padding: 20px;
    }

    .slide-caption h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .slide-caption p {
        font-size: 14px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Solution Section - Layout en Z (2ème barre, inversée) */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(215, 174, 84, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-visual {
    order: 1;
}

.solution-content {
    order: 2;
}

.solution-features-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.solution-feature {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 400px;
}

.solution-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dore) 0%, var(--vert) 100%);
}

.solution-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-number {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 48px;
    color: var(--dore);
    opacity: 0.2;
    margin-bottom: 20px;
}

.solution-feature h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 26px;
    color: var(--bleu-nuit);
    margin-bottom: 15px;
}

.solution-feature p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--noir-textuel);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--vert);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--dore);
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.use-case-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    border: 2px solid transparent;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--dore);
}

.use-case-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.use-case-badge.rationnel {
    background-color: #e3f2fd;
    color: #1565c0;
}

.use-case-badge.emotionnel {
    background-color: #f3e5f5;
    color: #6a1b9a;
}

.use-case-badge.social {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.use-case-badge.cognitif {
    background-color: #fff3e0;
    color: #e65100;
}

.use-case-badge.statutaire {
    background-color: #fce4ec;
    color: #c2185b;
}

.use-case-badge.valeurs {
    background-color: #e0f2f1;
    color: #00695c;
}

.use-case-badge.securite {
    background-color: #ffebee;
    color: #c62828;
}

.use-case-card h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 20px;
    color: var(--bleu-nuit);
    margin-bottom: 10px;
}

.use-case-card p {
    font-size: 14px;
    color: var(--gris-secondaire);
    margin-bottom: 15px;
}

.card-arrow {
    font-size: 24px;
    color: var(--dore);
    position: absolute;
    bottom: 20px;
    right: 25px;
    transition: transform 0.3s ease;
}

.use-case-card:hover .card-arrow {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(215, 174, 84, 0.03) 0%, rgba(76, 175, 80, 0.03) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--dore);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--noir-textuel);
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--dore);
}

.testimonial-author {
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gris-clair);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 18px;
    color: var(--bleu-nuit);
    margin: 0;
}

.author-role {
    font-size: 14px;
    color: var(--gris-secondaire);
    font-weight: 600;
    margin: 0;
}

.author-org {
    font-size: 13px;
    color: var(--gris-secondaire);
    margin: 0;
}

.testimonial-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(215, 174, 84, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: 8px;
    flex: 1;
    min-width: 120px;
}

.stat-value {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 32px;
    color: var(--vert);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--gris-secondaire);
    text-align: center;
    font-weight: 600;
}

/* Differentiation Section */
.differentiation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gris-clair) 0%, white 100%);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--bleu-nuit);
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 20px 0;
}

.comparison-col.highlight {
    background: var(--dore);
    color: var(--bleu-nuit);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--gris-clair);
    padding: 20px 0;
    text-align: center;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    text-align: left;
    padding-left: 30px;
    font-weight: 600;
    color: var(--noir-textuel);
}

.comparison-value {
    font-size: 24px;
    font-weight: 700;
}

.comparison-value.highlight {
    color: var(--vert);
}

.comparison-value:not(.highlight) {
    color: #e53e3e;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid var(--gris-clair);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--dore);
}

.pricing-card.featured {
    border-color: var(--dore);
    border-width: 3px;
    box-shadow: 0 8px 30px rgba(215, 174, 84, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--dore) 0%, #c9a055 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 28px;
    color: var(--bleu-nuit);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--gris-secondaire);
    margin: 0;
}

.pricing-price {
    text-align: center;
    padding: 25px 0;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gris-clair);
}

.price-amount {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 36px;
    color: var(--bleu-nuit);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--gris-secondaire);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--noir-textuel);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .button {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(215, 174, 84, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--dore);
}

.pricing-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--noir-textuel);
    margin: 0;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(31, 58, 96, 0.03) 0%, rgba(215, 174, 84, 0.03) 100%);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--vert) 0%, var(--dore) 50%, var(--gris-clair) 100%);
    transform: translateX(-50%);
}

.roadmap-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-left: calc(50% + 30px);
    width: calc(50% - 50px);
}

.roadmap-item:nth-child(even) {
    margin-left: 0;
    margin-right: calc(50% + 30px);
}

.roadmap-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 40px;
    background: white;
    border: 4px solid var(--gris-clair);
}

.roadmap-item:nth-child(odd)::before {
    left: -40px;
}

.roadmap-item:nth-child(even)::before {
    right: -40px;
}

.roadmap-item.completed::before {
    background: var(--vert);
    border-color: var(--vert);
}

.roadmap-item.current::before {
    background: var(--dore);
    border-color: var(--dore);
    animation: pulse 2s infinite;
}

.roadmap-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.roadmap-item.completed .roadmap-status {
    background: rgba(76, 175, 80, 0.1);
    color: var(--vert);
}

.roadmap-item.current .roadmap-status {
    background: rgba(215, 174, 84, 0.2);
    color: #c99a45;
}

.roadmap-item.upcoming .roadmap-status {
    background: var(--gris-clair);
    color: var(--gris-secondaire);
}

.roadmap-item h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 22px;
    color: var(--bleu-nuit);
    margin-bottom: 10px;
}

.roadmap-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--noir-textuel);
    margin-bottom: 15px;
}

.roadmap-date {
    font-size: 13px;
    color: var(--gris-secondaire);
    font-weight: 600;
    font-style: italic;
}

.roadmap-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(215, 174, 84, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--dore);
}

.roadmap-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--noir-textuel);
    margin-bottom: 10px;
}

.roadmap-cta p:last-child {
    margin-bottom: 0;
}

/* Responsive Roadmap */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-item,
    .roadmap-item:nth-child(even) {
        margin-left: 50px;
        margin-right: 0;
        width: calc(100% - 70px);
    }
    
    .roadmap-item::before,
    .roadmap-item:nth-child(even)::before {
        left: -40px;
        right: auto;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, #2d4a7c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(215, 174, 84, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0 30px;
    backdrop-filter: blur(10px);
}

.cta-process h3 {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dore) 0%, #c9a055 100%);
    color: var(--bleu-nuit);
    border-radius: 50%;
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(215, 174, 84, 0.4);
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.process-step strong {
    display: block;
    font-size: 17px;
    margin-bottom: 8px;
    color: white;
}

.cta-guarantee {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Boutons de partage social */
.social-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.share-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: center;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.share-button.linkedin {
    background: #0077B5;
    color: white;
}

.share-button.linkedin:hover {
    background: #005885;
}

.share-button.share {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.share-button.share:hover {
    background: linear-gradient(135deg, #5568d3 0%, #63408a 100%);
}

.share-button svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .problem-content,
    .problem-visual,
    .solution-visual,
    .solution-content {
        order: initial;
    }

    .problem-visual {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-label {
        padding-left: 15px;
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .button {
        width: 100%;
        max-width: 300px;
    }
}
