/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --orange: #F2600C;
    --orange-dark: #C94D08;
    --orange-light: #FF7A2F;
    --black: #0D0D0D;
    --dark: #111111;
    --dark2: #1A1A1A;
    --white: #FFFFFF;
    --grey: #999999;
    --grey-light: #CCCCCC;
    --section-pad: 96px 80px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== LOADER ===== */
#loader {
    position: fixed; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
#loader.hide { visibility: hidden; pointer-events: none; }

/* Triangles */
.tri-top, .tri-bot {
    position: absolute; width: 0; height: 0;
    transition: transform 1.1s cubic-bezier(.76,0,.24,1);
}
.tri-top {
    top: 0; left: 0;
    border-top: 100vh solid #1C1C1C;
    border-right: 100vw solid transparent;
}
.tri-bot {
    bottom: 0; right: 0;
    border-bottom: 100vh solid #1C1C1C;
    border-left: 100vw solid transparent;
}
#loader.split .tri-top { transform: translate(-100vw, -100vh); }
#loader.split .tri-bot { transform: translate(100vw, 100vh); }

/* Loader center content */
.loader-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 28px;
    transition: opacity .25s ease;
}
#loader.split .loader-inner { opacity: 0; }

.loader-logo {
    width: 200px; opacity: 0; transform: scale(.65) translateY(20px);
    animation: logoIn 1s cubic-bezier(.22,1,.36,1) .3s forwards;
}
@keyframes logoIn { to { opacity: 1; transform: scale(1) translateY(0); } }

/* Tagline avec traits */
.loader-lines {
    display: flex; align-items: center; gap: 14px;
    opacity: 0; animation: fadeUp .4s ease 1.05s forwards;
}
.loader-line-l, .loader-line-r {
    display: block; height: 1px; width: 0; border-radius: 1px;
    animation: lineGrow .55s ease 1.2s forwards;
}
.loader-line-l { background: linear-gradient(to left,  var(--orange), transparent); }
.loader-line-r { background: linear-gradient(to right, var(--orange), transparent); }
@keyframes lineGrow { to { width: 52px; } }
.loader-tagline {
    font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 6px;
    color: var(--orange);
}

.loader-track { width: 200px; height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; opacity: 0; animation: fadeUp .3s ease .9s forwards; }
.loader-fill { height: 100%; width: 0; background: var(--orange); border-radius: 2px; animation: fill 1.3s ease .9s forwards; }
@keyframes fill { to { width: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ===== NAVIGATION ===== */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: padding .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .4s;
}
#nav::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(10,10,10,.88);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    opacity: 0;
    transition: opacity .4s, border-color .4s, box-shadow .4s;
    z-index: -1;
    pointer-events: none;
}
#nav.solid { padding: 10px 60px; }
#nav.solid::before {
    opacity: 1;
    border-bottom-color: rgba(242,96,12,.18);
    box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 8px 32px rgba(0,0,0,.45);
}

/* Logo */
.nav-logo {
    height: 40px;
    transition: height .4s cubic-bezier(.22,1,.36,1), opacity .2s;
}
.nav-logo:hover { opacity: .8; }
#nav.solid .nav-logo { height: 34px; }

/* Links */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
    position: relative;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.6); padding: 8px 14px; border-radius: 6px;
    transition: color .2s, background .2s;
}
.nav-menu a::after {
    content: '';
    position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1px;
    background: var(--orange); transform: scaleX(0); transform-origin: left;
    transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.nav-menu a:not(.nav-btn):hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-menu a:not(.nav-btn):hover::after { transform: scaleX(1); }

/* CTA button */
.nav-menu .nav-btn {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 6px;
    font-size: 11px !important;
    letter-spacing: 2px;
    box-shadow: 0 0 0 0 rgba(242,96,12,.4);
    transition: background .2s, box-shadow .3s, transform .2s !important;
}
.nav-menu .nav-btn::after { display: none; }
.nav-menu .nav-btn:hover {
    background: var(--orange-light) !important;
    box-shadow: 0 0 20px 4px rgba(242,96,12,.25) !important;
    transform: translateY(-1px);
}

/* Burger */
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== COMMON ===== */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
    margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); }
