/* ============================================================
   STYLE.CSS — Design System Kilo-Inspired
   Build-Gym-Website Skill — MidTouch Media
   CSS partage pour toutes les pages du site gym.
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --primary: #364368;
    --hover: #2a3554;
    --primary-rgb: 54, 67, 104;
    --bg-dark: #1d1d1c;
    --bg-light: #ffffff;
    --text: #0f0f0f;
    --text-secondary: #3a3a3a;
    --text-light: #ffffff;
    --border: #dddddd;
    --border-light: #e5e5e5;
    --bg-hover: #f5f5f5;
    --text-muted: #999;
    --accent-bg: #fafafa;
    --star-color: #f5a623;
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    --radius: 12px;
    --radius-pill: 30px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
    transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled { background: var(--bg-light); box-shadow: 0 2px 15px rgba(0,0,0,0.12); }
.header .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
    font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
    color: var(--text); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
}
.logo-img { height: 40px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
    text-decoration: none; color: var(--text-secondary);
    font-size: 0.95rem; font-weight: 400; transition: color var(--transition);
}
.nav a:hover { color: var(--primary); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span { width: 25px; height: 2px; background: var(--text); transition: 0.3s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; background: var(--primary); color: var(--text-light) !important;
    padding: 12px 28px; border-radius: var(--radius-pill);
    text-decoration: none; font-weight: 500; text-transform: uppercase;
    font-size: 0.85rem; letter-spacing: 0.5px;
    transition: background var(--transition), transform 0.2s;
    border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--hover); transform: translateY(-1px); }

.btn-secondary, .btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; background: transparent; color: var(--primary);
    padding: 12px 28px; border-radius: var(--radius-pill);
    text-decoration: none; font-weight: 500; text-transform: uppercase;
    font-size: 0.85rem; letter-spacing: 0.5px;
    border: 2px solid var(--primary); transition: all var(--transition); cursor: pointer;
}
.btn-secondary:hover, .btn-outline:hover { background: var(--primary); color: var(--text-light); }

.btn-pill { border-radius: 360px; }
.btn-square { border-radius: 0; }

.btn-download {
    width: 100%; padding: 16px; font-size: 1rem;
    background: var(--bg-light); color: var(--primary) !important;
    font-weight: 700; border: none; border-radius: var(--radius-pill);
    cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px;
    transition: background var(--transition);
}
.btn-download:hover { background: var(--bg-hover); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    margin-top: 70px; position: relative; min-height: 90vh;
    display: flex; align-items: center;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920') center/cover no-repeat;
    color: var(--text-light); text-align: center;
}
.hero .container { max-width: 800px; }
.hero h1 { font-size: 3.2rem; margin-bottom: 15px; line-height: 1.15; }
.hero .subtitle { font-size: 1.3rem; margin-bottom: 20px; font-weight: 400; opacity: 0.95; }
.hero p { font-size: 1.05rem; margin-bottom: 30px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero--short { min-height: 40vh; padding: 100px 0 60px; }
.hero--short h1 { font-size: 2.5rem; }

/* ============================================================
   PROCESS STEPS (3 ETAPES) — Pattern Kilo signature
   ============================================================ */
.steps, .process-steps { padding: 100px 0; background: var(--accent-bg); }
.steps h2, .process-steps h2 { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: var(--text); }
.steps-grid, .process-steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.step-card { text-align: center; padding: 30px 20px; }
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; background: var(--primary); color: var(--text-light);
    border-radius: 50%; font-family: var(--font-display); font-weight: 700;
    font-size: 1.4rem; margin-bottom: 20px;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text); }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-points { padding: 100px 0; }
