/* ==========================================================================
   Chinois Carrière Pro - Design Moderne, Épuré & Masterclass
   ========================================================================== */

:root {
    /* Colors */
    --bg-page: #f8fafc;
    --bg-white: #ffffff;
    --bg-soft-blue: #f0f7ff;
    
    --primary: #1e3a8a;       /* Executive Navy */
    --primary-light: #2563eb; /* Royal Blue */
    --primary-hover: #1d4ed8;
    
    --danger: #ef4444;
    --danger-bg: #fef2f2;
    --success: #10b981;
    --success-bg: #ecfdf5;
    
    --accent: #dc2626;        /* Subtle Red */
    --gold: #d97706;          /* Warm Gold */
    --whatsapp: #25d366;
    
    --text-dark: #0f172a;     /* Headings */
    --text-body: #334155;     /* Body */
    --text-muted: #64748b;    /* Subtitle */
    
    --border-light: #e2e8f0;
    --border-card: #e5e7eb;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 14px 35px rgba(15, 23, 42, 0.1);
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-body);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
}

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

.text-blue {
    color: var(--primary-light);
}

.text-danger {
    color: var(--danger);
}

.text-success {
    color: var(--success);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    position: relative;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.42);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #ffffff;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.1rem 2.75rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

/* Dynamic Rotating Ticker */
.ticker-wrapper {
    display: inline-block;
    position: relative;
    height: 38px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--bg-soft-blue);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid #dbeafe;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    white-space: nowrap;
}

.ticker-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-tag {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* ==========================================================================
   Hero Section Stacked (Inspirée de la Référence)
   ========================================================================== */

.hero-section-stacked {
    padding: 3.5rem 0 0 0;
    background: radial-gradient(circle at 50% 20%, rgba(219, 234, 254, 0.5) 0%, rgba(240, 247, 255, 0.3) 40%, #ffffff 80%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-top-centered {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-headline-impact {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.18;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-line-1 {
    display: block;
    white-space: nowrap;
}

.hero-line-2 {
    display: block;
    white-space: nowrap;
}

.hero-highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-full);
    z-index: -1;
}

.hero-sub-badges {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-cta-wrap {
    margin-bottom: 3rem;
}

.shadow-impact {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    transition: all 0.25s ease;
}

.shadow-impact:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.hero-reassurance-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.reassurance-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-body);
    font-weight: 600;
}

/* Grande Image Centrée en Bas du Hero (100% Pleine Largeur / Bord à Bord) */
.hero-bottom-visual-full {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.hero-glow-backdrop {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 90%;
    background: radial-gradient(ellipse at bottom, rgba(37, 99, 235, 0.2) 0%, rgba(219, 234, 254, 0) 75%);
    pointer-events: none;
    z-index: 1;
}

.hero-fullwidth-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 820px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.15));
}

/* ==========================================================================
   Section Slider (100% Pleine Largeur / Bord à Bord)
   ========================================================================== */

.section-slider-full {
    padding: 5rem 0 2.75rem 0;
    background-color: var(--bg-page);
    width: 100%;
    overflow: hidden;
}

.section-title-wrap {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.sub-heading {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.section-title-wrap h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-title-wrap p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* Slider Track & Slides (100% Full Width Screen) */
.slider-wrapper-full {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.slider-track {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
    box-shadow: var(--shadow-md);
    min-height: 580px;
    width: 100%;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 540px;
    width: 100%;
}

.slide-img-box {
    position: relative;
    height: 100%;
    min-height: 540px;
    overflow: hidden;
    width: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-text-box {
    padding: 3.5rem 3.5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
}

.slide-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.slide-text-box h3 {
    font-size: 1.95rem;
    margin-bottom: 1.15rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.slide-text-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.slide-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--bg-soft-blue);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    border-left: 4px solid var(--primary-light);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    font-size: 1rem;
}

.slider-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.25s ease;
}

.dot.active {
    width: 32px;
    border-radius: var(--radius-full);
    background: var(--primary);
}

/* ==========================================================================
   Section Ce que vous allez apprendre dans cette Masterclass
   ========================================================================== */

.section-learning {
    padding: 4rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.learning-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    margin-bottom: 2.75rem;
}

.learning-card {
    background: var(--bg-page);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
    background-color: #ffffff;
}

.learning-card-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.module-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-light);
    background: var(--bg-soft-blue);
    border: 1px solid #dbeafe;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.learning-card h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
    text-align: center;
}

.learning-card p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: center;
}

/* ==========================================================================
   Section Avant / Après (Transformation Concrète)
   ========================================================================== */

.section-before-after {
    padding: 4rem 0;
    background-color: var(--bg-page);
}

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