.section-eyebrow.center::before { display: none; }
h2.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 72px); line-height: .95; letter-spacing: 1.5px; margin-bottom: 18px; }
h2.section-title span { color: var(--orange); }
.section-desc { font-size: 16px; line-height: 1.8; color: var(--grey); max-width: 540px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 4px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: all .2s; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,.25); color: var(--white); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ===== ACCORDION ===== */
#en-savoir-plus { padding: 80px 60px; }
.accordion { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 2px; }

.acc-item { border: 1px solid rgba(255,255,255,.07); border-radius: 10px; overflow: hidden; background: rgba(255,255,255,.02); transition: border-color .25s; }
.acc-item.open { border-color: rgba(242,96,12,.3); background: rgba(242,96,12,.03); }

.acc-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: none; border: none; cursor: pointer;
    color: var(--white); font-family: 'Bebas Neue', sans-serif; font-size: 20px;
    letter-spacing: 1px; text-align: left; gap: 12px;
    transition: color .2s;
}
.acc-btn:hover { color: var(--orange); }
.acc-btn span { display: flex; align-items: center; gap: 12px; }
.acc-btn span i { color: var(--orange); font-size: 16px; }
.acc-icon { font-size: 12px; color: rgba(255,255,255,.4); transition: transform .35s cubic-bezier(.22,1,.36,1); flex-shrink: 0; }
.acc-item.open .acc-icon { transform: rotate(180deg); color: var(--orange); }

.acc-body {
    max-height: 0; overflow: hidden;
    transition: max-height .45s cubic-bezier(.22,1,.36,1), padding .3s;
    padding: 0 24px; color: var(--grey); font-size: 15px; line-height: 1.75;
}
.acc-item.open .acc-body { max-height: 600px; padding: 0 24px 24px; }

.acc-pricing-grid { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.acc-price-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.acc-price-row:last-child { border-bottom: none; }
.acc-price-name { font-weight: 600; color: rgba(255,255,255,.8); grid-column: 1; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.acc-price-val { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--orange); white-space: nowrap; }
.acc-price-detail { font-size: 12px; color: rgba(255,255,255,.35); grid-column: 1 / -1; margin-top: -6px; }
.acc-was { font-family: inherit; font-size: 14px; color: rgba(255,255,255,.35); text-decoration: line-through; margin-left: 4px; }
.acc-badge { font-family: inherit; font-size: 11px; font-weight: 700; background: var(--orange); color: var(--white); border-radius: 4px; padding: 2px 7px; letter-spacing: .5px; }
.popular-row .acc-price-name { color: var(--white); }
.acc-note { font-size: 13px; color: rgba(255,255,255,.4); padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); line-height: 1.65; }

.acc-diplomas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.acc-diploma { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.acc-diploma i { color: var(--orange); width: 16px; flex-shrink: 0; }

@media (max-width: 768px) {
    #en-savoir-plus { padding: 60px 20px; }
    .acc-btn { font-size: 17px; padding: 16px 18px; }
    .acc-body { padding: 0 18px; }
    .acc-item.open .acc-body { padding: 0 18px 20px; }
}

/* ===== SECTION SEPARATORS ===== */
.section-sep {
    display: flex; align-items: center; justify-content: center;
    padding: 0 60px; gap: 0;
}
.section-sep::before, .section-sep::after {
    content: ''; flex: 1; height: 1px;
}
.section-sep::before { background: linear-gradient(to right, transparent, rgba(255,255,255,.08)); }
.section-sep::after  { background: linear-gradient(to left,  transparent, rgba(255,255,255,.08)); }
.section-sep span {
    width: 7px; height: 7px;
    background: var(--orange); opacity: .45;
    transform: rotate(45deg); margin: 0 18px; flex-shrink: 0;
}

/* ===== BACK TO TOP ===== */
#back-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 800;
    width: 42px; height: 42px; border-radius: 8px;
    background: rgba(242,96,12,.9);
    border: none; cursor: pointer; color: #fff; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity .3s, transform .3s, background .2s;
    box-shadow: 0 4px 16px rgba(242,96,12,.35);
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { background: var(--orange-light); transform: translateY(-2px); }

/* ===== INSTAGRAM DEAL ===== */
.trial-cta-wrap { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.insta-deal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242,96,12,.06);
    border: 1px solid rgba(242,96,12,.22);
    border-radius: 8px;
    padding: 10px 16px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    line-height: 1.4;
    transition: all .2s;
    text-decoration: none;
    max-width: 340px;
}
.insta-deal i { font-size: 20px; color: var(--orange); flex-shrink: 0; }
.insta-deal strong { color: var(--orange); }
.insta-deal:hover {
    background: rgba(242,96,12,.12);
    border-color: rgba(242,96,12,.5);
    color: var(--white);
    transform: translateY(-1px);
}