.pain-points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pain-points h2 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.3; }
.pain-points p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 25px; }
.pain-list { list-style: none; }
.pain-list li {
    padding: 12px 0; border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem; color: var(--text-secondary);
    display: flex; align-items: center; gap: 12px;
}
.pain-list li:last-child { border-bottom: none; }
.pain-list .check { color: var(--primary); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   VALUE / ABOUT
   ============================================================ */
.value { padding: 100px 0; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.value h2 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.3; }
.value p { color: var(--text-secondary); margin-bottom: 15px; font-size: 1rem; }
.value .stats { display: flex; gap: 30px; margin: 25px 0; }
.stat { text-align: center; }
.stat .number { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--primary); }
.stat .label { font-size: 0.85rem; color: var(--text-secondary); }
.value-image { border-radius: var(--radius); overflow: hidden; }
.value-image img { width: 100%; height: 450px; object-fit: cover; display: block; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { padding: 100px 0; background: var(--accent-bg); }
.programs h2 { text-align: center; font-size: 2.2rem; margin-bottom: 50px; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.program-card {
    background: var(--bg-light); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.program-card img { width: 100%; height: 220px; object-fit: cover; transition: filter 0.5s; }
.program-card:hover img { filter: brightness(0.85); }
.program-card-content { padding: 25px; }
.program-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.program-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 15px; }
.program-card a { color: var(--primary); font-weight: 500; text-decoration: none; font-size: 0.9rem; }
.program-card a:hover { text-decoration: underline; }

/* ============================================================
   TESTIMONIALS (dark bg — homepage)
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--bg-dark); color: var(--text-light); }
.testimonials h2 { text-align: center; font-size: 2.2rem; margin-bottom: 15px; }
.testimonials > .container > p {
    text-align: center; opacity: 0.8; margin-bottom: 50px;
    max-width: 600px; margin-left: auto; margin-right: auto;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.testimonial-card {
    background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 30px;
    transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: var(--star-color); font-size: 1.1rem; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.testimonial-card .quote { font-style: italic; margin-bottom: 20px; opacity: 0.9; font-size: 0.95rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .name { font-weight: 500; font-size: 0.95rem; text-transform: uppercase; }
.testimonial-author .role { font-size: 0.8rem; opacity: 0.7; }
.testimonials .center { text-align: center; }
.testimonial-quote { font-size: 3rem; color: var(--primary); opacity: 0.3; line-height: 1; margin-bottom: 10px; }

/* Text testimonials (light bg — temoignages page) */
.text-testimonials { padding: 100px 0; background: #f8f9fa; }
.text-testimonials h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.text-testimonials .testimonial-card {
    background: var(--bg-light); border-radius: 20px; padding: 35px 30px;
    box-shadow: 4px 4px 20px rgba(10, 28, 56, 0.10);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.text-testimonials .testimonial-card:hover { transform: translateY(-4px); box-shadow: 4px 4px 30px rgba(10, 28, 56, 0.15); }
.text-testimonials .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.text-testimonials .testimonial-content { position: relative; z-index: 1; }
.text-testimonials .testimonial-content p { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); font-style: italic; margin-bottom: 25px; }
.text-testimonials .testimonial-author { border-top: 1px solid #f0f0f0; padding-top: 20px; gap: 15px; }
.text-testimonials .testimonial-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; object-position: center; border: 3px solid #f0f0f0; }
.text-testimonials .testimonial-author strong { display: block; font-family: var(--font-display); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.text-testimonials .testimonial-author span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.text-testimonials .testimonial-quote { font-size: 3.5rem; line-height: 1; color: var(--primary); opacity: 0.15; font-family: Georgia, serif; position: absolute; top: 15px; left: 25px; }

/* ============================================================
   VIDEOS
   ============================================================ */
.videos { padding: 100px 0; }
.videos h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); background: var(--bg-light); }
.video-wrapper { position: relative; padding-top: 56.25%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card h3 { padding: 15px 20px; font-size: 0.95rem; }

/* ============================================================
   TEAM / COACHES
   ============================================================ */
.team { padding: 100px 0; }
.team h2 { text-align: center; font-size: 2.2rem; margin-bottom: 15px; }
.team > .container > p { text-align: center; color: var(--text-secondary); margin-bottom: 50px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.team-member { text-align: center; }
.coach-photo {
    width: 180px; height: 180px; border-radius: 50%;
    background-size: 200%; background-position: center 20%; background-repeat: no-repeat;
    margin: 0 auto 15px; overflow: hidden;
}
.coach-photo-svg { display: flex; align-items: center; justify-content: center; }
.coach-avatar-svg { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-member h3 { font-size: 1.1rem; margin-bottom: 5px; }
.team-member .role { color: var(--primary); font-size: 0.85rem; font-weight: 500; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { padding: 100px 0; background: var(--accent-bg); }
.faq h2 { text-align: center; font-size: 2.2rem; margin-bottom: 50px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; max-width: 1000px; margin: 0 auto; }
.faq-item { background: var(--bg-light); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-light); }
.faq-question {
    padding: 18px 20px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 500; font-size: 0.95rem; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-hover); }
.faq-question .icon {
    font-size: 1.2rem; transition: transform var(--transition);
    color: var(--primary); flex-shrink: 0; margin-left: 10px;
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 20px 18px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-magnet { padding: 100px 0; background: var(--primary); color: var(--text-light); }
.lead-magnet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead-magnet h2 { font-size: 2rem; margin-bottom: 15px; line-height: 1.3; }
.lead-magnet p { opacity: 0.9; margin-bottom: 20px; font-size: 1rem; }
.lead-magnet-benefits { list-style: none; margin-bottom: 25px; }
.lead-magnet-benefits li { padding: 6px 0; font-size: 0.95rem; opacity: 0.9; }
.lead-magnet-benefits li::before { content: '\2713 '; font-weight: 700; margin-right: 8px; }
.lead-magnet-form { background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 35px; }
.lead-magnet-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.lead-magnet-form input {
    width: 100%; padding: 14px 18px; border: none; border-radius: 8px;
    font-size: 16px; font-family: var(--font-body); margin-bottom: 12px;
}
.lead-magnet-form input::placeholder { color: var(--text-muted); }
.lead-magnet-form .privacy { font-size: 0.75rem; opacity: 0.6; margin-top: 10px; text-align: center; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(rgba(var(--primary-rgb), 0.92), rgba(var(--primary-rgb), 0.92)),
                url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920') center/cover no-repeat;
    color: var(--text-light); text-align: center;
}
.cta-final h2 { font-size: 2.2rem; margin-bottom: 15px; }
.cta-final > .container > p { opacity: 0.9; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-form { max-width: 500px; margin: 0 auto; display: grid; gap: 15px; }
.cta-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cta-form input {
    padding: 14px 18px; border: none; border-radius: 8px;
    font-size: 16px; font-family: var(--font-body); background: rgba(255,255,255,0.95);
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form .btn-primary { width: 100%; padding: 16px; font-size: 1rem; background: var(--bg-light); color: var(--primary) !important; font-weight: 700; }
.cta-form .btn-primary:hover { background: var(--bg-hover); }
.cta-form .privacy { font-size: 0.75rem; opacity: 0.7; }

/* ============================================================
   FORMS (free-intro, drop-in)
   ============================================================ */
.main-content { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-section h2 { font-size: 1.8rem; margin-bottom: 10px; }
.form-section > p { color: var(--text-secondary); margin-bottom: 30px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 16px; font-family: var(--font-body); transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 10px; }
.form-privacy { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.checkbox-label { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--text-muted); cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 16px; font-family: var(--font-body); resize: vertical; min-height: 100px; transition: border-color var(--transition); }
.form-group textarea:focus { outline: none; border-color: var(--primary); }

/* Info sidebar (free-intro) */
.info-section { padding: 40px; background: var(--accent-bg); border-radius: var(--radius); }
.info-section h3 { font-size: 1.3rem; margin-bottom: 20px; }
.info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: start; }
.info-icon {
    width: 40px; height: 40px; background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; fill: var(--text-light); }
.info-item h4 { font-size: 0.95rem; margin-bottom: 3px; }
.info-item p { color: var(--text-secondary); font-size: 0.9rem; }
.benefits-list { margin-top: 30px; padding-top: 25px; border-top: 1px solid var(--border-light); }
.benefits-list h3 { font-size: 1.1rem; margin-bottom: 15px; }
.benefit { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; }
.benefit .check { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

/* ============================================================
   BEFORE / AFTER (temoignages page)
   Merged: padding 100px 0 (standard Kilo), auto-fit grid
   ============================================================ */
.before-after { padding: 100px 0; }
.before-after h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.ba-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); background: var(--bg-light); }
.ba-card img { width: 100%; height: 300px; object-fit: cover; }
.ba-card .caption { padding: 15px; text-align: center; font-weight: 500; font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================================
   CTA SECTION (shared across sub-pages)
   Merged: overlay background, padding 100px 0
   ============================================================ */
.cta-section {
    padding: 100px 0; text-align: center;
    background: linear-gradient(rgba(var(--primary-rgb), 0.92), rgba(var(--primary-rgb), 0.92)),
                url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920') center/cover no-repeat;
    color: var(--text-light);
}
.cta-section h2 { font-size: 2rem; margin-bottom: 15px; }
.cta-section p { opacity: 0.9; margin-bottom: 25px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--bg-light); color: var(--primary) !important; }
.cta-section .btn-primary:hover { background: var(--bg-hover); }

/* ============================================================
   SCHEDULE TABLE
   Merged: padding 100px 0, display:block + overflow-x for mobile scroll
   ============================================================ */
.schedule { padding: 100px 0; }
.schedule h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.schedule > .container > p { text-align: center; color: var(--text-secondary); margin-bottom: 40px; }
.schedule-table {
    width: 100%; max-width: 900px; margin: 0 auto;
    border-collapse: collapse; font-size: 0.85rem;
    display: block; overflow-x: auto;
    background: var(--bg-light);
}
.schedule-table thead th {
    padding: 12px 10px; text-align: center;
    background: var(--primary); color: var(--text-light);
    font-weight: 500; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.5px;
    border: 1px solid var(--border);
}
.schedule-table tbody td { padding: 10px 8px; text-align: center; border: 1px solid var(--border-light); vertical-align: top; min-width: 120px; }
.schedule-table tbody tr:nth-child(even) { background: var(--accent-bg); }
.schedule-table .time-col { font-weight: 500; background: var(--bg-hover); white-space: nowrap; min-width: 80px; }

/* ============================================================
   PLANNING TABLE — Course Tags
   ============================================================ */
.course-tag {
    display: inline-block; padding: 4px 10px; border-radius: 4px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.3px;
}
.course-crossfit { background: #e8f0fe; color: #1a56db; }
.course-conditioning { background: #fef3c7; color: #b45309; }
.course-renfo { background: #d1fae5; color: #065f46; }
.course-halterophilie { background: #fee2e2; color: #991b1b; }
.course-kids { background: #ede9fe; color: #6b21a8; }
.course-opengym { background: #f3f4f6; color: #374151; }

/* ============================================================
   TIMELINE / RESULTS
   Merged: padding 100px 0 (standard Kilo), single declaration
   ============================================================ */
.results { padding: 100px 0; background: var(--accent-bg); }
.results h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 3px; background: var(--primary); transform: translateX(-50%);
}
.timeline-item { display: flex; align-items: center; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-content {
    width: 45%; padding: 20px; background: var(--bg-light);
    border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.timeline-content h3 { font-size: 1rem; color: var(--primary); margin-bottom: 5px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-secondary); }
.timeline-dot {
    width: 16px; height: 16px; background: var(--primary); border-radius: 50%;
    border: 3px solid var(--bg-light); box-shadow: 0 0 0 3px var(--primary);
    position: absolute; left: 50%; transform: translateX(-50%); z-index: 1;
}

/* ============================================================
   PRICING
   Merged: auto-fit grid, ::before "Populaire" on .featured, padding 100px 0
   ============================================================ */
.pricing { padding: 100px 0; text-align: center; }
.pricing h2 { font-size: 2rem; margin-bottom: 15px; }
.pricing > .container > p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 30px; }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; max-width: 900px; margin: 0 auto 40px; }
.pricing-card {
    background: var(--bg-light); border-radius: var(--radius); padding: 35px 25px;
    border: 2px solid var(--border-light);
    transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--primary); position: relative; }
.pricing-card.featured::before {
    content: "Populaire"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--text-light);
    padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pricing-card .price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--primary); margin-bottom: 5px; }
.pricing-card .period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 25px; }
.pricing-card ul li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: var(--text-secondary); }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before { content: "\2713 "; color: var(--primary); font-weight: 700; }

/* ============================================================
   PROGRAMME DETAIL PAGE (programme.html)
   ============================================================ */

/* --- Description --- */
.description { padding: 100px 0; }
.desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.description h2 { font-size: 2rem; margin-bottom: 20px; }
.description p { color: var(--text-secondary); margin-bottom: 15px; font-size: 1rem; line-height: 1.7; }
.description img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
.desc-grid img { width: 100%; border-radius: var(--radius); object-fit: cover; }

/* --- Features --- */
.features { padding: 100px 0; background: var(--accent-bg); }
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.feature-card { background: var(--bg-light); border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.feature-icon {
    width: 60px; height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
}
.feature-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Ideal For --- */
.ideal { padding: 100px 0; }
.ideal h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.ideal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; max-width: 900px; margin: 0 auto; }
.ideal-item {
    background: var(--accent-bg); border-radius: var(--radius); padding: 25px;
    border: 1px solid var(--border); text-align: center;
}
.ideal-item .check { color: var(--primary); font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.ideal-item h3 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.ideal-item p { color: var(--text-secondary); font-size: 0.9rem; }

/* ============================================================
   DROP-IN PAGE
   ============================================================ */
.price-tag {
    display: inline-block; background: var(--primary); color: var(--text-light);
    padding: 15px 30px; border-radius: var(--radius); font-family: var(--font-display);
    font-weight: 700; font-size: 1.5rem; margin-bottom: 20px;
}
.info-block { background: var(--accent-bg); border-radius: var(--radius); padding: 30px; margin-bottom: 20px; }
.info-block h3 { font-size: 1.1rem; margin-bottom: 10px; }
.info-block h4 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.info-block p { color: var(--text-secondary); font-size: 0.9rem; }
.info-block ul { list-style: none; }
.info-block ul li { padding: 5px 0; font-size: 0.95rem; color: var(--text-secondary); }
.info-block ul li::before { content: "\2713 "; color: var(--primary); font-weight: 700; }

/* ============================================================
   PARTNER LOGOS (footer)
   ============================================================ */
.partner-logos {
    display: flex; align-items: center; gap: 25px;
    margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
}
.partner-logos span { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.partner-logos img { height: 30px; opacity: 0.5; transition: opacity var(--transition); filter: brightness(0) invert(1); }
.partner-logos img:hover { opacity: 0.8; }

/* ============================================================
   FOOTER (4 colonnes — Style Kilo)
   ============================================================ */
.footer { background: var(--bg-dark); color: var(--text-light); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-size: 1rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer p, .footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }
.footer a { text-decoration: none; display: block; transition: color var(--transition); }
.footer a:hover { color: var(--text-light); }
.footer-about p { margin-bottom: 20px; }

.social-links { display: flex; gap: 15px; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.1); transition: background var(--transition);
}
.social-links a:hover { background: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; display: inline; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS (works with animations.js)
   ============================================================ */
.reveal-init { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal-init { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.4rem; }
    .steps-grid, .process-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .value-grid { gap: 40px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pain-points-grid { gap: 40px; }
    .lead-magnet-grid { gap: 40px; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .steps, .process-steps, .value, .programs, .testimonials, .team, .faq,
    .pain-points, .lead-magnet, .cta-final { padding: 80px 0; }
}

/* Sticky mobile CTA — hidden by default, shown on mobile only */
.sticky-mobile-cta { display: none; }

/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .nav.active {
        display: flex; flex-direction: column; position: absolute;
        top: 70px; left: 0; right: 0; background: var(--bg-light);
        padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); gap: 15px;
    }

    .hero { min-height: 80vh; }
    .hero h1 { font-size: 1.8rem; }
    .hero .subtitle { font-size: 1.1rem; }
    .hero--short h1 { font-size: 1.8rem; }

    .steps-grid, .process-steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .value-grid { grid-template-columns: 1fr; }
    .value-image { order: -1; }
    .value-image img { height: 300px; }

    .programs-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .coach-photo { width: 120px; height: 120px; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-form .form-row { grid-template-columns: 1fr; }
    .pain-points-grid { grid-template-columns: 1fr; }
    .lead-magnet-grid { grid-template-columns: 1fr; }
    .lead-magnet-form { padding: 25px; }
    .content-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .partner-logos { flex-wrap: wrap; justify-content: center; }

    .steps, .process-steps, .value, .programs, .testimonials, .team, .faq,
    .pain-points, .lead-magnet, .cta-final, .videos, .text-testimonials { padding: 60px 0; }

    /* Sub-pages responsive */
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .schedule-table { font-size: 0.75rem; }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; text-align: left; padding-left: 45px; }
    .timeline-content { width: 100%; }
    .timeline-dot { left: 20px; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 350px; }
    .desc-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .ideal-grid { grid-template-columns: 1fr; }

    /* Sticky mobile CTA — +25% conversions (data: 300 sites analysis) */
    .sticky-mobile-cta {
        display: block; position: fixed; bottom: 0; left: 0; right: 0;
        z-index: 999; padding: 12px 20px;
        background: var(--bg-light); box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    .sticky-mobile-cta .btn-primary { width: 100%; text-align: center; }
}

/* ============================================================
   RESPONSIVE — Small (max-width: 544px)
   ============================================================ */
@media (max-width: 544px) {
    .hero h1 { font-size: 1.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .coach-photo { width: 140px; height: 140px; }
    .value .stats { flex-direction: column; gap: 15px; }
    .steps, .process-steps, .value, .programs, .testimonials, .team, .faq,
    .pain-points, .lead-magnet, .cta-final { padding: 40px 0; }
}


/* ============================================================
   DASHBOARD — Client stats page
   ============================================================ */
.dashboard-main {
    margin-top: 80px;
    padding: 60px 0 80px;
}
.dashboard-main h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}
.stat-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow var(--transition);
}
.stat-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.stat-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.ab-section {
    background: var(--accent-bg);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 40px;
}
.ab-section h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text);
}
.ab-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.leads-section {
    margin-bottom: 40px;
}
.leads-section h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text);
}
.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.leads-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--accent-bg);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 2px solid var(--border);
}
.leads-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}
.leads-table tr:hover td {
    background: var(--bg-hover);
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-card {
        padding: 20px 16px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 544px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .header, .hamburger, .btn-primary, .btn-secondary, .cta-final, .lead-magnet { display: none; }
    .hero { min-height: auto; background: none; color: var(--text); padding: 20px 0; }
    body { font-size: 12pt; }
}
