/* ================================================================
   ADVANTAGES PAGE - STYLES SPÉCIFIQUES
   Fichier: styles/pages/advantages.css
   Description: Styles pour la page des avantages
================================================================ */

/* Empêcher le débordement horizontal */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ==================== GLOBAL SECTION STYLES ==================== */
/* Note: Le système de fond universel est maintenant dans main.css */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Icon image dans les titres de section */
.section-icon {
    width: 6rem;  /* 3rem × 2 = 6rem */
    height: 6rem;
    object-fit: contain;
    flex-shrink: 0;
}

.section-title.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary); /* Fallback color before gradient loads */
}

.section-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== HERO SECTION ==================== */
.advantages-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    /* Background géré par section dans main.css */
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.25) 0%, rgba(139, 115, 85, 0) 70%);
    top: -300px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 144, 128, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -8s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(6, 182, 212, 0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-25px, 25px) scale(0.98);
    }
}

/* Hero Content */
.advantages-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 0;
}

.advantages-hero .hero-text {
    max-width: 1000px;
    margin: 0 auto;
}

.advantages-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.advantages-hero .title-line {
    display: block;
    margin-bottom: 0.3em;
}

.advantages-hero .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary); /* Fallback color before gradient loads */
}

.advantages-hero .hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 600;
}

.advantages-hero .hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero Stats Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 115, 85, 0.15);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(107, 88, 69, 0.12);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.20);
    background: rgba(255, 255, 255, 0.95);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* === CTA BUTTONS (Identical to index.html) === */
.advantages-hero .btn-primary {
    padding: 1.125rem 2.5rem;
    background: var(--gradient-1);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.4);
    position: relative;
    overflow: hidden;
}

.advantages-hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.advantages-hero .btn-primary:hover::before {
    left: 100%;
}

.advantages-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 115, 85, 0.5);
}

.advantages-hero .btn-primary:active {
    transform: translateY(-1px);
}

.advantages-hero .btn-secondary {
    padding: 1.125rem 2.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-full);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-base);
}

.advantages-hero .btn-secondary:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.3);
}

/* ==================== CHATBOT COMPARISON SECTION ==================== */
.chatbot-comparison-section {
    padding: 8rem 0;
    /* Background géré par section dans main.css */
    position: relative;
    overflow: hidden;
}

.chatbot-comparison-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.chatbot-comparison-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 197, 176, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
    animation-delay: -10s;
}

.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* ========== CARDS - FOND BLANC PUR ========== */
.comparison-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 111, 71, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

/* Style spécial pour AzenFlow - MISE EN VALEUR ÉLÉGANTE */
.comparison-card.excellent-example {
    border: 3px solid var(--primary);
    box-shadow: 0 15px 50px rgba(139, 115, 85, 0.20);
    transform: scale(1.02);
    z-index: 2;
}

.comparison-card.excellent-example:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 25px 70px rgba(139, 115, 85, 0.30);
}

/* Badge "BEST CHOICE" - SUPPRIMÉ */
/* .comparison-card.excellent-example::before {
    content: '⭐ BEST CHOICE';
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #3E362E;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
} */

/* ========== CARD HEADERS - BEIGE CLAIR ET GRADIENT MARRON ========== */
.comparison-card .card-header {
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 120px; /* Hauteur minimale pour uniformité */
}

/* Headers pour Old Tech cards - BEIGE CLAIR de la palette */
.comparison-card.bad-example .card-header,
.comparison-card.medium-example .card-header {
    background: #F5F1EB;
}

/* Header pour AzenFlow - GRADIENT MARRON ÉLÉGANT */
.comparison-card.excellent-example .card-header {
    background: var(--gradient-1);
    padding: 2rem 1.75rem; /* Même padding que les autres cards */
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 120px; /* Même hauteur minimale */
}

