/* =========================================================
   HABITAT MÉDIA — Landing page
   Charte : police General Sans + orange de marque (#ffa725).
   ========================================================= */

/* ---- POLICE DE MARQUE : General Sans ---- */
@font-face {
  font-family: 'General Sans'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/GeneralSans-Regular.woff2') format('woff2'),
       url('assets/fonts/GeneralSans-Regular.woff') format('woff');
}
@font-face {
  font-family: 'General Sans'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('assets/fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('assets/fonts/GeneralSans-Medium.woff') format('woff');
}
@font-face {
  font-family: 'General Sans'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('assets/fonts/GeneralSans-Semibold.woff2') format('woff2'),
       url('assets/fonts/GeneralSans-Semibold.woff') format('woff');
}
@font-face {
  font-family: 'General Sans'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/GeneralSans-Bold.woff2') format('woff2'),
       url('assets/fonts/GeneralSans-Bold.woff') format('woff');
}

:root {
  /* ---- COULEURS DE MARQUE ---- */
  --bg:        #0b0a08;   /* fond principal (noir chaud) */
  --bg-2:      #131110;   /* sections alternées */
  --surface:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.09);
  --text:      #ffffff;   /* texte principal */
  --muted:     #a8a29a;   /* texte secondaire */
  --accent:    #ffa725;   /* orange principal Habitat Média */
  --accent-2:  #ffc33e;   /* orange clair (dégradé) */
  --accent-dk: #ce7500;   /* orange foncé (dégradé/ombres) */
  --accent-blue:  #5b9bff;  /* accent forfait 1 */
  --accent-green: #3ecf8e;  /* accent forfait 3 */

  /* ---- TYPO ---- */
  --font-head: 'General Sans', system-ui, sans-serif;
  --font-body: 'General Sans', system-ui, sans-serif;

  /* ---- LAYOUT ---- */
  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }

.grad {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========== BACKGROUND AMBIANCE =========== */
.bg-grid, .bg-orb, .bg-noise { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg-grid {
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 70%);
  opacity: .35;
}
.bg-orb { border-radius: 50%; filter: blur(120px); opacity: .28; }
.bg-orb--1 { width: 520px; height: 520px; top: -140px; left: -120px;
  background: radial-gradient(circle, var(--accent), transparent 70%); }
.bg-orb--2 { width: 620px; height: 620px; top: 40%; right: -220px;
  background: radial-gradient(circle, #3a4a6b, transparent 70%); opacity: .22; }
.bg-noise {
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #1a1408; box-shadow: 0 8px 30px -8px var(--accent-dk);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px var(--accent); }
.btn--ghost { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); }

/* =========== NAV =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,11,0.72); backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-mark {
  width: 36px; height: 36px; border-radius: 9px; display: block; object-fit: cover;
}
.nav__logo-text { font-family: var(--font-head); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.nav__logo-text span { color: var(--accent); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 15px; color: var(--muted); transition: color .25s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex; align-items: center; gap: 4px; background: none; border: none;
  color: var(--muted); font-family: var(--font-head); font-size: 14px; cursor: pointer; font-weight: 500;
}
.lang-toggle__opt { padding: 2px 4px; transition: color .25s; }
.lang-toggle__opt.is-active { color: var(--accent); }
.lang-toggle__sep { opacity: .4; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); transition: .3s var(--ease); border-radius: 2px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========== HERO =========== */
.hero {
  min-height: 88vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 30px; position: relative;
}
.hero__inner { text-align: center; max-width: 900px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px;
  background: var(--surface); font-size: 14px; color: var(--muted); margin-bottom: 28px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); position: relative; }
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(.8); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }

.hero__title { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; margin-bottom: 24px; text-wrap: balance; }
.hero__title .grad { white-space: nowrap; }
.hero__nowrap { white-space: nowrap; }
.accent-underline { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 660px; margin: 0 auto 38px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 16px; }
.stars--sm { font-size: 13px; letter-spacing: 1px; }

/* =========== MARQUEE =========== */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden; background: var(--bg-2); }
.marquee__track { display: flex; gap: 28px; white-space: nowrap; width: max-content;
  font-family: var(--font-head); font-size: clamp(1.1rem, 2.4vw, 1.6rem); color: var(--muted); font-weight: 500;
  animation: marquee 28s linear infinite; }
