/* --- 1. VARIABLES & RESET --- */
:root {
    --purple: #6B58D8;
    --purple-mid: #897CC6;
    --purple-light: #A599DD;
    --yellow: #FABF4C;
    --yellow-light: #FFC876;
    --text-dark: #333333;
    --white: #ffffff;
    --bg-gray: #F8F8FA;
    
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Syne', sans-serif;
    
    --spacing-edge: 5vw;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-gray);
    color: var(--text-dark);
    overflow-x: hidden; 
    line-height: 1.6;
    width: 100%;
}

/* CONTAINER STANDARD */
.container-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* --- 2. HEADER / NAV --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 15px var(--spacing-edge);
    z-index: 1000;
    background: rgba(248, 248, 250, 0.95);
    -webkit-backdrop-filter: blur(10px); /* Fix Vendor Prefix */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto;
}
.brand-logo { width: 110px; height: auto; display: block; }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-item {
    text-decoration: none; color: var(--text-dark); font-weight: 600;
    font-size: 13px; position: relative; text-transform: uppercase;
}
.nav-item:hover { color: var(--purple); }
.nav-btn {
    background: var(--purple); color: var(--white);
    padding: 8px 18px; border-radius: 25px;
    text-decoration: none; font-weight: 700; font-size: 13px;
    transition: transform 0.2s;
}
.nav-btn:hover { transform: translateY(-2px); }

.burger-menu { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger-menu span { width: 25px; height: 3px; background: var(--text-dark); border-radius: 3px; }

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--purple); z-index: 999;
    display: flex; justify-content: center; align-items: center;
    transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-menu-overlay.active { transform: translateX(0); }
.mobile-links { display: flex; flex-direction: column; text-align: center; gap: 25px; }
.mobile-links a { font-family: var(--font-display); font-size: 24px; color: var(--white); text-decoration: none; font-weight: 700; }