/* ===== ICONS ===== */
.srv-icon i, .tb-srv-icon i, .diploma-icon i { color: currentColor; }
.srv-icon i { font-size: 32px; }
.tb-srv-icon i { font-size: 30px; }
.diploma-icon i { font-size: 20px; }
.contact-icon i { font-size: 18px; color: var(--orange); }
.hero-card-icon i { font-size: 18px; color: var(--white); }
.social-btn i { font-size: 17px; color: var(--grey-light); }
.promo-tag i { font-size: 11px; }
.hero-location i { font-size: 10px; color: var(--orange); }
.fa-star { color: #FFD700; }
.temo-stars i, .hero-float-rating .stars i { color: #FFD700; letter-spacing: 2px; font-size: 13px; }
.coach-google .stars-row i { color: #FFD700; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== HERO ===== */
#hero {
    min-height: 100vh; display: grid; grid-template-columns: 62% 38%;
    position: relative; overflow: hidden;
}
.hero-glow {
    position: absolute;
    left: calc(62% - 100px);
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 1;
    /* Bande verticale douce — aucun bord circulaire visible */
    background: linear-gradient(to right,
        transparent      0%,
        rgba(242,96,12,.05) 30%,
        rgba(242,96,12,.12) 50%,
        rgba(242,96,12,.05) 70%,
        transparent      100%);
    filter: blur(20px);
    pointer-events: none;
}
.hero-content {
    padding: 80px 40px 80px 72px; display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 2; max-width: 100%;
}
.hero-location {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.hero-location::before { content: ''; display: block; width: 20px; height: 1px; background: rgba(255,255,255,.25); }
.hero-location strong { color: var(--orange); font-weight: 700; }
h1.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(68px, 7vw, 108px);
    line-height: .88; letter-spacing: 3px; margin-bottom: 0;
}
h1.hero-title .t-white { color: var(--white); }
h1.hero-title .t-orange { color: var(--orange); }
.hero-accent-bar {
    display: flex; align-items: center; gap: 12px; margin: 16px 0 20px;
}
.hero-accent-line {
    width: 80px; height: 2px; border-radius: 2px;
    background: linear-gradient(to right, var(--orange), rgba(242,96,12,.2));
}
.hero-accent-diamond {
    width: 7px; height: 7px;
    background: var(--orange);
    transform: rotate(45deg);
}
.hero-accent-dot2 { width: 5px; height: 5px; background: rgba(242,96,12,.4); border-radius: 50%; }
.hero-tagline { font-size: 16px; line-height: 1.75; color: var(--grey); max-width: 420px; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-stat {
    display: flex; flex-direction: column; padding: 16px 22px;
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px; transition: background .3s, border-color .3s;
}
.hero-stat:hover { background: rgba(242,96,12,.07); border-color: rgba(242,96,12,.25); }
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--orange); line-height: 1; display: flex; align-items: center; gap: 2px; }
.hero-stat-num i { font-size: 16px; color: #FFD700; }
.hero-stat-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-top: 4px; }

/* ===== HERO ENTER ANIMATIONS ===== */
.ha { opacity: 0; will-change: opacity, transform; backface-visibility: hidden; }
.ha-up { transform: translate3d(0, 26px, 0); }
@keyframes haIn { to { opacity: 1; transform: translate3d(0,0,0); } }
#hero.animated .ha-loc    { animation: haIn .55s cubic-bezier(.22,1,.36,1) .05s both; }
#hero.animated .ha-t1     { animation: haIn .65s cubic-bezier(.22,1,.36,1) .18s both; }
#hero.animated .ha-t2     { animation: haIn .65s cubic-bezier(.22,1,.36,1) .32s both; }
#hero.animated .ha-t3     { animation: haIn .65s cubic-bezier(.22,1,.36,1) .46s both; }
#hero.animated .ha-bar    { animation: haIn .5s  cubic-bezier(.22,1,.36,1) .56s both; }
#hero.animated .ha-tag    { animation: haIn .6s  cubic-bezier(.22,1,.36,1) .65s both; }
#hero.animated .ha-cta    { animation: haIn .6s  cubic-bezier(.22,1,.36,1) .78s both; }
#hero.animated .ha-stats  { animation: haIn .6s  cubic-bezier(.22,1,.36,1) .92s both; }
#hero.animated .ha-photo  { animation: haIn .9s  ease .15s both; }
#hero.animated .ha-glow   { animation: haIn 1.4s ease .55s both; }
#hero.animated .ha-frat   { animation: haIn .6s  cubic-bezier(.22,1,.36,1) .95s both; }
#hero.animated .ha-fcard  { animation: haIn .6s  cubic-bezier(.22,1,.36,1) 1.1s both; }

/* Photo */
.hero-photo { position: relative; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; filter: brightness(.7) saturate(1.1); }
.hero-photo-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to right, var(--black) 0%, rgba(13,13,13,.5) 12%, transparent 28%),
        linear-gradient(to top, var(--black) 0%, transparent 22%),
        linear-gradient(to bottom, rgba(13,13,13,.3) 0%, transparent 15%);
}
.hero-float-rating {
    position: absolute; top: 100px; right: 20px; z-index: 2;
    background: rgba(13,13,13,.92); border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(16px); border-radius: 14px; padding: 16px 22px; text-align: center; min-width: 160px;
}
.hero-float-rating .stars { color: #FFD700; font-size: 14px; letter-spacing: 4px; }
.hero-float-rating strong { display: block; font-size: 13px; font-weight: 700; margin-top: 8px; }
.hero-float-rating span { font-size: 11px; color: var(--grey); }
.hero-card {
    position: absolute; bottom: 56px; right: 20px; z-index: 2;
    background: rgba(13,13,13,.92); border: 1px solid rgba(242,96,12,.3);
    backdrop-filter: blur(16px); border-radius: 14px; padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
}
.hero-card-icon { width: 40px; height: 40px; min-width: 40px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hero-card-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.hero-card-text span { font-size: 11px; color: var(--grey); }

/* Ticker */
.hero-ticker {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
    background: var(--orange); height: 42px; overflow: hidden; display: flex; align-items: center;
}
.hero-ticker-inner { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
    display: inline-flex; align-items: center; gap: 14px; padding: 0 28px;
    font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.9);
}
.ticker-item::after { content: '◆'; font-size: 7px; opacity: .45; margin-left: 14px; }

/* ===== PROMO BANNER ===== */
#promos { padding: var(--section-pad); background: var(--dark); }
.carousel-wrap { margin-top: 48px; overflow: hidden; }
.carousel-track {
    display: flex;
    gap: 24px;
    cursor: grab;
    transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.carousel-track.grabbing { cursor: grabbing; user-select: none; }
.carousel-track .promo-card { flex: 0 0 calc(50% - 12px); }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.cdot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.2); border: none; cursor: pointer;
    padding: 0; transition: background .25s, transform .25s;
}
.cdot.active { background: var(--orange); transform: scale(1.3); }
.promo-card {
    border-radius: 12px; overflow: hidden; position: relative;
    padding: 44px 40px; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between;
}
.promo-card.dark-card { background: var(--dark2); border: 1px solid rgba(255,255,255,.07); }
.promo-card.orange-card { background: var(--orange); }
.promo-deco {
    position: absolute; top: 0; right: 0; width: 160px; height: 160px;
    border-radius: 50%; opacity: .08; transform: translate(40%, -40%);
}
.promo-card.dark-card .promo-deco { background: var(--orange); }
.promo-card.orange-card .promo-deco { background: var(--white); }
.promo-tag {
    display: inline-flex; align-items: center; gap: 8px; width: fit-content;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.promo-card.dark-card .promo-tag { background: rgba(242,96,12,.15); color: var(--orange); }
.promo-card.orange-card .promo-tag { background: rgba(0,0,0,.2); color: var(--white); }
.promo-date { font-size: 12px; font-weight: 600; letter-spacing: 1px; opacity: .7; margin-bottom: 12px; }
.promo-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 1.5px; margin-bottom: 14px; line-height: 1.05; }
.promo-text { font-size: 14px; line-height: 1.7; opacity: .8; flex: 1; margin-bottom: 28px; }
.promo-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.promo-card.dark-card .promo-cta { color: var(--orange); }
.promo-card.orange-card .promo-cta { color: var(--white); }
.promo-highlight { font-size: 28px; font-family: 'Bebas Neue', sans-serif; color: var(--black); background: var(--white); display: inline-block; padding: 4px 14px; border-radius: 4px; margin-bottom: 10px; }
.baby-gym-prices { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; margin-top: -6px; }
.baby-gym-prices span { font-size: 13px; color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); border-radius: 4px; padding: 4px 10px; }
.baby-gym-prices span strong { color: var(--orange); margin-left: 4px; }