.marquee__track .dot { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========== SECTIONS =========== */
.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section__tag {
  display: inline-block; font-family: var(--font-head); font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px;
}
.section__title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.section__lead { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.15rem); }
.results-videos-caption { color: var(--muted); font-size: .95rem; text-align: center; }

/* =========== CARDS (services) =========== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 70px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; transition: transform .4s var(--ease), border-color .4s, background .4s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(255,167,37,.12), transparent 60%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,167,37,.35); }
.card:hover::before { opacity: 1; }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 18px;
  border-radius: 14px; background: linear-gradient(160deg, rgba(255,167,37,.15), rgba(255,167,37,.02));
  border: 1px solid rgba(255,167,37,.3); color: var(--accent); transition: background .3s, border-color .3s; }
.card:hover .card__icon { background: linear-gradient(160deg, rgba(255,167,37,.25), rgba(255,167,37,.04)); border-color: rgba(255,167,37,.5); }
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.2rem; margin-bottom: 10px; }
.card__text { color: var(--muted); font-size: .98rem; }

/* =========== NICHES =========== */
.niches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.niche { padding: 34px 30px; border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), transparent); transition: border-color .4s, transform .4s var(--ease); }
.niche:hover { border-color: rgba(255,167,37,.35); transform: translateY(-4px); }
.niche h4 { font-size: 1.35rem; margin-bottom: 10px; }
.niche p { color: var(--muted); font-size: 1rem; }

/* =========== STATS =========== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.stat { text-align: center; padding: 40px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem);
  background: linear-gradient(120deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--muted); font-size: .95rem; margin-top: 6px; }

/* =========== REVIEWS =========== */
.reviews__rating { display: inline-flex; align-items: center; gap: 16px; margin-top: 22px; }
.reviews__score { font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: var(--accent); }
.reviews__link { font-size: 14px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { padding: 28px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  transition: transform .4s var(--ease), border-color .4s; }
.review:hover { transform: translateY(-4px); border-color: var(--border); }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; position: relative; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; object-position: center; background: #fff;
  border: 1px solid var(--border); }
.review__name { font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.review__role { font-size: .8rem; color: var(--accent); margin-bottom: 2px; }
.review__g { width: 18px; height: 18px; position: absolute; top: 0; right: 0; }
.review__text { color: var(--muted); font-size: .98rem; }

/* =========== PROCESS STEPS =========== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 34px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  position: relative; transition: transform .4s var(--ease), border-color .4s; }
.step:hover { transform: translateY(-5px); border-color: rgba(255,167,37,.3); }
.step__num { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--accent);
  border: 1px solid rgba(255,167,37,.4); margin-bottom: 18px; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .96rem; }

/* =========== BOOKING =========== */
.booking__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start;
  background: var(--surface); border: 1px solid var(--border); border-radius: 26px; padding: 46px; }
.booking__copy .section__tag { margin-bottom: 14px; }
.booking__copy .section__title { font-size: clamp(1.8rem, 3vw, 2.6rem); text-align: left; }
.booking__copy .section__lead { text-align: left; margin-bottom: 24px; }
.booking__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking__list li { color: var(--text); font-size: 1rem; }
.booking__widget { position: relative; min-height: 1050px; border-radius: var(--radius); overflow: hidden;
  background: var(--bg); border: 1px solid var(--border); }
.calendly-inline-widget { overflow-y: hidden !important; color-scheme: light; }
.calendly-inline-widget iframe { border-radius: var(--radius); }
.booking__fallback { position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 30px; }
.booking__fallback-icon { font-size: 40px; }
.booking__fallback p { color: var(--muted); max-width: 300px; }

/* =========== FORM =========== */
.form { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; color: var(--muted); font-family: var(--font-head); }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; color: var(--text); font-family: var(--font-body); font-size: 15px; transition: border-color .25s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field select option { background: var(--bg-2); }
.phone-input { position: relative; width: 100%; }
.phone-input__prefix { position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 15px; color: var(--muted); pointer-events: none; }
.phone-input input { width: 100%; box-sizing: border-box; padding-left: 66px; }
.form .btn { align-self: flex-start; }
.form__note { font-size: 13px; color: var(--muted); }

