/**
 * MediPulse - Landing page professionnelle moderne
 */

/* Variables */
:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #06b6d4;
    --danger: #dc2626;
    --success: #10b981;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    background: white;
    line-height: 1.6;
}

/* Header */
.home-header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

.home-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo strong {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo avec icône */
.header-logo .logo-main {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
    flex-shrink: 0;
}

.header-logo .pulse-container {
    width: 32px;
    height: 20px;
    position: relative;
}

.header-logo .pulse-line {
    stroke: white;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

.header-logo .logo-text {
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.header-logo .logo-text .medi {
    color: #2d3748;
}

.header-logo .logo-text .pulse {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation du pulse */
@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.pulse-line {
    animation: pulse-animation 2s ease-in-out infinite;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--gray-800);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.hero-trial-info {
    font-size: 14px;
    color: var(--gray-500);
}

/* Problem Section */
.problem-section {
    background: var(--gray-50);
    padding: 80px 24px;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
    line-height: 1.2;
}

.problem-title {
    color: var(--gray-900);
    position: relative;
    padding-bottom: 20px;
}

.problem-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--danger) 0%, var(--primary) 100%);
    border-radius: 2px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: white;
    padding: 32px 28px;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.2s;
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--danger);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.2s;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    border-color: var(--danger);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.08);
    transform: translateY(-4px);
}

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

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

.problem-solution-text {
    text-align: center;
    font-size: 18px;
    color: var(--gray-700);
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    max-width: 900px;
    margin: 0 auto;
}

.problem-solution-text strong {
    color: var(--gray-900);
}

/* Features Section */
.features {
    padding: 100px 24px;
    background: white;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--gray-50);
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
    text-align: center;
}

.feature-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.1);
    transform: translateY(-4px);
}