.comparison-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-card);
}

.before-card {
    border-top: 4px solid var(--danger);
}

.after-card {
    border-top: 4px solid var(--success);
    box-shadow: var(--shadow-lg);
}

.comp-header {
    margin-bottom: 2rem;
}

.comp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.before-badge {
    background-color: var(--danger-bg);
    color: var(--danger);
}

.after-badge {
    background-color: var(--success-bg);
    color: var(--success);
}

.comp-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comp-list li i {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.comp-list li strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.comp-list li p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Section Qui est derrière cette Masterclass ? (Espoir Chinois)
   ========================================================================== */

.section-speaker {
    padding: 4rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.speaker-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
    background: var(--bg-page);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-md);
}

.speaker-image-col {
    position: relative;
}

.speaker-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    object-fit: cover;
}

.speaker-section-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    white-space: normal;
}

.speaker-name {
    font-size: 1.65rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
}

.speaker-bio-content p {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.speaker-stat-social-row {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.speaker-single-stat {
    margin: 0;
    padding: 1rem 1.75rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.stat-big {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: block;
    font-weight: 600;
}

.speaker-socials {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.social-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Section FAQ
   ========================================================================== */

.section-faq {
    padding: 4rem 0;
    background-color: var(--bg-page);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-card.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    gap: 1rem;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-answer p {
    padding: 0 1.75rem 1.75rem 1.75rem;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.65;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

/* ==========================================================================
   Modal d'Inscription WhatsApp
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    padding: 1.5rem;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 460px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-btn:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.modal-header h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-brand strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.legal-sep {
    color: #cbd5e1;
}

.footer-disclaimer {
    max-width: 780px;
    margin: 0 auto;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #94a3b8;
    background: rgba(241, 245, 249, 0.6);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-headline-impact {
        font-size: 2.85rem;
    }

    .slide-content-grid {
        grid-template-columns: 1fr;
    }

    .slide-img-box {
        min-height: 380px;
    }

    .slide-text-box {
        padding: 3rem 2rem;
    }

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

    .speaker-card {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2.5rem;
    }

    .learning-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-headline-impact {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .ticker-wrapper {
        margin-bottom: 1rem;
    }

    .ticker-content {
        font-size: 0.82rem;
        padding: 0.35rem 0.9rem;
    }

    .section-title-wrap h2 {
        font-size: 2.1rem;
    }

    .speaker-section-title {
        font-size: 1.85rem;
    }

    .speaker-stat-social-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.25rem;
    }

    .speaker-single-stat {
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .speaker-socials {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        gap: 0.5rem;
    }

    .brand {
        gap: 0.45rem;
    }

    .brand-logo {
        height: 34px;
    }

    .brand-title {
        font-size: 0.86rem;
        white-space: nowrap;
    }

    .brand-tag {
        font-size: 0.6rem;
        white-space: nowrap;
    }

    .header-action .btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }

    .hero-headline-impact {
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
        letter-spacing: -0.01em;
    }

    .hero-line-1 {
        white-space: nowrap;
        display: block;
    }

    .hero-line-2 {
        white-space: nowrap;
        display: block;
    }

    .btn-xl {
        padding: 0.95rem 1.75rem;
        font-size: 1.05rem;
        width: 100%;
    }

    .section-title-wrap h2 {
        font-size: 1.65rem;
    }

    /* Slider Super Compact & Centré sur Mobile */
    .slider-track {
        min-height: auto;
    }

    .slide-content-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .slide-img-box {
        min-height: 200px;
        height: 200px;
    }

    .slide-text-box {
        padding: 1.5rem 1.15rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .slide-num {
        font-size: 1.6rem;
        text-align: center;
        margin: 0 auto 0.25rem auto;
        display: block;
    }

    .slide-text-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        text-align: center;
        width: 100%;
    }

    .slide-text-box p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }

    .slide-highlight {
        font-size: 0.82rem;
        padding: 0.75rem 0.9rem;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.35rem;
        border-left: none;
        border-top: 3px solid var(--primary-light);
        width: 100%;
    }

    .slider-controls {
        margin-top: 0.75rem;
        gap: 0.85rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    /* Section Ce que vous allez apprendre centrée sur mobile */
    .learning-card {
        padding: 2rem 1.25rem;
        text-align: center;
        align-items: center;
    }

    .learning-card-header {
        margin-bottom: 1rem;
    }

    .module-number {
        margin: 0 auto;
        width: 48px;
        height: 48px;
        font-size: 1.45rem;
    }

    .learning-card h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .learning-card p {
        font-size: 0.92rem;
        text-align: center;
    }

    .speaker-card {
        padding: 1.75rem 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
