/* ============================================
   MAIN CSS – Styles communs
   Journée Immersion Stratégique
   Communication Futée
============================================ */

/* ---- POLICES ---- */
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaBlack-Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - Modernica.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaBook.otf') format('opentype');
    font-weight: 350;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Modernica';
    src: url('../assets/fonts/Latinotype - ModernicaThin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ModernicaCondensed';
    src: url('../assets/fonts/Police Condensed Medium Modernica.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Modernica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s, color 0.3s;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

/* ---- TYPOGRAPHIE ---- */
h1, h2, h3, h4, h5 {
    font-family: 'Modernica', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: 1.2rem; font-weight: 500; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.accent-font {
    font-family: 'ModernicaCondensed', 'Arial Narrow', sans-serif;
    letter-spacing: 0.05em;
}

.text-teal { color: var(--teal); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8em; font-weight: 500; }

/* ---- LAYOUT ---- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

section { position: relative; }

/* ---- TIMER BANDEAU ---- */
.timer-banner {
    background: var(--timer-bg);
    color: var(--timer-text);
    text-align: center;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    font-weight: 500;
}

.timer-banner.urgency-banner {
    background: #1C1F22;
    color: #F0EDEA;
    border-bottom: 2px solid var(--teal);
}

.timer-banner p { margin: 0; font-size: 0.95rem; }

.countdown-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 900;
    font-size: 1.1em;
    vertical-align: middle;
}

/* ---- COUNTDOWN BLOCK (hero et pages replay) ---- */
.countdown-block {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 80px;
}

.countdown-unit .number {
    font-family: 'Modernica', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--teal);
}

.countdown-unit .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ---- BOUTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'Modernica', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--btn-primary-text);
    box-shadow: 0 4px 20px rgba(33, 177, 161, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(33, 177, 161, 0.45);
    color: #FFFFFF;
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-xl { padding: 20px 48px; font-size: 1.15rem; }
.btn-full { width: 100%; }
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(33, 177, 161, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(33, 177, 161, 0.6); }
}

/* ---- SECTION HERO ---- */
.section-hero {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    text-align: center;
}

.hero-label {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(33, 177, 161, 0.3);
}

.hero-title { margin-bottom: 20px; }
.hero-title em { color: var(--teal); font-style: normal; }

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.hero-event-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-event-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-event-pill span:first-child { font-size: 1.1em; }

/* ---- VIDÉO VIMEO ---- */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    margin: 32px 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.video-placeholder .play-icon {
    width: 72px;
    height: 72px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* ---- SECTIONS CONTENU ---- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.section-alt { background: var(--bg-alt); }
.section-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-on-dark); }
.section-dark .text-muted { color: rgba(240,237,234,0.6); }

.section-teal {
    background: var(--gradient-cta);
    color: #FFFFFF;
}
.section-teal h2, .section-teal h3 { color: #FFFFFF; }

.section-label {
    display: inline-block;
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 48px;
}

/* ---- CARDS ---- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--card-shadow);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--teal);
}

/* ---- GRILLES ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- BLOCS 3 (page vente) ---- */
.bloc-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bloc-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.bloc-number {
    font-family: 'MarketCondensed', sans-serif;
    font-size: 4rem;
    color: var(--teal);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -8px;
}

.bloc-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal);
    margin-bottom: 8px;
}