/* ========================================= */
/* SECTIONS 1 & 2 (HERO & STATS) */
/* ========================================= */
.bg-texture { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(#6B58D8 0.5px, transparent 0.5px), radial-gradient(#6B58D8 0.5px, #F8F8FA 0.5px); background-size: 40px 40px; background-position: 0 0, 20px 20px; opacity: 0.03; pointer-events: none; z-index: -1; }
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 100px var(--spacing-edge) 30px; overflow: hidden; }
.hero-deco-blob { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(107, 88, 216, 0.08) 0%, rgba(248, 248, 250, 0) 70%); border-radius: 50%; top: 50%; left: 20%; transform: translate(-50%, -50%); z-index: 0; pointer-events: none; }
.deco-shape { position: absolute; opacity: 0.4; z-index: 1; animation: float 8s ease-in-out infinite; }
.shape-1 { top: 15%; left: 10%; color: var(--yellow); } .shape-2 { bottom: 15%; left: 45%; color: var(--purple-light); animation-delay: 2s; }
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; align-items: center; width: 100%; max-width: 1350px; margin: 0 auto; }
.hero-text { position: relative; z-index: 10; margin-top: -20px; padding-left: 20px; }
.badge-qualiopi { display: inline-flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid #eee; padding: 12px 28px; border-radius: 50px; margin-top: 30px; margin-bottom: 30px; box-shadow: 0 8px 25px rgba(107, 88, 216, 0.08); transition: transform 0.3s ease; }
.badge-qualiopi:hover { transform: scale(1.05); }
.dot-pulse { width: 12px; height: 12px; background-color: var(--purple); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 0 4px rgba(107, 88, 216, 0.2); }
.main-title { font-family: var(--font-main); font-weight: 800; font-size: clamp(42px, 4.5vw, 75px); line-height: 1.05; margin-bottom: 25px; text-transform: uppercase; color: #444; letter-spacing: -1px; }
.title-line-2 { color: transparent; background: linear-gradient(180deg, #D4AF37 0%, #FABF4C 100%); -webkit-background-clip: text; background-clip: text; display: block; filter: drop-shadow(0 2px 0px rgba(0,0,0,0.05)); }
.title-line-3 { color: transparent; -webkit-text-stroke: 2px var(--purple); display: block; }
.hero-description { font-size: 18px; color: #555; font-weight: 500; margin-bottom: 15px; max-width: 580px; line-height: 1.6; opacity: 0; }
.fade-in-up { animation: fadeInUp 1s ease-out forwards; animation-delay: 0.3s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 650px; }
.blob-frame { position: relative; width: 420px; height: 520px; background: var(--purple); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; animation: morphing 8s ease-in-out infinite; border: 5px solid var(--white); box-shadow: 0 25px 50px rgba(107, 88, 216, 0.25); overflow: hidden; z-index: 5; }
.ines-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transform: scale(1.05); }
.rotating-text-wrapper { position: absolute; width: 700px; height: 700px; animation: spin 30s linear infinite; z-index: 1; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.rotating-text-svg { width: 100%; height: 100%; fill: var(--yellow); font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 6px; text-transform: uppercase; opacity: 0.5; }
.sticker-name { position: absolute; bottom: 40px; right: 10px; background: var(--white); padding: 12px 24px; border-radius: 18px; box-shadow: 0 10px 25px rgba(0,0,0,0.12); transform: rotate(-5deg); z-index: 10; }
.sticker-role { font-size: 14px; font-weight: 700; color: var(--purple); text-transform: uppercase; display: block; }

.stats-section { position: relative; min-height: 100vh; padding: 80px var(--spacing-edge) 120px; background: var(--bg-gray); overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.deco-dots { position: absolute; width: 100px; height: 100px; background-image: radial-gradient(var(--purple-mid) 2px, transparent 2px); background-size: 15px 15px; opacity: 0.3; z-index: 1; }
.dots-1 { top: 10%; left: 5%; } .dots-2 { bottom: 10%; right: 5%; }
.deco-star-four { position: absolute; width: 180px; height: 180px; fill: var(--purple-light); opacity: 0.15; z-index: 0; animation: float 6s ease-in-out infinite; }
.star-pos-1 { top: 5%; right: 15%; transform: rotate(15deg); } .star-pos-2 { bottom: 5%; left: 10%; width: 220px; height: 220px; opacity: 0.08; fill: var(--yellow); }
.bg-curve-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.dashed-path { fill: none; stroke: #d1d1d6; stroke-width: 4; stroke-dasharray: 15, 15; stroke-linecap: round; }
.stats-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
.logo-small { height: 45px; width: auto; vertical-align: middle; margin-right: 12px; }
.stats-title { font-family: var(--font-display); font-size: 32px; color: var(--text-dark); font-weight: 700; }
.highlight-purple { color: var(--purple); }
.cards-playground { position: relative; width: 100%; max-width: 1100px; height: 500px; margin: 0 auto; z-index: 2; }
.stat-card { position: absolute; padding: 30px; border-radius: 35px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; opacity: 0; transform: scale(0.8); background: var(--white); }
.stat-card:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 100; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.stat-num { font-family: var(--font-main); font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 16px; font-weight: 600; line-height: 1.3; }
.card-apprenants { top: 20px; left: 8%; width: 290px; background: var(--purple); color: var(--white); transform: rotate(-3deg); } .card-apprenants .stat-num { color: var(--yellow); }
.card-formateurs { top: 30px; right: 12%; width: 260px; background: var(--white); border: 3px solid var(--purple-light); transform: rotate(4deg); } .card-formateurs .stat-num { color: var(--purple); }
.card-partenaires { top: 50%; left: 47%; margin-top: -115px; margin-left: -115px; width: 215px; height: 215px; border-radius: 50%; background: var(--yellow); color: var(--text-dark); transform: rotate(2deg); z-index: 5; box-shadow: 0 20px 40px rgba(250, 191, 76, 0.3); }
.card-villes { bottom: 40px; left: 15%; width: 220px; transform: rotate(-5deg); } .card-villes .stat-num { color: var(--yellow); }
.card-heures { bottom: 20px; right: 15%; width: 310px; background: var(--purple-mid); color: var(--white); transform: rotate(-2deg); } .card-heures .stat-num { color: var(--yellow-light); }
@keyframes morphing { 0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; } 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(107, 88, 216, 0.4); } 70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 10px rgba(107, 88, 216, 0); } 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(107, 88, 216, 0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(15deg); } 50% { transform: translateY(-15px) rotate(15deg); } }
.pop-in { animation: popInEffect 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes popInEffect { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1) rotate(var(--rotation)); } }

/* ========================================= */
/* NOUVELLES SECTIONS & CORRECTIONS */
/* ========================================= */

.section-title {
    font-family: var(--font-display);
    font-size: 40px; 
    line-height: 1.3; 
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.text-center { text-align: center; }
.text-highlight { color: var(--purple); }

/* --- 3. PARTENAIRES (SCROLL FLUIDE) --- */
.partners-section {
    padding: 80px 0 0;
    background: var(--white);
    overflow: hidden;
}

.infinite-scroller-container {
    width: 100%;
    overflow-x: auto; /* Permet le scroll natif */
    position: relative;
    padding: 50px 0;
    cursor: grab; 
    background: #fff;
    /* On enlève la scrollbar visuelle */
    scrollbar-width: none; 
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch; /* Scroll fluide sur iOS */
    white-space: nowrap;
}
.infinite-scroller-container::-webkit-scrollbar { display: none; }
.infinite-scroller-container:active { cursor: grabbing; }

.scroller-inner {
    display: inline-flex;
    gap: 60px;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* CORRECTION LOGOS: Maintien d'une taille harmonisée */
    width: 140px; 
    height: 80px; 
}
.logo-item img {
    /* CORRECTION LOGOS: On force l'image à tenir dans la boite */
    width: 100%;
    height: 100%;
    object-fit: contain; /* L'image s'adapte sans être déformée */
    filter: none;
    pointer-events: none; 
}

.drag-indicator-wrapper {
    display: flex; justify-content: center; margin-bottom: 10px;
}
.drag-hint {
    background: #f0f0f0; padding: 5px 15px; border-radius: 20px;
    font-size: 12px; color: #888; display: flex; align-items: center; gap: 5px;
    animation: fadePulse 3s infinite;
}
.hand-icon { width: 14px; height: 14px; }
@keyframes fadePulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

#ked {
    object-fit: cover;
    width: 90%;
    height: 90%;
}

/* CLOUD CTA */
.cta-cloud-wrapper {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    margin-top: 50px;
}
.cloud-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    z-index: 1;
    border-radius: 50% 50% 0 0 / 20% 20% 0 0;
    animation: cloudFloat 6s ease-in-out infinite alternate;
}
@keyframes cloudFloat { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.cta-content-cloud { position: relative; z-index: 2; }
.cta-content-cloud h3 { font-size: 24px; margin-bottom: 20px; font-family: var(--font-display); }
.btn-pill {
    background: var(--purple); color: var(--white); padding: 15px 35px;
    border-radius: 50px; text-decoration: none; font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 20px rgba(107, 88, 216, 0.2);
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.btn-pill:hover { transform: scale(1.05); background: var(--purple-mid); }

/* --- 4. QUI SOMMES NOUS --- */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content .section-title { font-family: var(--font-main); letter-spacing: normal; }

.floating-toys-container {
    height: 400px; position: relative;
    background: radial-gradient(circle at center, rgba(107,88,216,0.1) 0%, transparent 70%);
    border-radius: 30px;
}
.toy-shape { font-size: 40px; position: absolute; transition: transform 0.1s linear; }
.t1 { top: 10%; left: 10%; } .t2 { top: 20%; right: 20%; }
.t3 { bottom: 30%; left: 30%; } .t4 { bottom: 10%; right: 10%; }
.glass-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 30px 50px; border-radius: 20px; text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.5);
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.glass-card span { display: block; font-size: 14px; text-transform: uppercase; color: #666; }
.glass-card strong { font-family: var(--font-display); font-size: 32px; color: var(--purple); }
.click-explode { color: var(--yellow); cursor: pointer; border-bottom: 3px dashed var(--yellow); transition: 0.2s; }
.click-explode:hover { color: var(--purple); border-color: var(--purple); }

.features-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.f-icon { color: var(--purple); width: 28px; height: 28px; flex-shrink: 0; }

/* --- 5. FORMATIONS --- */
.formations-section { padding: 100px 0; background: #fff; }
.formations-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.f-tab {
    border: none; background: #f0f0f0; padding: 12px 30px; border-radius: 30px;
    font-weight: 600; cursor: pointer; transition: 0.3s;
}
.f-tab.active, .f-tab:hover { background: var(--purple); color: var(--white); }

.formations-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-bottom: 60px;
}
.formation-card {
    border-radius: 30px; overflow: hidden; background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: 0.3s;
    border: 1px solid #eee;
}
.formation-card:hover { transform: translateY(-10px); }
.f-card-header { padding: 30px; display: flex; justify-content: space-between; align-items: center; }
.bg-soft-blue { background: #eef2ff; color: var(--purple); }
.bg-soft-yellow { background: #fff9e6; color: #dcb000; }
.tag-cpf { font-size: 12px; font-weight: 700; background: #fff; padding: 5px 10px; border-radius: 10px; }
.f-card-body { padding: 30px; }
.f-card-body h3 { font-size: 22px; margin-bottom: 15px; font-weight: 700; }
.link-arrow { display: flex; align-items: center; gap: 5px; color: var(--text-dark); font-weight: 700; text-decoration: none; margin-top: 20px; }

/* AUTRES FORMATIONS INPUT (LARGE) */
.formations-others { margin-bottom: 60px; animation: fadeInUp 0.5s ease; }
.others-content { max-width: 600px; margin: 0 auto; background: #f9f9fc; padding: 40px; border-radius: 30px; }
.large-text { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--purple); }
.sub-text { margin-bottom: 25px; color: #666; }
.formation-request-form { display: flex; flex-direction: column; gap: 20px; }
/* Input plus grand comme demandé */
.formation-request-form input { 
    padding: 20px 30px; 
    border-radius: 50px; 
    border: 2px solid #ddd; 
    outline: none; 
    font-family: var(--font-main);
    font-size: 18px; /* Plus grand */
    width: 100%;
}
.formation-request-form input:focus { border-color: var(--purple); }


.accessibility-box {
    background: #111; color: #fff; border-radius: 20px; padding: 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
    flex-wrap: wrap;
}
.acc-icon { font-size: 40px; color: var(--yellow); }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 10px 25px; border-radius: 25px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-outline:hover { background: #fff; color: #000; }

/* --- 6. BOOTCAMP --- */
.bootcamp-section { padding: 100px 0; background: #0a0a1a; color: #fff; overflow: hidden; }
.bootcamp-container {
    max-width: 1000px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px;
}
.tech-circle {
    width: 300px; height: 300px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    position: relative; margin: 0 auto;
    animation: spin 20s linear infinite;
}
.tech-circle::before {
    content: ''; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px;
    background: var(--yellow); border-radius: 50%; box-shadow: 0 0 20px var(--yellow);
}
.b-logo {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-display); font-size: 24px; text-align: center;
}
.btn-neon {
    display: inline-block; padding: 15px 30px; margin-top: 20px;
    border: 1px solid var(--yellow); color: var(--yellow); font-family: var(--font-display);
    text-decoration: none; text-transform: uppercase; letter-spacing: 2px;
    transition: 0.3s;
}
.btn-neon:hover { background: var(--yellow); color: #000; box-shadow: 0 0 30px var(--yellow); }

/* --- 8. BLOG SUPPRIMÉ --- */
/* (Styles blog supprimés) */


/* --- 9. CONTACT / FOOTER --- */
.footer-section { background: #fff; padding: 80px 0 30px; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.footer-info { text-align: left; }
.footer-logo-small { 
    width: 80px; 
    height: auto; 
    margin-bottom: 20px; 
}
.socials { display: flex; gap: 15px; margin-top: 20px; }
.socials i { width: 24px; height: 24px; color: var(--text-dark); transition: 0.2s; }
.socials i:hover { color: var(--purple); }

.footer-map { height: 300px; border-radius: 20px; overflow: hidden; background: #eee; }
.footer-copyright { text-align: center; margin-top: 50px; font-size: 12px; color: #aaa; }


/* ========================================= */
/* PAGES INTERNES STYLES */
/* ========================================= */

.page-hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, rgba(107, 88, 216, 0.1) 0%, transparent 40%);
    text-align: center;
}
.page-title-big {
    font-family: var(--font-display);
    font-size: 48px; margin-bottom: 15px; color: var(--text-dark);
}
.page-subtitle { font-size: 18px; color: #666; max-width: 800px; margin: 0 auto 30px; line-height: 1.8; }

/* TABLEAUX PRIX */
.price-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-top: 40px;
}
.price-card {
    background: #fff; padding: 40px; border-radius: 30px; border: 1px solid #eee;
    text-align: center; transition: 0.3s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.price-card.featured { border: 2px solid var(--purple); background: #fdfdff; }
.p-tag {
    display: inline-block; background: #eee; padding: 5px 15px; border-radius: 20px;
    font-size: 12px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase;
}
.p-price { font-size: 42px; font-weight: 800; color: var(--purple); margin: 20px 0; }
.p-features { list-style: none; text-align: left; margin-bottom: 30px; }
.p-features li { margin-bottom: 15px; display: flex; gap: 10px; font-size: 15px; }
.p-check { color: var(--yellow); width: 20px; height: 20px; flex-shrink: 0; }
.p-x { color: #ccc; width: 20px; height: 20px; flex-shrink: 0; }

/* SECTIONS CONTENU */
.content-box {
    background: #fff; padding: 40px; border-radius: 30px; margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.module-list-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.module-item {
    background: #f8f8fa; padding: 20px; border-radius: 15px; text-align: center;
}
.module-item strong { display: block; font-size: 18px; margin-bottom: 5px; color: var(--purple); }

/* FORMULAIRE CONTACT */
.contact-form-wrapper { max-width: 600px; margin: 0 auto; background: #fff; padding: 50px; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.c-form-group { margin-bottom: 20px; }
.c-form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.c-input, .c-textarea, .wpcf7-select {
    width: 100%; padding: 15px; border: 2px solid #eee; border-radius: 15px;
    font-family: var(--font-main); transition: 0.3s;
    background: #fff;
}
.c-input:focus, .c-textarea:focus, .wpcf7-select:focus { border-color: var(--purple); outline: none; }
.c-textarea { height: 150px; resize: none; }
.btn-submit {
    width: 100%; padding: 15px; background: var(--purple); color: #fff; border: none;
    border-radius: 15px; font-weight: 700; cursor: pointer; font-size: 16px;
    transition: 0.3s;
    /* CORRECTION BUTTON DEFAULT */
    white-space: normal;
    height: auto;
    min-height: 50px;
}
.btn-submit:hover { background: var(--purple-mid); }


/* MOBILE SPECIFIC */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .burger-menu { display: flex; z-index: 1001; }
    
    .hero-section { 
        padding-top: 100px; 
        height: auto; 
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CORRECTION 1er SECTION: Margin bottom ajouté pour le rond */
        padding-bottom: 80px;
        margin-bottom: 50px;
    }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-text { margin-top: 0; padding-left: 0; align-items: center; display: flex; flex-direction: column; }
    .badge-qualiopi { padding: 10px 24px; }
    
    .hero-visual { 
        height: 480px; 
        /* CHANGE: Augmenté la marge pour pousser le PC/Ordi plus bas comme demandé */
        margin-top: 100px; 
        /* CORRECTION PC/VISUEL: On le force au premier plan + Visible */
        z-index: 500 !important; 
        position: relative;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible;
    }
    .blob-frame { width: 320px; height: 400px; }
    
    .cards-playground { 
        height: auto; max-width: 100%; display: flex; flex-wrap: wrap; 
        justify-content: center; gap: 15px; padding-bottom: 50px;
    }
    .stat-card { 
        position: relative !important; top: auto !important; bottom: auto !important; 
        left: auto !important; right: auto !important; margin: 0 !important; 
        transform: rotate(0deg) !important; width: calc(50% - 15px) !important; 
        min-height: 160px; padding: 15px !important; border-radius: 25px !important;
    }
    /* CORRECTION STATS: Réduction de la taille pour ne pas toucher les bords */
    .stat-num { font-size: 32px; }

    .card-partenaires { width: 90% !important; order: 0; }

    .bg-curve-container { display: none; }

    /* --- CORRECTION LOGOS MOBILE (Moyenne taille) --- */
    .logo-item {
        /* On force une taille standard pour le conteneur */
        width: 120px !important; 
        height: 100px !important; 
        display: flex; 
        align-items: center; 
        justify-content: center;
    }
    .logo-item img {
        /* On force une hauteur standard pour "moyenne" les logos */
        height: 50px !important; 
        width: auto !important; 
        max-width: 100%;
        object-fit: contain;
    }

    /* --- CORRECTION BOUTON CONTACT MOBILE (1 ligne) --- */
    .btn-submit {
        white-space: nowrap !important; /* Empêche la coupure */
        font-size: 14px !important; /* Réduit un peu la police si nécessaire */
        display: flex; /* Centre le contenu */
        align-items: center;
        justify-content: center;
        width: 100% !important;
        padding: 0 10px !important;
        min-height: 50px;
    }
}

@media (max-width: 768px) {
    /* CORRECTION SCROLL HORIZONTAL: On sécurise le conteneur */
    .container-section { padding: 0 20px !important; overflow-x: hidden; }
    
    .section-title { font-size: 28px; padding: 0 10px; }
    .about-grid { grid-template-columns: 1fr; }
    .bootcamp-container { grid-template-columns: 1fr; text-align: center; }
    
    /* CORRECTION CERCLE IJ X LSE : Plus grand sur mobile */
    .tech-circle { width: 280px; height: 280px; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-map { height: 200px; }
    
    /* FIX MOBILE PAGES INTERNES */
    .page-title-big { font-size: 32px; word-wrap: break-word; }
    .page-subtitle { font-size: 15px; padding: 0 10px; }
    
    /* Correction Grilles Mobiles */
    .price-grid { 
        grid-template-columns: 1fr !important; /* Force 1 colonne */
        gap: 20px;
    }
    .module-list-grid {
        grid-template-columns: 1fr 1fr !important; /* 2 colonnes pour modules */
    }
    
    .price-card { padding: 25px; }
    .p-price { font-size: 32px; }
    .content-box { padding: 25px; }
    .cta-content-cloud h3 { font-size: 17px; }
    .title-line-1 { font-size: 34px; }
}

/* ========================================= */
/* CSS PARTENAIRES SPECIFIQUE (AJOUTÉ)       */
/* ========================================= */

.edication-logo .logos {
    width: 100%;
    height: 150px;
    border: dotted 1px #ccc;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edication-logo .logos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Force l'affichage du carrousel et des items */
.owl-carousel {
    display: block !important; 
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; /* Fix Vendor */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; /* Fix Vendor */
}

img {
    max-width: 100%;
    overflow-clip-margin: content-box;
    overflow: clip; /* Fix Overflow Clip */
}

/* --- FIX INLINE STYLES HELPERS --- */
.badge-text { font-weight: 700; color: #555; font-size: 16px; letter-spacing: 0.5px; }
.handshake-icon { width: 35px; height: 35px; }
.margin-b-10 { margin-bottom: 10px; }
.logo-w-standard { width: 389.5px; margin-right: 20px; }
.logo-w-350 { width: 350px; margin-right: 20px; }
.logo-w-310 { width: 310px; margin-right: 20px; }
.logo-w-250 { width: 250px; margin-right: 20px; }
.logo-w-400 { width: 400px; margin-right: 20px; }
.logo-w-500 { width: 500px; margin-right: 20px; }
.toy-style-5 { top: 50%; left: 10%; font-size: 50px; }
.hidden-tab { display: none; }
.tag-style { font-size: 0.9em; }
.bootcamp-title { font-size: 32px; line-height: 1.2; margin-bottom: 20px; }
.iframe-style { border: 0; }
.card-gray { background: #f9f9fc; padding: 20px; border-radius: 15px; }
.grid-3-col { grid-template-columns: 1fr 1fr 1fr; margin-top: 30px; }
.text-purple-var { color: var(--purple); }
.text-14 { font-size: 14px; }
.text-12 { font-size: 12px; }
.mt-10 { margin-top: 10px; }
.link-center { justify-content: center; }
.mt-20 { margin-top: 20px; }
.font-700 { font-weight: 700; }
.btn-sm { font-size: 14px; padding: 10px 20px; }
.btn-black { background: #333; }
.card-gray-light { background: #f0f4ff; margin-top: 50px; }
.card-padding { padding: 20px; }
.price-28 { font-size: 28px; }
.list-13 { font-size: 13px; }
.mt-30 { margin-top: 30px; }
.margin-20-0 { margin: 20px 0; }

/* FIX BUREAUTIQUE INLINE STYLES */
.hero-content-wrapper { text-align: left; max-width: 800px; margin: 0 auto; display: inline-block; }
.hero-list { font-size: 18px; color: #555; }
.hero-text-note { font-size: 16px; margin-top: 20px; }
.section-title-margin { margin-top: 40px; }
.text-margin-y { margin: 20px 0; }
.text-margin-b { margin-bottom: 20px; }
.links-margin-b { margin-bottom: 30px; }
.subtitle-margin-b { margin-bottom: 15px; }
.tag-highlight { background: var(--yellow); color: #000; }
.price-note { font-size: 12px; margin-top: 10px; color: #888; }
.offer-student-box { margin-top: 50px; background: #eef2ff; }
.text-center-mb { margin-bottom: 30px; }
.offer-card-inner { background: #fff; padding: 30px; border-radius: 20px; max-width: 500px; margin: 0 auto; text-align: center; }
.offer-note { font-size: 13px; color: #666; margin: 15px 0; }
.btn-purple-fill { background: var(--purple); border-color: var(--purple); }
.grid-3-columns { grid-template-columns: 1fr 1fr 1fr !important; }
.link-margin-t { margin-top: 20px; }
.iframe-border-0 { border: 0; }