/* ========== CARD TITLES - TYPOGRAPHIE MARQUÉE ========== */
.card-title {
    font-size: 1.375rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.comparison-card.bad-example .card-title,
.comparison-card.medium-example .card-title {
    color: var(--text-primary);
}

.comparison-card.excellent-example .card-title {
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ========== BADGES - GRIS DISCRET ET DORÉ PREMIUM ========== */
.card-badge {
    display: inline-block;
    padding: 0.5rem 1.125rem;
    border-radius: var(--border-radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Badges gris discrets pour les 2 premiers */
.card-badge.bad,
.card-badge.medium {
    background: rgba(107, 114, 128, 0.12);
    color: #4B5563;
    border: 1px solid rgba(107, 114, 128, 0.18);
}

/* Badge doré/jaune premium pour AzenFlow */
.card-badge.excellent {
    background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    color: #3E362E;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
    border: none;
}

/* ========== CARD DESCRIPTION - BLANC/BEIGE PÂLE ========== */
.card-description {
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    padding: 1.5rem 1.75rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
    color: var(--text-primary);
    min-height: 100px; /* Hauteur minimale pour uniformité */
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-card.excellent-example .card-description {
    background: #F9F7F4;
    font-weight: 600;
}

/* ========== SIMULATION DE CHAT - BEIGE ET VERT LINE ========== */
.card-content {
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* ========== CHATBOT SIMULATION - ZONE DE CONVERSATION ========== */
.chatbot-simulation {
    padding: 1.5rem 1.25rem;
    height: 580px; /* Hauteur fixe adaptée à la card la plus grande (Card 2) */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Background BEIGE TRÈS PÂLE pour les 2 premiers */
.comparison-card.bad-example .chatbot-simulation,
.comparison-card.medium-example .chatbot-simulation {
    background: #F9F7F4;
}

/* Background VERT LINE PÂLE pour AzenFlow - seule exception colorée */
.comparison-card.excellent-example .chatbot-simulation {
    background: #E8F5E9;
}

/* Barre supérieure decorative - gris pour les 2 premiers, vert LINE pour AzenFlow */
.chatbot-simulation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.comparison-card.bad-example .chatbot-simulation::before,
.comparison-card.medium-example .chatbot-simulation::before {
    background: #E5E7EB;
}

.comparison-card.excellent-example .chatbot-simulation::before {
    background: #06C755;
}

/* ========== MESSAGES DE CHAT - BULLES MODERNES ========== */
.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0;
    align-items: flex-start;
    animation: fadeInUp 0.4s ease-out;
}

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

.chat-message.user {
    flex-direction: row-reverse;
}

/* Avatars - Simple et discret */
.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.chat-message:hover .message-avatar {
    transform: scale(1.05);
}

/* Avatars des 2 premiers - gris clair */
.comparison-card.bad-example .message-avatar,
.comparison-card.medium-example .message-avatar {
    background: #F3F4F6;
}

/* Avatar AzenFlow - blanc avec border vert LINE */
.comparison-card.excellent-example .message-avatar {
    background: white;
    border: 2px solid #06C755;
}

/* ========== MESSAGE BUBBLES - PALETTE DU SITE ========== */
.message-bubble {
    padding: 0.875rem 1.125rem;
    border-radius: 20px;
    max-width: 80%;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.chat-message:hover .message-bubble {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Bulles BOT - Blanc avec border grise légère pour les 2 premiers */
.comparison-card.bad-example .chat-message.bot .message-bubble,
.comparison-card.medium-example .chat-message.bot .message-bubble {
    background: white;
    color: var(--text-primary);
    border: 1px solid #E5E7EB;
}

/* Bulles BOT AzenFlow - BEIGE/CRÈME avec border marron - cohérent avec le site! */
.comparison-card.excellent-example .chat-message.bot .message-bubble {
    background: #F5EDE4;
    color: var(--text-primary);
    border: 1px solid rgba(139, 115, 85, 0.2);
}

/* Bulles USER - Gris pour les 2 premiers */
.comparison-card.bad-example .chat-message.user .message-bubble,
.comparison-card.medium-example .chat-message.user .message-bubble {
    background: #6B7280;
    color: white;
    font-weight: 500;
}

/* Bulles USER AzenFlow - VERT LINE authentique */
.comparison-card.excellent-example .chat-message.user .message-bubble {
    background: #06C755;
    color: white;
    font-weight: 500;
}

/* Bulle spéciale INSTANT pour AzenFlow - Beige clair avec border marron */
.chat-message.bot.instant .message-bubble {
    background: #FFF9F0;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 16px rgba(139, 115, 85, 0.15);
    color: var(--text-primary);
}

/* Bubble tails - Couleurs adaptées à la palette */
.chat-message.bot .message-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    filter: drop-shadow(-2px 2px 2px rgba(0, 0, 0, 0.04));
}

/* Tails BOT - Blanc pour les 2 premiers */
.comparison-card.bad-example .chat-message.bot .message-bubble::before,
.comparison-card.medium-example .chat-message.bot .message-bubble::before {
    border-color: transparent white transparent transparent;
}

/* Tail BOT AzenFlow - Beige/crème */
.comparison-card.excellent-example .chat-message.bot .message-bubble::before {
    border-color: transparent #F5EDE4 transparent transparent;
}

/* Tail INSTANT - Beige clair */
.chat-message.bot.instant .message-bubble::before {
    border-color: transparent #FFF9F0 transparent transparent;
}

/* Tails USER */
.chat-message.user .message-bubble::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.04));
}

/* Tail USER - Gris pour les 2 premiers */
.comparison-card.bad-example .chat-message.user .message-bubble::before,
.comparison-card.medium-example .chat-message.user .message-bubble::before {
    border-color: transparent transparent transparent #6B7280;
}

/* Tail USER AzenFlow - Vert LINE */
.comparison-card.excellent-example .chat-message.user .message-bubble::before {
    border-color: transparent transparent transparent #06C755;
}

/* Badge "⚡ 3 sec response" - Style pill marron avec blanc */
.instant-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.8125rem;
    font-weight: 900;
    margin-bottom: 0.875rem;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.30);
    letter-spacing: 0.02em;
}

.message-bubble ol {
    margin: 0.5rem 0;
    padding-left: 1.125rem;
}

.message-bubble ol li {
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
}

.message-bubble a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.message-bubble a:hover {
    text-decoration: underline;
}

/* Keyword Detection Box */
.keyword-detection {
    margin: 0.75rem 0;
    padding: 0;
}

.keyword-box {
    background: #F9FAFB;
    border: 1.5px dashed #9CA3AF;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.keyword-label {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.keyword-tags {
    display: flex;
    gap: 0.375rem;
    justify-content: center;
    flex-wrap: wrap;
}

.keyword-tag {
    background: white;
    color: #374151;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid #D1D5DB;
}

.keyword-response-note {
    font-size: 0.8125rem;
    color: #6B7280;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

/* ========== INSIGHT MESSAGES - Style compact et élégant ========== */
.scenario-insight,
.keyword-insight,
.confusion-note {
    /* Dimensions compactes */
    padding: 0.625rem 1rem;
    margin: 1rem 1.5rem 0.75rem 1.5rem;

    /* Style visuel élégant */
    background: #FEF2F2;
    border-left: 3px solid #EF4444;
    border-radius: 6px;
    color: #DC2626;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;

    /* Alignement parfait */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    /* Ombre subtile pour profondeur */
    box-shadow: 0 1px 3px rgba(239, 68, 68, 0.1);
}

/* Icon et texte bien alignés */
.scenario-insight span,
.keyword-insight span,
.confusion-note span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========== AZENFLOW INSIGHT - Style positif vert ========== */
.azenflow-insight {
    /* Dimensions compactes */
    padding: 0.625rem 1rem;
    margin: 1rem 1.5rem 0.75rem 1.5rem;

    /* Style visuel élégant VERT */
    background: #F0FDF4;
    border-left: 3px solid #8B6F47;
    border-radius: 6px;
    color: #8B6F47;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;

    /* Alignement parfait */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    /* Ombre subtile pour profondeur */
    box-shadow: 0 1px 3px rgba(139, 111, 71, 0.1);
}

/* Icon et texte bien alignés */
.azenflow-insight span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Button Choices */
.button-choices {
    display: flex;
    gap: 0.375rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.button-choices.vertical {
    flex-direction: column;
}

.choice-btn {
    padding: 0.5rem 0.875rem;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 6px;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.choice-btn:hover {
    border-color: #667eea;
    background: #F9FAFB;
}

.choice-btn.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.choice-btn.irrelevant {
    opacity: 0.5;
    border-color: #D1D5DB;
    background: #F9FAFB;
    color: #9CA3AF;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.typing-indicator .dots {
    display: flex;
    gap: 0.25rem;
}

.typing-indicator .dots span {
    width: 6px;
    height: 6px;
    background: #9CA3AF;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator .dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.more-steps {
    text-align: center;
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-top: 0.75rem;
    font-weight: 700;
}

/* ========== SECTIONS FOOTER - FORMAT COMPACT ET HARMONIEUX ========== */
.comparison-footer {
    /* Structure identique pour les 3 sections */
    background: #FFFFFF;
    padding: 1.25rem 1.5rem 1rem 1.5rem;
    border-top: 2px solid #E5E7EB;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Alias pour compatibilité avec le HTML existant */
.card-problems,
.card-benefits {
    background: #FFFFFF;
    padding: 1.25rem 1.5rem 1rem 1.5rem;
    border-top: 2px solid #E5E7EB;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========== ITEMS - FORMAT IDENTIQUE POUR LES 3 ========== */
.comparison-footer-item,
.problem-item,
.benefit-item {
    /* Structure identique */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: transparent;
    border: 1px solid #F3F4F6;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    color: #374151;
    transition: all 0.2s ease;
}

.comparison-footer-item:hover,
.problem-item:hover,
.benefit-item:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: translateX(3px);
}

/* ========== ICONS - SEULE DIFFÉRENCE ========== */
.comparison-footer-icon,
.problem-icon,
.benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}

/* Icons orange pour warnings (Scenario & Keyword) */
.comparison-footer-icon.warning,
.problem-icon {
    color: #F59E0B;
}

/* Icons marron pour success (AzenFlow) */
.comparison-footer-icon.success,
.benefit-icon {
    color: #8B6F47;
}

/* Image icon pour les bénéfices */
.benefit-icon-img {
    width: 1.4rem;  /* 1.75rem × 0.8 = 1.4rem (réduction de 20%) */
    height: 1.4rem;
    flex-shrink: 0;
    object-fit: contain;
}

/* ==================== AI ADOPTION SECTION - TITRE CENTRÉ + 2 COLONNES ==================== */
.ai-adoption-section {
    padding: 6rem 0;
    /* Background géré par section dans main.css */
}

/* Titre centré en haut */
.ai-adoption-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ai-adoption-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap; /* Empêche le passage à la ligne */
}

.ai-adoption-section .title-icon {
    font-size: 1.2em;
}

/* Layout 2 colonnes (Desktop) */
.adoption-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: flex-start;
}

/* Tablet & Mobile - Stack vertical */
@media (max-width: 1023px) {
    .adoption-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}

/* ========== SECTION TEXTE (Gauche sur desktop - sans titre) ========== */
.adoption-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Description en paragraphes */
.adoption-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Box AzenFlow avec 👉 */
.adoption-highlight {
    background: linear-gradient(135deg,
        rgba(139, 115, 85, 0.08) 0%,
        rgba(139, 115, 85, 0.04) 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(107, 88, 69, 0.1);
    transition: all 0.3s ease;
}

.adoption-highlight:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(107, 88, 69, 0.15);
}

.highlight-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}

.highlight-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ========== SECTION GRAPHIQUE (Droite sur desktop) - SANS BOX ========== */
.adoption-chart {
    /* PAS de background blanc */
    /* PAS de padding excessif */
    /* PAS de border ou box-shadow */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Container flex : graphique + légende côte à côte */
.chart-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.chart-visual {
    flex-shrink: 0;
}

/* Le SVG du graphique - directement sur le fond */
.chart-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.chart-svg text {
    font-family: var(--font-sans);
}

/* Légende à côté du graphique */
.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 280px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem; /* Légèrement réduit */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.legend-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-percentage {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 60px;
}

.legend-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
    flex: 1;
}

/* ==================== SUPPORT SYSTEM SECTION - 3 COLONNES ==================== */
.support-system-section {
    padding: 6rem 0;
    /* Background géré par section dans main.css */
}

/* Titre centré */
.support-system-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-system-section .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.3;
}

/* Container des 3 phases - GRID 3 colonnes sur desktop */
.support-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Chaque phase (card) */
.support-phase {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 115, 85, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-phase:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Header de chaque phase */
.phase-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.phase-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.phase-icon-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.phase-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

/* Liste des items */
.phase-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

/* Checkmark icon container */
.item-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Check icon image */
.check-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Contenu de l'item */
.item-content {
    flex: 1;
    line-height: 1.6;
}

.item-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.item-content span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== THREE PILLARS SECTION ==================== */
.three-pillars-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon .icon-emoji {
    font-size: 3.5rem;
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.pillar-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid #f0f0f0;
}

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

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
    padding: 8rem 0;
    /* Background transparent pour laisser voir le gradient du site */
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 4rem auto 0;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-table thead th {
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table .highlight-column {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
}

.comparison-table .our-solution {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.comparison-table .badge {
    background: #FCD34D;
    color: #78350F;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody td {
    padding: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .check {
    color: #8B6F47;
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-table .cross {
    color: #EF4444;
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-table .price-tag {
    font-weight: 700;
    color: var(--primary);
}

.comparison-table .speed {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    padding: 8rem 0;
    /* Background transparent pour laisser voir le gradient du site */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 8rem 2rem;
    background: transparent;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(139, 111, 71, 0.15);
}

/* Animated background elements */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 40s linear infinite reverse;
}

/* === CTA CONTENT === */
.cta-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* === CTA TITLE === */
.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-black);
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: var(--line-height-tight);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out;
}

/* === CTA SUBTITLE === */
.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-medium);
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* === CTA BADGES === */
.cta-badges {
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-badge-line {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    line-height: var(--line-height-relaxed);
    margin: 0.5rem 0;
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(139, 111, 71, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-full);
    border: 2px solid var(--primary);
}

/* === CTA BUTTONS WRAPPER === */
.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* === CTA BUTTONS === */
.cta-button-primary,
.cta-button-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.75rem 3rem;
    border-radius: var(--border-radius-full);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    width: 48%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

/* Primary Button (Book Consultation) */
.cta-button-primary {
    background: #FFFFFF;
    color: #8B6F47;
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: #FAFAFA;
}

.cta-button-primary:active {
    transform: translateY(-2px);
}

/* Secondary Button (FAQ) */
.cta-button-secondary {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139, 111, 71, 0.1);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.cta-button-secondary:hover::before {
    opacity: 1;
}

.cta-button-secondary:hover {
    background: rgba(139, 111, 71, 0.08);
    transform: translateY(-3px);
    border-color: var(--primary-dark);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.25);
}

/* === BUTTON TEXT === */
.cta-main-text {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

.cta-sub-text {
    display: block;
    font-size: clamp(0.75rem, 2vw, 0.9375rem);
    font-weight: var(--font-weight-semibold);
    opacity: 0.85;
}

.cta-button-secondary .cta-sub-text {
    opacity: 0.9;
}

/* === CTA PROCESS === */
.cta-process {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-process-title {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-process-list {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    line-height: 2;
    list-style: none;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-process-list li {
    margin: 0;
    padding: 1rem 1.25rem;
    padding-left: 3rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    transition: all var(--transition-base);
    width: fit-content;
    flex-shrink: 0;
}

.cta-process-list li:hover {
    transform: translateX(10px);
    background: rgba(139, 111, 71, 0.05);
    border-left-color: var(--primary-dark);
}

.cta-process-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-black);
    font-size: var(--font-size-xs);
}

/* === CTA CONTACT BOX === */
.cta-contact-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 2rem 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cta-contact-box p {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: var(--font-weight-medium);
    color: #FFFFFF;
    line-height: var(--line-height-relaxed);
    margin: 0.5rem 0;
    text-align: center;
}

/* === RESPONSIVE CTA === */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.25rem;
    }

    .cta-subtitle {
        font-size: clamp(0.875rem, 3vw, 1.125rem);
        margin-bottom: 1.5rem;
    }

    .cta-badge-line {
        font-size: clamp(0.75rem, 2.5vw, 1rem);
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        padding: 1.5rem 2rem;
    }

    .cta-main-text {
        font-size: clamp(0.875rem, 3vw, 1.125rem);
    }

    .cta-sub-text {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    }

    .cta-process-title {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 1.5rem;
    }

    .cta-process-list {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        line-height: 2;
        text-align: center;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .cta-process-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        margin: 0;
        width: auto;
        background: none;
        border: none;
        text-align: left;
        display: inline-block;
    }

    .cta-process-list li:hover {
        transform: none;
        background: none;
    }

    .cta-process-list li::before {
        content: attr(data-number) ".";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        height: auto;
        background: none;
        color: var(--primary);
        font-weight: var(--font-weight-bold);
        font-size: 1rem;
        display: block;
        border-radius: 0;
    }

    .cta-contact-box {
        padding: 1.5rem 2rem;
    }

    .cta-contact-box p {
        font-size: clamp(0.75rem, 2.5vw, 1rem);
        margin: 0.375rem 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .cta-subtitle {
        font-size: clamp(0.8125rem, 2.5vw, 1rem);
    }

    .cta-badge-line {
        font-size: clamp(0.6875rem, 2vw, 0.875rem);
        padding: 0;
    }

    .cta-button-primary,
    .cta-button-secondary {
        padding: 1.25rem 1.5rem;
    }

    .cta-main-text {
        font-size: clamp(0.8125rem, 2.5vw, 1rem);
    }

    .cta-process-list {
        font-size: clamp(0.8125rem, 2vw, 0.9375rem);
        line-height: 1.75;
    }

    .cta-process-list li {
        padding: 0.375rem 0;
        padding-left: 1.25rem;
        margin: 0;
    }

    .cta-process-list li::before {
        font-size: 0.8125rem;
    }
}

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

/* Tablette (768px-1024px) */
@media (max-width: 1024px) {
    .comparison-cards-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 700px;
        margin: 4rem auto 0;
    }

    /* AzenFlow garde sa mise en valeur sur tablette */
    .comparison-card.excellent-example {
        transform: scale(1.03);
    }

    .comparison-card.excellent-example:hover {
        transform: translateY(-10px) scale(1.05);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* AI Adoption Section - Géré par media queries dans la section principale */

    /* Support System responsive - Tablette : 2 colonnes puis 3ème en dessous */
    .support-phases {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .support-phase:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Section icon responsive */
    .section-icon {
        width: 5rem;  /* 2.5rem × 2 = 5rem */
        height: 5rem;
    }

    .advantages-hero {
        min-height: auto;
        padding: 100px 0 4rem;
    }

    .advantages-hero .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .advantages-hero .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.375rem);
    }

    .advantages-hero .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .advantages-hero .btn-primary,
    .advantages-hero .btn-secondary {
        width: auto;
        max-width: 280px;
        text-align: center;
        padding: 0.875rem 1.75rem !important;
        font-size: 0.9375rem !important;
    }

    .chatbot-comparison-section,
    .ai-adoption-section,
    .support-system-section,
    .three-pillars-section,
    .comparison-section,
    .benefits-section,
    .cta-section {
        padding: 4rem 0;
    }

    /* Support System responsive - Mobile : Stack vertical */
    .support-system-section {
        padding: 4rem 0;
    }

    .support-system-section .section-header {
        margin-bottom: 2rem;
    }

    .support-phases {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-phase {
        padding: 1.5rem 1.25rem;
    }

    .support-phase:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .phase-header {
        gap: 0.5rem;
        padding-bottom: 0.875rem;
    }

    .phase-icon {
        font-size: 1.75rem;
    }

    .phase-title {
        font-size: 1.125rem;
    }

    .phase-list {
        gap: 0.875rem;
    }

    .item-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6875rem;
    }

    .item-content strong {
        font-size: 0.9375rem;
    }

    .item-content span {
        font-size: 0.8125rem;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .phase-icon {
        font-size: 2.5rem;
    }

    .phase-title {
        font-size: 1.25rem;
    }

    .phase-list {
        gap: 1.25rem;
    }

    .item-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .item-content strong {
        font-size: 1rem;
    }

    .item-content span {
        font-size: 0.875rem;
    }

    /* AI Adoption Section Mobile */
    .ai-adoption-content {
        margin-top: 2.5rem;
        gap: 2.5rem;
    }

    /* AI Adoption responsive - Tablette */
    .ai-adoption-section .section-header {
        margin-bottom: 2.5rem;
    }

    .ai-adoption-section .section-title {
        font-size: 2.25rem;
    }

    .adoption-description {
        font-size: 1rem;
    }

    .adoption-highlight {
        padding: 1.25rem;
    }

    .highlight-icon {
        font-size: 1.5rem;
    }

    /* Responsive : légende passe en dessous sur tablette */
    .chart-container {
        flex-direction: column;
        gap: 2rem;
    }

    .chart-legend {
        width: 100%;
        max-width: 400px;
    }

    .chart-svg {
        max-width: 350px;
    }

    .legend-percentage {
        font-size: 1rem;
    }

    .legend-text {
        font-size: 0.75rem;
    }

    .legend-color {
        width: 20px;
        height: 20px;
    }

    /* ========== CHATBOT COMPARISON - MOBILE OPTIMISÉ ========== */
    .comparison-cards-grid {
        gap: 2rem;
        margin-top: 2.5rem;
        grid-template-columns: 1fr;
    }

    .comparison-card {
        gap: 0;
        border-radius: var(--border-radius-lg);
    }

    /* Badge BEST CHOICE - SUPPRIMÉ */
    /* .comparison-card.excellent-example::before {
        top: -12px;
        right: 15px;
        font-size: 0.6875rem;
        padding: 0.375rem 1rem;
    } */

    /* Headers mobile - Restent lisibles */
    .card-header {
        padding: 1.5rem 1.25rem;
    }

    .card-title {
        font-size: 1.125rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-card.excellent-example .card-title {
        font-size: 1.25rem;
    }

    .card-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }

    /* Description mobile */
    .card-description {
        padding: 1.125rem 1rem;
        font-size: 0.875rem;
    }

    /* Simulation de chat - Reste lisible */
    .chatbot-simulation {
        padding: 1.125rem 1rem;
        height: 520px; /* Hauteur fixe pour tablette, adaptée au contenu */
        gap: 0.875rem;
    }

    /* Messages bubbles optimisés mobile */
    .message-avatar {
        width: 32px;
        height: 32px;
        font-size: 1.125rem;
    }

    .message-bubble {
        max-width: 85%;
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
        border-radius: 18px;
    }

    .instant-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    /* Footer sections - Format compact sur mobile */
    .comparison-footer,
    .card-problems,
    .card-benefits {
        padding: 1rem 1.25rem 0.875rem 1.25rem;
        gap: 0.625rem;
    }

    .comparison-footer-item,
    .problem-item,
    .benefit-item {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
        gap: 0.625rem;
    }

    .comparison-footer-icon,
    .problem-icon,
    .benefit-icon {
        font-size: 1.125rem;
    }

    .choice-btn {
        font-size: 0.75rem;
        padding: 0.425rem 0.75rem;
    }

    .keyword-box {
        padding: 0.625rem;
    }

    .keyword-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    /* Insight messages - responsive tablet */
    .scenario-insight,
    .keyword-insight,
    .confusion-note,
    .azenflow-insight {
        padding: 0.5rem 0.875rem;
        margin: 0.875rem 1rem 0.625rem 1rem;
        font-size: 0.8125rem;
    }

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

    .comparison-table-wrapper {
        margin-top: 2rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table thead th {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }

    .comparison-table tbody td {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cta-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile très petit (≤480px) */
@media (max-width: 480px) {
    /* Section icon mobile */
    .section-icon {
        width: 4rem;  /* 2rem × 2 = 4rem */
        height: 4rem;
    }

    .advantages-hero .hero-content {
        padding: 3rem 0;
    }

    .advantages-hero .btn-primary,
    .advantages-hero .btn-secondary {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.875rem !important;
        width: auto;
        max-width: 260px;
    }

    .advantages-hero .hero-cta {
        gap: 0.75rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* ========== CHATBOT COMPARISON - PETIT MOBILE ========== */
    .comparison-cards-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .comparison-card {
        gap: 0;
        border-radius: var(--border-radius-md);
    }

    /* Badge BEST CHOICE - SUPPRIMÉ */
    /* .comparison-card.excellent-example::before {
        content: '⭐ BEST';
        top: -10px;
        right: 10px;
        font-size: 0.625rem;
        padding: 0.3rem 0.75rem;
    } */

    /* Headers petit mobile */
    .card-header {
        padding: 1.25rem 1rem;
    }

    .card-title {
        font-size: 1rem;
        gap: 0.375rem;
    }

    .comparison-card.excellent-example .card-title {
        font-size: 1.125rem;
    }

    .card-badge {
        font-size: 0.6875rem;
        padding: 0.3rem 0.75rem;
    }

    /* Description petit mobile */
    .card-description {
        font-size: 0.8125rem;
        padding: 1rem 0.875rem;
    }

    /* Simulation compact mais lisible */
    .chatbot-simulation {
        padding: 1rem 0.875rem;
        height: 480px; /* Hauteur fixe pour mobile, adaptée au contenu */
        gap: 0.75rem;
    }

    /* Messages ultra compact */
    .message-avatar {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .message-bubble {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
        max-width: 82%;
        border-radius: 16px;
    }

    .message-bubble ol {
        padding-left: 1rem;
        font-size: 0.75rem;
    }

    .message-bubble ol li {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .instant-badge {
        font-size: 0.6875rem;
        padding: 0.35rem 0.75rem;
    }

    /* Footer sections - Format compact petit mobile */
    .comparison-footer,
    .card-problems,
    .card-benefits {
        padding: 0.875rem 1rem 0.75rem 1rem;
        gap: 0.5rem;
    }

    .comparison-footer-item,
    .problem-item,
    .benefit-item {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .comparison-footer-icon,
    .problem-icon,
    .benefit-icon {
        font-size: 1rem;
    }

    .choice-btn {
        font-size: 0.6875rem;
        padding: 0.375rem 0.625rem;
    }

    .keyword-box {
        padding: 0.5rem;
    }

    .keyword-label {
        font-size: 0.6875rem;
    }

    .keyword-tag {
        font-size: 0.6875rem;
        padding: 0.2rem 0.5rem;
    }

    .keyword-response-note {
        font-size: 0.75rem;
    }

    /* Insight messages - responsive mobile */
    .scenario-insight,
    .keyword-insight,
    .confusion-note,
    .azenflow-insight {
        padding: 0.5rem 0.75rem;
        margin: 0.75rem 0.875rem 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .pillar-card {
        padding: 2rem 1.5rem;
    }

    .pillar-icon {
        width: 80px;
        height: 80px;
    }

    .pillar-icon .icon-emoji {
        font-size: 2.5rem;
    }

    .pillar-title {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    /* Support System Section 480px */
    .support-phase {
        padding: 1.5rem;
    }

    .phase-header {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .phase-icon {
        font-size: 2rem;
    }

    .phase-title {
        font-size: 1.125rem;
    }

    .phase-list {
        gap: 1rem;
    }

    .item-icon {
        width: 22px;
        height: 22px;
        font-size: 0.6875rem;
    }

    .item-content strong {
        font-size: 0.9375rem;
    }

    .item-content span {
        font-size: 0.8125rem;
    }

    /* AI Adoption Section 480px */
    .adoption-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    /* AI Adoption responsive - Mobile */
    .ai-adoption-section {
        padding: 4rem 0;
    }

    .ai-adoption-section .section-header {
        margin-bottom: 2rem;
    }

    .ai-adoption-section .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        flex-direction: column;
        gap: 0.5rem;
    }

    .adoption-highlight {
        padding: 1.25rem;
        gap: 0.875rem;
    }

    .highlight-icon {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 0.875rem;
    }

    /* Mobile : graphique réduit */
    .chart-svg {
        max-width: 300px;
    }

    .legend-item {
        padding: 0.625rem 0.875rem;
    }

    .legend-percentage {
        font-size: 1rem;
        min-width: 50px;
    }

    .legend-text {
        font-size: 0.8125rem;
    }

    .legend-color {
        width: 18px;
        height: 18px;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table thead th {
        padding: 1rem 0.5rem;
        font-size: 0.875rem;
    }

    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .detailed-comparison-table {
        font-size: 0.75rem;
    }

    .detailed-comparison-table th,
    .detailed-comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .table-title {
        font-size: 1.25rem;
    }
}

/* ==================== DETAILED COMPARISON SECTION ==================== */
.detailed-comparison-section {
    padding: 4rem 0;
    /* Background géré par section dans main.css */
    position: relative;
}

.detailed-comparison-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.detailed-comparison-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 197, 176, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Info Note Box */
.comparison-info-note {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border-left: 4px solid var(--primary, #8B6F47);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-note-content {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-note-icon {
    font-size: 2rem;
    line-height: 1;
}

.info-note-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.text-primary-brown {
    color: var(--primary, #8B6F47);
}

/* Legend Colors */
.legend-color-primary {
    background: var(--primary, #8B6F47);
}

.legend-color-secondary {
    background: #A68A5C;
}

.legend-color-inactive {
    background: #E5E7EB;
}

.comparison-table-container {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.comparison-table-container:last-of-type {
    margin-bottom: 2rem;
}

.table-title {
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.table-title-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

/* Indicateur de scroll horizontal - masqué par défaut */
.table-scroll-hint {
    display: none;
    text-align: center;
    font-size: 0.8125rem;
    color: #8B6F47;
    padding: 0.625rem 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, rgba(139, 111, 71, 0.04) 100%);
    border-radius: 8px;
    font-weight: 500;
    animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 10px 40px rgba(107, 88, 69, 0.12);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.4s ease;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.table-wrapper:hover {
    box-shadow: 0 20px 60px rgba(107, 88, 69, 0.18);
    transform: translateY(-4px);
}

.detailed-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.85);
}

.detailed-comparison-table thead {
    background: linear-gradient(135deg, #8b7355 0%, #6b5744 100%);
    color: white;
}

.detailed-comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    border-bottom: 2px solid #8b7355;
}

.detailed-comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.detailed-comparison-table tbody tr:hover {
    background-color: #f9fafb;
}

.detailed-comparison-table tbody tr.highlight-row {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.08) 0%, rgba(139, 115, 85, 0.05) 100%);
    border-left: 4px solid #8b7355;
}

.detailed-comparison-table tbody tr.highlight-row:hover {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.12) 0%, rgba(139, 115, 85, 0.08) 100%);
}

.detailed-comparison-table td {
    padding: 1.125rem 1rem;
    color: #374151;
    vertical-align: middle;
}

.detailed-comparison-table tbody tr.highlight-row td {
    font-weight: 500;
    color: #1f2937;
}

.rating {
    font-size: 1rem;
    color: #f59e0b;
    letter-spacing: 0.05em;
    display: inline-block;
}

.rating.highlight {
    color: #8b7355;
    font-weight: 600;
    font-size: 1.0625rem;
}

.comparison-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.comparison-note p {
    margin: 0;
    color: #92400e;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .detailed-comparison-section {
        padding: 4rem 0;
    }

    /* Afficher l'indicateur de scroll sur mobile */
    .table-scroll-hint {
        display: block;
    }

    .table-title {
        font-size: 1.25rem;
    }

    .comparison-table-container {
        overflow: hidden;
        max-width: 100%;
    }

    .table-wrapper {
        border-radius: 8px;
    }

    .detailed-comparison-table {
        font-size: 0.8125rem;
        min-width: 600px;
    }

    .detailed-comparison-table th {
        padding: 1rem 0.75rem;
        font-size: 0.8125rem;
    }

    .detailed-comparison-table td {
        padding: 0.875rem 0.75rem;
        font-size: 0.8125rem;
    }

    .rating {
        font-size: 0.875rem;
    }

    .comparison-note {
        padding: 1rem;
    }

    .comparison-note p {
        font-size: 0.8125rem;
    }
}

/* ==================== ULTRA SMALL DEVICES (≤375px) ==================== */
@media (max-width: 375px) {
    .advantages-hero .hero-content {
        padding: 2.5rem 0;
    }

    .advantages-hero .btn-primary,
    .advantages-hero .btn-secondary {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.8125rem !important;
        width: auto;
        max-width: 240px;
    }

    .advantages-hero .hero-cta {
        gap: 0.625rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .advantages-hero .hero-title {
        font-size: clamp(1.875rem, 7vw, 2.75rem);
    }

    .advantages-hero .hero-subtitle {
        font-size: clamp(0.9375rem, 3.5vw, 1.25rem);
    }

    /* AI Adoption Section 375px */
    .adoption-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .adoption-highlight {
        padding: 1rem;
        gap: 0.75rem;
    }

    .highlight-icon {
        font-size: 1.5rem;
    }

    .highlight-text p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .adoption-chart {
        padding: 1.25rem;
    }

    .chart-title {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .chart-svg {
        width: 280px;
        height: 280px;
    }

    .chart-center-label {
        font-size: 0.75rem;
    }

    .chart-center-value {
        font-size: 2rem;
    }

    .chart-container {
        gap: 1.25rem;
    }

    .chart-legend {
        gap: 0.75rem;
    }

    .legend-item {
        gap: 0.5rem;
    }

    .legend-percentage {
        font-size: 0.875rem;
    }

    .legend-text {
        font-size: 0.6875rem;
    }

    .legend-color {
        width: 16px;
        height: 16px;
    }
}