.feature-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Benefits Section */
.benefits {
    padding: 100px 24px;
    background: var(--gray-50);
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.benefit-item {
    background: white;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.benefit-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.1);
    transform: translateY(-2px);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item h3::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

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

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   SECTION ROI - VERSION AMÉLIORÉE
   ============================================ */

.pricing-roi {
    max-width: 1000px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-roi h3 {
    margin-top: 0;
    color: #dc2626;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-roi h4 {
    color: var(--gray-900);
    font-size: 19px;
    margin: 25px 0 15px;
}

/* Impact réputation - Grid 2 colonnes */
.roi-impact-reputation {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .roi-impact-reputation {
        grid-template-columns: 1fr;
    }
}

/* Fausse carte Google Business */
.fake-google-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.google-business-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 15px;
}

.google-business-header strong {
    font-size: 18px;
    color: #1e293b;
}

.google-rating {
    background: #fbbf24;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
}

.google-rating.bad {
    background: #f59e0b;
}

.rating-breakdown {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

/* Avis Google featuredé */
.fake-google-review {
    background: #f8fafc;
    padding: 16px;
    border-radius: 10px;
    margin-top: 12px;
}

.fake-google-review.featured {
    border: 2px solid #fbbf24;
    background: #fffbeb;
}

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

.review-header strong {
    color: #1e293b;
    font-size: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 20px;
}

.fake-google-review p {
    margin: 0 0 10px;
    color: #475569;
    line-height: 1.6;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: #94a3b8;
}

/* Colonne droite - Impact */
.roi-impact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-box {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.impact-box h4 {
    margin-top: 0;
    color: #dc2626;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Bulle de pensée patient */
.thought-bubble {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    margin-bottom: 20px;
    position: relative;
}

.thought-bubble::before {
    content: '💭';
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 24px;
}

.thought-bubble p {
    margin: 8px 0;
    color: #475569;
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
}

/* Stats d'impact */
.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-stat-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #ef4444;
}

.impact-stat-item strong {
    display: block;
    color: #dc2626;
    font-size: 18px;
    margin-bottom: 5px;
}

.impact-stat-item span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.impact-stat-item u {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* Reality check box */
.reality-check {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

.reality-check h4 {
    margin-top: 0;
    color: #dc2626;
}

.reality-check ul {
    margin: 15px 0;
    padding-left: 20px;
    line-height: 2;
}

.reality-check li {
    color: #475569;
    font-size: 15px;
    margin-bottom: 8px;
}

.reality-check li strong {
    color: #1e293b;
}

.reality-conclusion {
    margin: 15px 0 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.reality-conclusion strong {
    color: #dc2626;
    font-size: 16px;
}

/* Séparateur */
.roi-separator {
    text-align: center;
    margin: 35px 0;
    position: relative;
}

.roi-separator::before,
.roi-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, transparent, #dc2626, transparent);
}

.roi-separator::before { left: 0; }
.roi-separator::after { right: 0; }

.roi-separator span {
    background: white;
    padding: 10px 25px;
    color: #059669;
    font-weight: 700;
    font-size: 17px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    border: 2px solid #10b981;
}

/* Alternative MediPulse */
.roi-alternative {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    margin-bottom: 25px;
}

.roi-alternative h4 {
    margin-top: 0;
    color: #10b981;
    font-size: 20px;
}

.alternative-intro {
    color: #475569;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    margin: 25px 0;
}

.timeline-item {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.timeline-number {
    background: #3b82f6;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}

.timeline-item.success .timeline-number {
    background: #10b981;
    font-size: 22px;
}

.timeline-content {
    background: white;
    padding: 16px;
    border-radius: 10px;
    flex: 1;
    line-height: 1.7;
    color: #475569;
    font-size: 15px;
}

.timeline-content strong {
    color: #1e293b;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.alternative-result {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #10b981;
}

.alternative-result p {
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

.alternative-result strong {
    color: #065f46;
}

/* ROI Numbers - Version compacte */
.roi-numbers {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 25px;
}

.roi-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.roi-stat-compact {
    background: white;
    padding: 15px;
    border-radius: 8px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    border-left: 3px solid #3b82f6;
}

.roi-stat-compact strong {
    color: #1e40af;
    font-size: 16px;
}

/* Conclusion finale */
.roi-conclusion-final {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #10b981;
}

.roi-price {
    font-size: 20px;
    color: #1e293b;
    margin: 0 0 15px;
}

.roi-price strong {
    color: #2563eb;
    font-size: 24px;
}

.roi-result {
    margin: 0;
    font-size: 17px;
    color: #475569;
    line-height: 2;
}

.roi-result strong {
    color: #065f46;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.priceless {
    color: #dc2626;
    font-weight: 700;
    font-size: 18px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 48px 40px;
    margin-top: 48px;
    position: relative;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.pricing-price {
    margin: 32px 0;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-currency {
    font-size: 32px;
    vertical-align: super;
}

.price-period {
    font-size: 16px;
    color: var(--gray-500);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

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

.check-icon {
    color: var(--success);
    font-size: 20px;
    flex-shrink: 0;
    font-weight: bold;
}

.pricing-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 24px;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--gray-50);
    padding: 28px 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.2s;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.1);
    transform: translateX(4px);
}

.faq-item h3 {
    margin: 0 0 12px 0;
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* Footer */
.home-footer {
    background: var(--gray-900);
    color: white;
    padding: 60px 24px 32px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand strong {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    margin-top: 12px;
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* ============================================
   SECTION ROI COMPACTE - VERSION CONDENSÉE
   ============================================ */

.pricing-roi-compact {
    max-width: 900px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #fecaca;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.roi-header {
    text-align: center;
    margin-bottom: 40px;
}

.roi-header h3 {
    color: #dc2626;
    font-size: 26px;
    margin: 0 0 12px;
}

.roi-intro {
    color: var(--gray-600);
    font-size: 18px;
    margin: 0;
}

.roi-scenario {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.scenario-problem,
.scenario-solution {
    background: white;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scenario-problem {
    border: 2px solid #fecaca;
}

.scenario-solution {
    border: 2px solid #86efac;
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.scenario-icon {
    font-size: 24px;
}

.scenario-header strong {
    font-size: 18px;
    color: var(--gray-900);
}

.fake-google-review-mini {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.review-stars {
    color: #dc2626;
    font-size: 20px;
    margin-bottom: 8px;
}

.review-text {
    color: var(--gray-700);
    font-size: 15px;
    margin: 0 0 8px;
    line-height: 1.5;
}

.review-author {
    color: var(--gray-500);
    font-size: 13px;
}

.scenario-impact,
.scenario-result {
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.scenario-impact p,
.scenario-result p {
    margin: 0;
    color: var(--gray-700);
}

.scenario-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scenario-divider span {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-mini {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--gray-50);
    padding: 12px;
    border-radius: 8px;
}

.step-num {
    background: var(--primary);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-mini p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
    padding-top: 2px;
}

.roi-value {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.roi-stat {
    text-align: center;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.roi-stat.highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: var(--primary);
}

.roi-stat.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: var(--success);
}

.roi-stat strong {
    display: block;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.roi-stat span {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Stats Impact Banner - Version subtile */
.impact-stats-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.impact-stat-mini {
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #fecaca;
    transition: all 0.3s;
}

.impact-stat-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.impact-stat-mini strong {
    display: block;
    font-size: 20px;
    color: #dc2626;
    margin-bottom: 6px;
    font-weight: 700;
}

.impact-stat-mini span {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Responsive Stats Banner */
@media (max-width: 768px) {
    .impact-stats-banner {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .impact-stat-mini {
        padding: 16px 12px;
    }

    .impact-stat-mini strong {
        font-size: 18px;
    }

    .impact-stat-mini span {
        font-size: 12px;
    }
}

/* Responsive ROI Compact */
@media (max-width: 768px) {
    .pricing-roi-compact {
        padding: 24px;
    }

    .roi-header h3 {
        font-size: 22px;
    }

    .roi-intro {
        font-size: 16px;
    }

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

    .scenario-divider {
        margin: 10px 0;
    }

    .scenario-divider span {
        transform: rotate(90deg);
    }

    .roi-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .roi-stat {
        padding: 16px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }

    .features-grid,
    .benefits-grid,
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .header-actions {
        gap: 8px;
    }

    /* Logo responsive sur mobile */
    .header-logo .logo-main {
        gap: 8px;
    }

    .header-logo .logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .header-logo .pulse-container {
        width: 26px;
        height: 16px;
    }

    .header-logo .logo-text {
        font-size: 1.3em;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
    }

    .price-amount {
        font-size: 48px;
    }
}