/* ===== SERVICES ===== */
#services { padding: var(--section-pad); background: var(--black); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.srv {
    background: var(--dark); padding: 44px 36px; position: relative; overflow: hidden;
    transition: background .3s;
}
.srv::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,1,.36,1); }
.srv:hover::after { transform: scaleX(1); }
.srv:hover { background: #181818; }
.srv.featured { background: var(--orange); }
.srv.featured::after { display: none; }
.srv.featured:hover { background: var(--orange-light); }
.srv-num { font-family: 'Bebas Neue', sans-serif; font-size: 80px; line-height: 1; color: rgba(255,255,255,.06); position: absolute; top: 12px; right: 20px; }
.srv.featured .srv-num { color: rgba(0,0,0,.1); }
.srv-icon { font-size: 38px; margin-bottom: 22px; }
.srv-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; margin-bottom: 12px; }
.srv-text { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.65); }
.srv.featured .srv-text { color: rgba(255,255,255,.85); }

/* Personal Trainer detail */
#pt { background: var(--dark); padding: var(--section-pad); }
.pt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 56px; }
.pt-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--orange); letter-spacing: 1px; margin-bottom: 16px; }
.pt-content p { font-size: 15px; line-height: 1.8; color: var(--grey); margin-bottom: 24px; }
.pt-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill { background: rgba(242,96,12,.12); border: 1px solid rgba(242,96,12,.25); color: var(--orange); font-size: 12px; font-weight: 600; letter-spacing: 1px; padding: 7px 16px; border-radius: 100px; text-transform: uppercase; }
.pt-visual { position: relative; }
.pt-visual::before {
    content: '';
    position: absolute; top: -12px; right: -12px; bottom: 24px; left: 24px;
    border: 2px solid rgba(242,96,12,.3); border-radius: 12px; z-index: 0;
}
.pt-visual img { width: 100%; height: 620px; object-fit: cover; object-position: center 15%; border-radius: 12px; position: relative; z-index: 1; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.pt-stat-box {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--orange); border-radius: 10px; padding: 22px 28px; text-align: center;
    z-index: 3;
}
.pt-stat-box strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; color: var(--white); }
.pt-stat-box span { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* ===== PRICING ===== */
#pricing { padding: var(--section-pad); background: var(--black); }
.pricing-head { text-align: center; margin-bottom: 60px; }
.pricing-head .section-eyebrow { justify-content: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.price-card {
    background: var(--dark); border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px; padding: 36px 28px; position: relative; transition: transform .3s, border-color .3s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(242,96,12,.3); }
.price-card.popular {
    background: var(--orange); border-color: var(--orange);
    transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--white); color: var(--orange); font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
    white-space: nowrap;
}
.price-name { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.price-card.popular .price-name { color: rgba(255,255,255,.8); }
.price-was {
    font-size: 16px; font-weight: 600; color: rgba(255,255,255,.55);
    text-decoration: line-through; text-decoration-color: rgba(242,96,12,.7);
    margin-bottom: 2px; letter-spacing: .5px;
}
.price-card.popular .price-was {
    color: rgba(255,255,255,.65);
    text-decoration-color: rgba(255,255,255,.8);
}
.price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 62px; line-height: 1; margin-bottom: 4px; color: var(--white); }
.price-amount small { font-size: 28px; }
.price-validity { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.price-card.popular .price-validity { color: rgba(255,255,255,.7); }
.price-payment { font-size: 12px; font-weight: 600; color: var(--orange); margin-bottom: 28px; }
.price-card.popular .price-payment { color: var(--white); background: rgba(0,0,0,.15); display: inline-block; padding: 3px 10px; border-radius: 4px; }
.price-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.price-card.popular .price-feat { color: rgba(255,255,255,.9); }
.price-feat::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.price-card.popular .price-feat::before { color: var(--white); }
.price-cta { width: 100%; padding: 14px; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border: none; transition: all .2s; }
.price-card:not(.popular) .price-cta { background: rgba(242,96,12,.12); color: var(--orange); border: 1px solid rgba(242,96,12,.3); }
.price-card:not(.popular) .price-cta:hover { background: var(--orange); color: var(--white); }
.price-card.popular .price-cta { background: var(--white); color: var(--orange); }
.price-card.popular .price-cta:hover { background: var(--black); color: var(--white); }
.pricing-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--grey); }
.pricing-note a { color: var(--orange); text-decoration: underline; }