/* =========== OPT-IN (page Ressources gratuites) =========== */
.optin { padding: 140px 0 100px; }
.optin__vsl { max-width: 820px; margin: 0 auto 64px; display: flex; flex-direction: column; align-items: center; }
.optin__vsl-cta { margin-top: 26px; }
.optin__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.optin__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12; margin: 16px 0 18px; }
.optin__lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 26px; }
.optin__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.optin__list li { font-size: 1.02rem; color: var(--text); }

.optin__mock { position: relative; max-width: 340px; margin: 0 auto; padding: 14px 30px 30px 14px; }
.optin__mock-page {
  position: absolute; inset: 14px 30px 30px 14px; border-radius: 14px;
  background: #f3efe6; border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.optin__mock-page--1 { transform: rotate(6deg) translate(10px, 8px); }
.optin__mock-page--2 { background: #e5e0d3; transform: rotate(11deg) translate(20px, 16px); }
.optin__mock-cover {
  position: relative;
  width: 100%; aspect-ratio: 0.77; border-radius: 14px; padding: 36px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(155deg, var(--accent-2) 0%, var(--accent) 55%, var(--accent-dk) 100%);
  border: 1px solid var(--border); box-shadow: 0 30px 70px -25px rgba(0,0,0,.7);
  transform: rotate(-3deg);
}
.optin__mock-body { position: relative; }
.optin__mock-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; color: #1a1408; margin-bottom: 18px; }
.optin__mock-eyebrow .pulse-dot { width: 6px; height: 6px; background: #1a1408; }
.optin__mock-eyebrow .pulse-dot::after { display: none; }
.optin__mock-title { font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; line-height: 1.28;
  color: #1a1408; }
.optin__mock-title b { color: #fff; font-weight: 800; }
.optin__mock-brand-big { position: relative; display: flex; justify-content: center; }
.optin__mock-brand-big img { width: 100%; max-width: 220px; height: auto; display: block; filter: brightness(0) invert(1); }

.optin__form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 40px 34px; }
.optin__form-title { font-size: 1.4rem; margin-bottom: 8px; }
.optin__form-sub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.optin__form-card .form { max-width: none; }
.optin__submit { width: 100%; justify-content: center; }
.optin__email-note { font-size: 13.5px; color: var(--accent); background: rgba(255,167,37,.08);
  border: 1px solid rgba(255,167,37,.25); border-radius: var(--radius-sm); padding: 10px 14px; }

@media (max-width: 860px) {
  .optin { padding: 120px 0 70px; }
  .optin__inner { grid-template-columns: 1fr; gap: 40px; }
  .optin__form-card { position: static; }
}

/* ---- Placeholder VSL (page Merci) ---- */
.video-card__player--placeholder {
  aspect-ratio: 9/16; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; background: linear-gradient(160deg, var(--bg-2), #000); border: 1px dashed var(--border);
  padding: 30px; text-align: center;
}
.video-card__placeholder-play { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,167,37,.15); border: 1px solid rgba(255,167,37,.4); color: var(--accent); font-size: 20px; }
.video-card__placeholder-label { color: var(--muted); font-size: .92rem; max-width: 260px; }

/* =========== FOOTER =========== */
.footer { border-top: 1px solid var(--border); padding: 64px 0 30px; background: var(--bg-2); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; margin-bottom: 44px; }
.footer__brand p { color: var(--muted); margin-top: 16px; max-width: 280px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 6px; }
.footer__col a { color: var(--muted); font-size: 15px; transition: color .25s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { padding-top: 24px; border-top: 1px solid var(--border); font-size: 14px; color: var(--muted); }

/* ---- Page légale (politique de confidentialité) ---- */
.legal-content { color: var(--text); line-height: 1.7; }
.legal-content h2 { font-size: 1.35rem; margin: 0 0 14px; padding-top: 44px; }
.legal-content h2:first-child { padding-top: 0; }
.legal-content p { color: var(--muted); margin-bottom: 16px; }
.legal-content ul { color: var(--muted); margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--accent); }
.legal-content strong { color: var(--text); }

/* =========== REVEAL ANIMATION =========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========== RESPONSIVE =========== */
@media (max-width: 980px) {
  .cards, .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .niches, .reviews__grid { grid-template-columns: 1fr; }
  .booking__inner { grid-template-columns: 1fr; padding: 32px; }
  .booking__copy { text-align: center; }
  .booking__copy .section__title, .booking__copy .section__lead { text-align: center; }
  .booking__list { align-items: center; text-align: center; }
  .calendly-inline-widget { min-width: 0 !important; width: 100% !important; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .booking__inner { padding: 20px; }
  .hero__title { font-size: 1.5rem; }
}
@media (max-width: 680px) {
  .nav__links { position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(10,10,11,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s; }
  .nav__links.is-open { max-height: 360px; padding: 16px 24px 24px; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav__burger { display: flex; }
  .nav .btn--sm { display: none; }
  .cards, .stats, .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  #reviews .section__title { font-size: 1.5rem; white-space: nowrap; }
  .section { padding: 80px 0; }
  .hero { padding: 110px 0 24px; min-height: auto; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 420px) {
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   MULTI-PAGES : composants additionnels
   ========================================================= */

/* ---- Nav : état actif ---- */
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { width: 100%; }

/* ---- Page hero (pages internes) ---- */
.page-hero { padding: 150px 0 40px; text-align: center; }
.page-hero__title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; margin: 16px auto 18px; max-width: 900px; }
.page-hero__sub { color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.2rem); max-width: 640px; margin: 0 auto; }

/* ---- Filtres portfolio ---- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter { font-family: var(--font-head); font-size: 14px; font-weight: 500; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px;
  cursor: pointer; transition: color .25s, border-color .25s, background .25s; }
.filter:hover { color: var(--text); border-color: var(--accent); }
.filter.is-active { color: #1a1408; background: linear-gradient(120deg, var(--accent-2), var(--accent)); border-color: transparent; }

/* ---- Grille de réalisations (vidéos) ---- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); transition: transform .4s var(--ease), border-color .4s; }
.work:hover { transform: translateY(-6px); border-color: rgba(255,167,37,.4); }
.work__thumb { aspect-ratio: 16 / 10; display: grid; place-items: center; position: relative; }
.work__thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5)); }
.work__badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--font-head);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #fff;
  padding: 5px 10px; border-radius: 100px; background: rgba(11,10,8,.55); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25); }
.work__play { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(11,10,8,.55); color: #fff; font-size: 18px; padding-left: 4px; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.35); position: relative; z-index: 1; transition: transform .3s var(--ease), background .3s; }
.work:hover .work__play { transform: scale(1.1); background: var(--accent); color: #1a1408; }
.work__meta { padding: 18px 20px; }
.work__cat { font-family: var(--font-head); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }
.work__title { font-size: 1.08rem; margin-top: 6px; }
.work-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 30px; font-style: italic; }
.work.is-hidden { display: none; }
.video-card.is-hidden { display: none; }

/* Dégradés placeholder pour vignettes */
.work__thumb--1 { background: linear-gradient(135deg, #2a1e0a, #ffa725); }
.work__thumb--2 { background: linear-gradient(135deg, #1a2436, #3a4a6b); }
.work__thumb--3 { background: linear-gradient(135deg, #3a1010, #b83232); }
.work__thumb--4 { background: linear-gradient(135deg, #10261a, #2e8b57); }
.work__thumb--5 { background: linear-gradient(135deg, #2a1e0a, #ffc33e); }
.work__thumb--6 { background: linear-gradient(135deg, #241533, #6b3a8b); }
.work__thumb--7 { background: linear-gradient(135deg, #0a2436, #2589b8); }
.work__thumb--8 { background: linear-gradient(135deg, #333, #666); }
.work__thumb--9 { background: linear-gradient(135deg, #2a1e0a, #ce7500); }

/* ---- CTA band ---- */
.cta-band { text-align: center; padding: 60px 30px; border: 1px solid var(--border); border-radius: 26px;
  background: radial-gradient(600px circle at 50% 0%, rgba(255,167,37,.14), transparent 60%), var(--surface); }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; font-size: 1.08rem; }

/* ---- Bloc réseau (sous les forfaits) ---- */
.network-box { max-width: 760px; margin: 46px auto 0; padding: 30px 34px; border: 1px solid rgba(255,167,37,.3);
  border-radius: var(--radius); background: linear-gradient(160deg, rgba(255,167,37,.09), transparent); text-align: center; }
.network-box__title { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; margin-bottom: 10px; color: var(--accent); }
.network-box__text { color: var(--text); font-size: .98rem; line-height: 1.65; }

/* ---- Services complémentaires (mise en marché à la carte) ---- */
.addons { max-width: 980px; margin: 64px auto 0; }
.addons__head { text-align: center; margin-bottom: 34px; }
.addons__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 12px; }
.addons__lead { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.addons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.addon-card { position: relative; border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius); background: #ffffff;
  padding: 30px 26px; display: flex; flex-direction: column; text-align: center; box-shadow: 0 24px 50px -28px rgba(0,0,0,.5); }
.addon-card--featured { border-color: var(--accent); background: #ffffff; }
.addon-card__name { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; color: #1a1408; }
.addon-card__price { font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; color: var(--accent-dk); margin-bottom: 18px; }
.addon-card .plan__included, .addon-card .plan__features { text-align: left; }
.addon-card .plan__included { color: #8a8175; }
.addon-card .plan__features li { color: #2a2620; }
.addon-card .btn { align-self: center; }
.addon-card .btn--ghost { background: #fff; border-color: rgba(0,0,0,.15); color: #1a1408; }
.addon-card .btn--ghost:hover { border-color: var(--accent); }
.addons__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 22px; }

/* ---- Page mordus (QR) ---- */
.mordus__title { font-size: clamp(1.3rem, 5.5vw, 1.7rem); white-space: nowrap; }
.mordus__sub { text-align: justify; }
.mordus__bonus { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--accent);
  background: rgba(255,167,37,.1); border: 1px solid rgba(255,167,37,.3); border-radius: var(--radius-sm);
  padding: 12px 16px; margin-bottom: 24px; text-align: center; }

/* ---- Forfaits ---- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  padding: 36px 30px; display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease), border-color .4s; }
.plan:hover { transform: translateY(-5px); border-color: rgba(255,167,37,.35); }
.plan--featured { border-color: var(--accent); background: radial-gradient(500px circle at 50% 0%, rgba(255,167,37,.12), transparent 60%), var(--surface); }
.plan__eyebrow { font-family: var(--font-head); font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--accent); margin-bottom: 10px; }
.plan--blue .plan__eyebrow, .plan--blue .plan__flow strong { color: var(--accent-blue); }
.plan--blue:hover { border-color: rgba(91,155,255,.35); }
.plan--blue .plan__features li::before { color: var(--accent-blue); }
.plan--green .plan__eyebrow, .plan--green .plan__flow strong { color: var(--accent-green); }
.plan--green:hover { border-color: rgba(62,207,142,.35); }
.plan--green .plan__features li::before { color: var(--accent-green); }
.plan--featured .plan__features li::before { color: var(--accent); }
.plan__hook { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; line-height: 1.15;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 16px; }
.plan__flow { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px; font-family: var(--font-head);
  font-size: 11.5px; font-weight: 600; color: var(--muted); border: 1px solid var(--border); border-radius: 100px;
  padding: 7px 14px; margin-bottom: 22px; padding-bottom: 7px; }
.plan__flow strong { color: var(--accent); font-weight: 700; }
.plan__hook + .plan__flow { margin-top: -4px; }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--font-head); font-size: 12px; font-weight: 600; color: #1a1408; padding: 6px 16px; border-radius: 100px;
  background: linear-gradient(120deg, var(--accent-2), var(--accent)); }
.plan__name { font-size: 1.5rem; margin-bottom: 8px; }
.plan__desc { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.plan__price { margin-bottom: 22px; }
.plan__amount { font-family: var(--font-head); font-size: 2rem; font-weight: 700; }
.plan__included { font-family: var(--font-head); font-weight: 600; font-size: .85rem; text-transform: uppercase;
  letter-spacing: .5px; color: var(--muted); margin-bottom: 14px; }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__features li { position: relative; padding-left: 28px; color: var(--text); font-size: .97rem; }
.plan__features li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.plan .btn { width: 100%; }

/* ---- FAQ ---- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); padding: 0 22px; }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--font-head); font-weight: 500;
  font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; color: var(--accent); font-size: 1.4rem; transition: transform .3s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 22px; font-size: .98rem; }

/* ---- Bandeau logos clients — défilement infini (accueil) ---- */
.logos { padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); overflow: hidden; }
.logos__label { text-align: center; font-family: var(--font-head); font-size: 12px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted); margin-bottom: 16px; }
.logos__viewport { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos__track { display: flex; align-items: center; gap: 70px; width: max-content; animation: logos-scroll 45s linear infinite; }
.logo { flex: 0 0 auto; min-height: 104px; display: flex; align-items: center; justify-content: center; }
.logo img { height: 48px; width: auto; max-width: 320px; object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1); opacity: .55; transition: opacity .3s; }
.logo:hover img { opacity: 1; }
/* Taille par logo — normalise la grandeur VISIBLE (marges internes très variables) */
.logo--ryan img    { height: 70px; }
.logo--garoy img   { height: 90px; }
.logo--roxan img   { height: 100px; max-width: 660px; transform: scale(1.7); transform-origin: center; }
.logo--zen img     { height: 50px; }
.logo--maelle img  { height: 90px; }
.logo--jb2 img     { height: 100px; }
.logo--kenfack img { height: 58px; }
.logo--mordus img  { height: 42px; }
.logo--jblm img    { height: 92px; }
.logo--remax img   { height: 60px; }
@keyframes logos-scroll { to { transform: translateX(-50%); } }

/* ---- Aperçus accueil (liens vers pages) ---- */
.preview-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-family: var(--font-head);
  font-weight: 500; color: var(--accent); transition: gap .3s; }
.preview-cta:hover { gap: 14px; }
.niche__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--font-head);
  font-size: .92rem; font-weight: 500; color: var(--accent); transition: gap .3s; }
.niche__link:hover { gap: 12px; }

/* ---- Vidéos à la une (portfolio) : lecteurs intégrés jouables ---- */
.videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 360px)); gap: 34px; justify-content: center; }
.testimonial-pair { display: flex; flex-direction: column; gap: 20px; }
.video-card__player { width: 100%; border-radius: 18px; overflow: hidden; background: #000;
  border: 1px solid var(--border); box-shadow: 0 24px 60px -22px rgba(0,0,0,.7); }
.video-card__player iframe { width: 100%; height: 640px; border: 0; display: block; }
.video-card__player--native { height: 640px; }
.video-card__player--native video { width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }
.video-card__player--landscape { height: auto; aspect-ratio: 16 / 9; }
.video-card__player--landscape video, .video-card__player--landscape iframe { height: 100%; }
.video-card__meta { padding: 16px 4px 0; }
.video-card__meta .work__cat { font-family: var(--font-head); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }
.video-card__title { font-size: 1.15rem; margin-top: 6px; }

/* ---- Lecteur vidéo (modal) ---- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.is-open { display: flex; animation: modal-in .25s var(--ease); }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(6px); cursor: pointer; }
.modal__dialog { position: relative; z-index: 1; width: 100%; max-width: 400px; }
.modal__frame { position: relative; width: 100%; height: 80vh; max-height: 720px; background: #000;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal__close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 24px; line-height: 1;
  cursor: pointer; transition: background .25s, transform .25s; display: grid; place-items: center; }
.modal__close:hover { background: var(--accent); color: #1a1408; transform: rotate(90deg); }
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 480px) { .modal__frame { height: 78vh; } }

/* ---- Carte de confirmation (popup opt-in) ---- */
.success-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 44px 34px; text-align: center; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.success-card__icon { font-size: 40px; margin-bottom: 16px; }
.success-card__title { font-size: 1.4rem; margin-bottom: 10px; }
.success-card__text { color: var(--muted); font-size: .98rem; line-height: 1.6; }
.success-card__cta { display: flex; width: 100%; margin-top: 24px; white-space: normal; text-align: center; line-height: 1.3; }
.phone-modal__number { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.7rem;
  color: var(--accent); margin-top: 18px; }
.phone-modal__number:hover { text-decoration: underline; }

/* ---- Responsive multi-pages ---- */
@media (max-width: 980px) {
  .work-grid, .pricing, .addons__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .work-grid, .pricing, .addons__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 30px; }
}