.bloc-subtitle {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.bloc-list {
    list-style: none;
    padding: 0;
}

.bloc-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.bloc-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* ---- LISTE BONUS ---- */
.bonus-list { list-style: none; padding: 0; }
.bonus-item {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.bonus-item:last-child { border-bottom: none; }

.bonus-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.bonus-content h4 { margin-bottom: 6px; font-size: 1rem; }
.bonus-value {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.checkmark-list { list-style: none; padding: 0; }
.checkmark-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.checkmark-list li::before {
    content: '✔';
    color: var(--teal);
    flex-shrink: 0;
    font-weight: 900;
}

/* ---- PRIX BOX ---- */
.prix-box {
    text-align: center;
    padding: 48px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid var(--teal);
    max-width: 520px;
    margin: 0 auto;
}

.prix-valeur {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.prix-investissement {
    font-family: 'Modernica', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--teal);
    line-height: 1;
}

.prix-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.rabais-badge {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 12px 0;
}

/* ---- ÉQUIPE FORMATEURS ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

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

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--teal);
    background: var(--bg-alt);
}

.team-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 3px solid var(--teal);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.team-name { font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.team-role { color: var(--teal); font-size: 0.9rem; margin-bottom: 12px; }
.team-bio { font-size: 0.9rem; color: var(--text-muted); }

/* ---- AVANT / APRÈS ---- */
.avant-apres {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 48px;
}

.avant-apres-col {
    padding: 40px;
}

.avant-col {
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.apres-col {
    background: var(--teal);
    color: #FFFFFF;
}

.apres-col h3, .apres-col li, .apres-col p { color: #FFFFFF; }

.avant-apres-col h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    opacity: 0.6;
}

.avant-apres-list { list-style: none; padding: 0; }
.avant-apres-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.avant-col .avant-apres-list li { border-bottom-color: var(--border); }
.avant-apres-list li::before { flex-shrink: 0; }
.avant-col .avant-apres-list li::before { content: '✗'; color: #C0392B; }
.apres-col .avant-apres-list li::before { content: '✔'; color: #FFFFFF; }

/* ---- TÉMOIGNAGES ---- */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.temoignage-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--card-shadow);
}

.temoignage-stars {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.temoignage-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.temoignage-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.temoignage-name { font-weight: 900; font-size: 0.9rem; }
.temoignage-title { font-size: 0.8rem; color: var(--text-muted); }

/* ---- GARANTIE ---- */
.garantie-box {
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.garantie-badge {
    width: 100px;
    height: 100px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
}

.garantie-badge .pct { font-size: 1.6rem; line-height: 1; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 48px auto 0; }

.faq-item {
    border-bottom: 1px solid var(--faq-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Modernica', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text);
    transition: color 0.2s;
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teal);
    transition: transform 0.3s, border-color 0.2s;
    line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--teal); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
    padding: 0 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ---- PAGE PANIER ---- */
.checkout-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    align-items: start;
}

.checkout-form-col {
    /* Colonne ThriveCart */
}

.checkout-summary-col {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.checkout-embed {
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.checkout-embed iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

.summary-title {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-items { list-style: none; padding: 0; margin-bottom: 24px; }
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.summary-item:last-child { border-bottom: none; }
.summary-item-name { color: var(--text); font-weight: 500; }
.summary-item-value { color: var(--text-muted); flex-shrink: 0; font-size: 0.85rem; }

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    border-top: 2px solid var(--teal);
    margin-top: 8px;
}

.summary-total-label { font-weight: 900; font-size: 1.1rem; }
.summary-total-price {
    font-family: 'Modernica', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--teal);
}

.summary-crossed {
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: -4px;
}

/* ---- PAGE REPLAY ---- */
.replay-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.replay-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 32px auto;
    text-align: left;
}

.replay-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.replay-point .icon { color: var(--teal); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

/* ---- UPSELL ---- */
.upsell-hero {
    text-align: center;
    padding: 60px 24px 48px;
    max-width: 800px;
    margin: 0 auto;
}

.upsell-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.upsell-feature {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.upsell-feature h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-value {
    font-size: 0.8rem;
    color: var(--teal);
    margin-bottom: 8px;
    font-weight: 500;
}

.upsell-price-box {
    text-align: center;
    padding: 40px;
    background: var(--card-bg);
    border: 2px solid var(--teal);
    border-radius: 20px;
    max-width: 480px;
    margin: 0 auto 40px;
}

/* ---- CONFIRMATION ---- */
.confirm-hero {
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 700px;
    margin: 0 auto;
}

.confirm-check {
    width: 80px;
    height: 80px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 24px;
}

.steps-list {
    max-width: 640px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    flex-shrink: 0;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 32px 24px;
    font-size: 0.85rem;
}

.site-footer a { color: var(--teal); }

/* ---- BADGE PLACES ---- */
.places-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33,177,161,0.1);
    border: 1px solid var(--teal);
    color: var(--teal);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .bloc-3, .team-grid { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .checkout-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .section-pad { padding: 56px 0; }

    .bloc-3 { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .temoignages-grid { grid-template-columns: 1fr; }
    .avant-apres { grid-template-columns: 1fr; }

    .countdown-block { gap: 8px; }
    .countdown-unit { padding: 12px 14px; min-width: 64px; }
    .countdown-unit .number { font-size: 1.8rem; }

    .garantie-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }
    .garantie-badge { margin: 0 auto; }

    .prix-box { padding: 32px 24px; }
    .prix-investissement { font-size: 3rem; }

    .btn-xl { padding: 16px 32px; font-size: 1rem; }

    .hero-event-info { gap: 16px; }

    .upsell-features { grid-template-columns: 1fr; }

    .timer-banner { font-size: 0.85rem; padding: 12px 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .container-narrow { padding: 0 16px; }
    .card { padding: 20px; }
    .checkout-summary-col { padding: 20px; }
    .bonus-item { flex-direction: column; }
}