/* ===== COACH ===== */
#coach { background: var(--dark); padding: var(--section-pad); }
.coach-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; margin-top: 56px; }
.coach-photo { position: relative; }
.coach-photo img { width: 100%; height: 600px; object-fit: cover; object-position: center -40px; border-radius: 8px; }
.coach-photo-frame { position: absolute; top: -14px; left: -14px; right: 28px; bottom: 28px; border: 2px solid rgba(242,96,12,.35); border-radius: 8px; z-index: -1; }
.coach-credentials { position: absolute; bottom: -16px; right: -16px; background: var(--orange); border-radius: 10px; padding: 22px 26px; }
.coach-credentials strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 46px; line-height: 1; }
.coach-credentials span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; }
.coach-name { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 2px; color: var(--white); margin-bottom: 6px; }
.coach-role { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 28px; }
.coach-bio { font-size: 15px; line-height: 1.85; color: var(--grey); margin-bottom: 32px; }
.coach-diplomas { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
.diploma { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 14px 18px; }
.diploma-icon { font-size: 20px; margin-bottom: 6px; }
.diploma-text { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.4; }
.diploma-sub { font-size: 12px; color: var(--grey); margin-top: 3px; }
.coach-google { font-size: 13px; color: var(--grey); display: flex; align-items: center; gap: 8px; text-decoration: none; transition: color .2s; }
.coach-google:hover { color: var(--white); }
.coach-google span { color: #4285F4; font-weight: 700; }
a.hero-float-rating { text-decoration: none; cursor: pointer; transition: border-color .2s, transform .2s; }
a.hero-float-rating:hover { border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
a.hero-stat { text-decoration: none; }
.stars-row { color: #FFD700; letter-spacing: 2px; }

/* ===== TESTIMONIALS ===== */
#temoignages { padding: var(--section-pad); background: var(--black); }
.temo-head { text-align: center; margin-bottom: 56px; }
.temo-head .section-eyebrow { justify-content: center; }
.temo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.temo {
    background: var(--dark); border: 1px solid rgba(255,255,255,.05); border-radius: 12px;
    padding: 36px 30px; transition: border-color .3s, transform .3s;
}
.temo:hover { border-color: rgba(242,96,12,.3); transform: translateY(-4px); }
.temo-stars { color: #FFD700; font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.temo-text { font-size: 15px; line-height: 1.75; color: var(--grey); font-style: italic; margin-bottom: 22px; }
.temo-author { font-size: 14px; font-weight: 700; color: var(--white); }
.temo-qs { font-size: 60px; font-family: 'Bebas Neue', sans-serif; color: var(--orange); line-height: .6; opacity: .5; margin-bottom: 18px; }

/* ===== TEAM BUILDING ===== */
#teambuilding { padding: var(--section-pad); background: var(--dark2); border-top: 1px solid rgba(255,255,255,.04); }
.tb-head { margin-bottom: 56px; }
.tb-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }

.tb-intro-text blockquote { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; color: var(--orange); line-height: 1.3; margin: 24px 0 24px; border-left: 3px solid var(--orange); padding-left: 20px; }
.tb-intro-text p { font-size: 15px; line-height: 1.85; color: var(--grey); margin-bottom: 16px; }
.tb-benefits { display: flex; flex-direction: column; gap: 14px; }
.tb-benefit { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--grey); line-height: 1.6; }
.tb-benefit-dot { width: 22px; height: 22px; min-width: 22px; background: rgba(242,96,12,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.tb-benefit-dot::before { content: '→'; font-size: 11px; color: var(--orange); font-weight: 700; }
.tb-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tb-srv { background: var(--black); border-radius: 12px; padding: 36px 28px; border: 1px solid rgba(255,255,255,.05); transition: border-color .3s, transform .3s; }
.tb-srv:hover { border-color: rgba(242,96,12,.3); transform: translateY(-4px); }
.tb-srv-icon { font-size: 36px; margin-bottom: 18px; }
.tb-srv-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; margin-bottom: 12px; color: var(--white); }
.tb-srv-text { font-size: 14px; line-height: 1.75; color: var(--grey); }

/* ===== ASSOCIATION ===== */
#association { padding: var(--section-pad); background: var(--dark); }
.assoc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 60px; }
.assoc-tag { display: inline-block; background: rgba(242,96,12,.12); border: 1px solid rgba(242,96,12,.25); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 20px; }
.assoc-visual { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); border-radius: 12px; padding: 48px 40px; }
.assoc-visual h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; margin-bottom: 20px; }
.assoc-visual ul { display: flex; flex-direction: column; gap: 14px; }
.assoc-visual li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.9); }
.assoc-visual li::before { content: '✦'; font-size: 10px; margin-top: 4px; color: rgba(255,255,255,.5); flex-shrink: 0; }

/* ===== CONTACT ===== */
#contact { padding: var(--section-pad); background: var(--black); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-top: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info p { font-size: 16px; line-height: 1.8; color: var(--grey); }
.contact-detail { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(242,96,12,.1); border: 1px solid rgba(242,96,12,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-detail strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; letter-spacing: .5px; }
.contact-detail span, .contact-detail a { font-size: 14px; color: var(--grey); }
.contact-detail a:hover { color: var(--orange); }
.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.social-btn { width: 44px; height: 44px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .2s, border-color .2s; }
.social-btn:hover { background: rgba(242,96,12,.15); border-color: var(--orange); }
form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); }
input, select, textarea { background: var(--dark); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; padding: 13px 16px; outline: none; transition: border-color .2s, background .2s; width: 100%; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.25); }
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: rgba(242,96,12,.04); }
select option { background: #1a1a1a; }
textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--orange); color: var(--white); border: none; border-radius: 6px; padding: 15px 36px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; align-self: flex-start; transition: background .2s, transform .2s; }
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,.05); padding: 48px 80px; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-logo { height: 38px; }
.footer-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); text-align: right; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    :root { --section-pad: 80px 40px; }
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 130px 32px 80px; text-align: center; align-items: center; }
    .hero-location { justify-content: center; }
    .hero-accent-bar { justify-content: center; }
    .hero-tagline { margin: 0 auto 44px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    /* Hero photo responsive */
    .hero-photo { height: 55vh; min-height: 360px; }
    .hero-photo img { object-position: center 18%; filter: brightness(.75) saturate(1.1); }
    .hero-photo-overlay {
        background:
            linear-gradient(to bottom, var(--black) 0%, rgba(13,13,13,.6) 10%, transparent 30%),
            linear-gradient(to top, var(--black) 0%, transparent 25%),
            linear-gradient(to right, rgba(13,13,13,.3) 0%, transparent 20%);
    }
    /* Glow : caché en responsive (layout vertical, pas de jonction colonne) */
    .hero-glow { display: none; }
    .hero-photo { height: 65vh; min-height: 400px; }
    .hero-float-rating { display: none; }
    .hero-card { right: 14px; bottom: 54px; }
    .hero-ticker { position: static; }
    #nav { padding: 16px 24px; }
    #nav.solid { padding: 12px 24px; }
    .nav-menu { display: none; position: fixed; inset: 0; background: var(--black); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 400; }
    .nav-menu.open { display: flex; }
    .nav-menu a { font-size: 20px; letter-spacing: 2px; }
    .nav-menu .nav-btn { font-size: 16px !important; padding: 14px 32px !important; }
    .burger { display: flex; position: relative; z-index: 600; }
    .services-grid { grid-template-columns: 1fr; }
    .services-head { flex-direction: column; align-items: flex-start; }
    .pt-grid { grid-template-columns: 1fr; gap: 48px; }
    .pt-visual img { height: 360px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-6px); }
    .coach-grid { grid-template-columns: 1fr; gap: 56px; }
    .coach-photo img { height: 420px; }
    .temo-grid { grid-template-columns: 1fr; }
    .tb-intro { grid-template-columns: 1fr; gap: 36px; }
    .tb-services-grid { grid-template-columns: 1fr; }
    .assoc-intro { grid-template-columns: 1fr; gap: 36px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .footer-copy { text-align: center; }
    .carousel-track .promo-card { flex: 0 0 calc(100% - 0px); }
}
@media (max-width: 600px) {
    :root { --section-pad: 64px 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .coach-diplomas { grid-template-columns: 1fr; }
    .hero-photo { height: 45vh; min-height: 280px; }
    .hero-photo { height: 62vh; min-height: 380px; }
    .hero-card { display: none; }
}
