/* ================================================================
   TRAJECTOIRE FINANCE — style.css
   Premium · Minimaliste · Mobile-first
   Palette : #0A0A0A · #F5F5F5 · #CBB26A
   ================================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ===== TOKENS ===== */
:root {
  --bg:          #0A0A0A;
  --bg2:         #111111;
  --bg3:         #181818;
  --text:        #F5F5F5;
  --muted:       rgba(245,245,245,.50);
  --gold:        #CBB26A;
  --gold-lt:     #DCC98B;
  --gold-dim:    rgba(203,178,106,.12);
  --gold-border: rgba(203,178,106,.28);
  --border:      rgba(245,245,245,.07);
  --wa:          #25D366;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1100px;
  --px:   clamp(1.25rem, 5vw, 3rem);
  --r:    100px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ===== SÉLECTION & FOCUS ===== */
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ===== BARRE LECTURE ===== */
.reading-bar {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 1000;
  transition: width .1s linear;
}

/* ================================================================
   HEADER / NAV
================================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding-block: .75rem;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.header.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
  padding-block: .5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 80px; width: auto; max-width: 240px; object-fit: contain; }
.nav__logo-text {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .01em;
  align-items: center;
}
.gold { color: var(--gold); }

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: .125rem;
}
.nav__link {
  display: block;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .03em;
  padding: .45rem .875rem;
  border-radius: var(--r);
  color: var(--muted);
  transition: color .25s var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--text); }
.nav__cta {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 500;
}
.nav__cta:hover, .nav__cta:focus-visible {
  background: var(--gold);
  color: var(--bg);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .28s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(203,178,106,.28);
}
.btn-gold:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  border: 1.5px solid var(--wa);
}
.btn-wa:hover, .btn-wa:focus-visible {
  background: #1fba58;
  border-color: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.28);
}
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1rem; }
.full-w { width: 100%; }

/* ================================================================
   SECTIONS COMMUNES
================================================================ */
.section { padding-block: clamp(4rem, 8vw, 7rem); }

.eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .625rem;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 1.0625rem; color: var(--muted); max-width: 560px; }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header .section-sub { margin-inline: auto; }

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

/* délais en cascade pour les grilles */
.methode__grid  .reveal:nth-child(2) { transition-delay: .12s; }
.methode__grid  .reveal:nth-child(3) { transition-delay: .24s; }
.offres__grid   .reveal:nth-child(2) { transition-delay: .12s; }
.offres__grid   .reveal:nth-child(3) { transition-delay: .24s; }
.temo__grid     .reveal:nth-child(2) { transition-delay: .12s; }
.temo__grid     .reveal:nth-child(3) { transition-delay: .24s; }
.pour-qui__list .reveal:nth-child(n) { transition-delay: calc(.08s * var(--i,0)); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(8rem, 15vw, 11rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

/* Background décoratif */
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .45;
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(circle at 60% 40%, rgba(203,178,106,.07) 0%, transparent 65%);
  border-radius: 50%;
}
.hero__lines {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border) 50%, transparent);
  opacity: .6;
}
.hero__line:nth-child(1) { left: 25%; }
.hero__line:nth-child(2) { left: 50%; }
.hero__line:nth-child(3) { left: 75%; }

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-block: .75rem 1.5rem;
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Stats hero */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: .1rem; }
.stat__n {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat__l { font-size: .75rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.stat__sep { width: 1px; height: 2.5rem; background: var(--border); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 18px;
  z-index: 1;
  transition: border-color .25s;
}
.scroll-hint:hover { border-color: var(--gold-border); }
.scroll-hint span {
  display: block;
  width: 4px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-6px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ================================================================
   ACCROCHE
================================================================ */
.accroche {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.accroche__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.accroche__quote {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
}
.accroche__text .section-title { margin-bottom: 1rem; }
.accroche__text p { color: var(--muted); max-width: 480px; }
.accroche__text p + p { margin-top: .75rem; }

/* ================================================================
   MÉTHODE
================================================================ */
.methode { background: var(--bg2); }
.methode__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card--pilier {
  background: var(--bg2);
  padding: 2.5rem;
  position: relative;
  transition: background .3s var(--ease);
}
.card--pilier:hover { background: var(--bg3); }
.card__num {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color .3s;
}
.card--pilier:hover .card__num { color: var(--gold-dim); }
.card__icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.card__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .875rem;
}
.card__text { font-size: .9375rem; color: var(--muted); line-height: 1.7; }

/* ================================================================
   POUR QUI
================================================================ */
.pour-qui { background: var(--bg); }
.pour-qui__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pour-qui__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .3s, transform .3s;
}
.pour-qui__item:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
}
.check {
  color: var(--gold);
  font-size: .875rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.pour-qui__item strong { color: var(--text); font-weight: 500; }
.pour-qui__item div { color: var(--muted); font-size: .9375rem; }

/* ================================================================
   OFFRES
================================================================ */
.offres { background: var(--bg2); }
.offres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.offre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s, transform .3s;
}
.offre:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.offre--featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(203,178,106,.04) 0%, var(--bg) 60%);
  transform: none;
  box-shadow: 0 0 0 1px var(--gold-border), 0 20px 50px rgba(0,0,0,.4);
}
.offre--featured:hover { transform: translateY(-4px); }

.offre__tag {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--border);
  border: 1px solid var(--border);
  padding: .3rem .75rem;
  border-radius: var(--r);
  width: fit-content;
}
.offre__tag--gold {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: var(--gold-border);
}
.offre__title {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 400;
}
.offre__price { font-size: .875rem; color: var(--muted); }
.offre__desc { font-size: .9375rem; color: var(--muted); line-height: 1.65; flex-grow: 0; }
.offre__list {
  display: flex; flex-direction: column; gap: .625rem;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-grow: 1;
}
.offre__list li {
  font-size: .9rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}
.offre__list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: .8rem;
}
.offre .btn { margin-top: auto; }

/* ================================================================
   TÉMOIGNAGES
================================================================ */
.temoignages { background: var(--bg); }
.temo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.temo {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color .3s;
}
.temo:hover { border-color: var(--gold-border); }
.temo__stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.temo blockquote p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}
.temo__author {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.temo__av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.temo__author strong { display: block; font-size: .9rem; font-weight: 500; }
.temo__author span { font-size: .8rem; color: var(--muted); }

/* ================================================================
   FAQ
================================================================ */
.faq { background: var(--bg2); }
.faq__inner .section-header { margin-bottom: 2.5rem; }
.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq__item:has(.faq__q[aria-expanded="true"]),
.faq__item:hover {
  border-color: var(--gold-border);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .9375rem;
  font-weight: 400;
  color: var(--text);
  transition: color .25s;
}
.faq__q:hover { color: var(--gold); }
.faq__plus {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq__q[aria-expanded="true"] .faq__plus { transform: rotate(45deg); }
.faq__a {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq__a[hidden] { display: none; }

/* ================================================================
   CTA FINAL
================================================================ */
.cta-final {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(203,178,106,.08) 0%, transparent 70%),
    var(--bg);
  z-index: 0;
}
.cta-final__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-final__title {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
}
.cta-final__title em { font-style: italic; color: var(--gold); }
.cta-final__sub { font-size: 1.0625rem; color: var(--muted); }
.cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: .75rem;
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-block: 3rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__logo {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: .625rem;
}
.footer__brand p { font-size: .875rem; color: var(--muted); }
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
}
.footer__nav a {
  font-size: .875rem;
  color: var(--muted);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__legal { text-align: right; }
.footer__legal p { font-size: .8rem; color: var(--muted); }
.footer__legal p + p { margin-top: .375rem; }
.footer__legal a { color: var(--muted); transition: color .2s; }
.footer__legal a:hover { color: var(--gold); }

/* ================================================================
   FAB WHATSAPP
================================================================ */
.fab-wa {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 56px; height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 800;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), opacity .4s;
  opacity: 0;
  pointer-events: none;
}
.fab-wa.visible { opacity: 1; pointer-events: auto; }
.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.fab-wa:active { transform: scale(.96); }

/* ================================================================
   RESPONSIVE — TABLET  (max 900px)
================================================================ */
@media (max-width: 900px) {
  .methode__grid,
  .offres__grid,
  .temo__grid {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    gap: 1.25rem;
  }
  .card--pilier {
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .accroche__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__legal { text-align: left; }
  .footer__nav ul { align-items: flex-start; }
}

/* ================================================================
   RESPONSIVE — MOBILE  (max 640px)
================================================================ */
@media (max-width: 640px) {
  /* NAV mobile */
  .burger { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0; top: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 850;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
  }
  .nav__menu.open {
    opacity: 1;
    visibility: visible;
  }
  .nav__link {
    font-size: 1.25rem;
    color: var(--text);
    padding: .75rem 1.5rem;
  }
  .nav__cta {
    font-size: 1.1rem;
    padding: .875rem 2rem;
  }

  /* HERO mobile */
  .hero { padding-block: 6rem 4rem; min-height: 100svh; }
  .hero__h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 1.25rem; }
  .stat__sep { display: none; }
  .hero__line { display: none; }

  /* Accroche */
  .accroche__quote { padding-left: 1.25rem; font-size: 1.1rem; }

  /* Piliers */
  .card--pilier { padding: 1.75rem 1.5rem; }
  .card__num { font-size: 2.5rem; }

  /* Pour qui */
  .pour-qui__item { padding: 1.25rem 1.25rem; flex-direction: column; gap: .75rem; }

  /* Offres */
  .offre { padding: 1.75rem 1.5rem; }

  /* FAQ */
  .faq__q { padding: 1rem 1.25rem; font-size: .9rem; }
  .faq__a { padding: 0 1.25rem 1rem; }

  /* CTA */
  .cta-final__btns { flex-direction: column; align-items: stretch; }
  .cta-final__btns .btn { width: 100%; }

  /* Footer */
  .footer__inner { gap: 1.75rem; }

  /* FAB */
  .fab-wa { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ================================================================
   UTILITAIRES
================================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Print minimal */
@media print {
  .header, .fab-wa, .reading-bar, .scroll-hint { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ================================================================
   INSTAGRAM / SOCIAL LINKS
================================================================ */
.footer__social {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--muted);
  transition: color .25s var(--ease);
  padding: .375rem 0;
}
.social-link:hover, .social-link:focus-visible {
  color: var(--gold);
}

/* Lien Instagram dans CTA final */
.cta-social {
  margin-top: .5rem;
}
.cta-social__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted);
  transition: color .25s var(--ease);
  padding: .375rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.cta-social__link:hover, .cta-social__link:focus-visible {
  color: var(--gold);
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

/* Instagram gradient couleurs officielles */
.social-link:hover, .social-link:focus-visible {
  color: transparent;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-link svg {
  transition: fill .25s var(--ease);
  flex-shrink: 0;
}
.social-link:hover svg, .social-link:focus-visible svg {
  fill: url(#ig-gradient);
}

.cta-social__link:hover, .cta-social__link:focus-visible {
  color: transparent;
  background: linear-gradient(45deg, rgba(240,148,51,.1), rgba(188,24,136,.1));
  border-color: #dc2743;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* Dégradé SVG Instagram permanent */
.ig-icon {
  fill: url(#ig-grad) #e1306c;
}

/* Logo image dans le footer */
.footer__logo-img {
  display: inline-block;
  margin-bottom: .75rem;
}
.footer__logo-img img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(1);
  transition: opacity .25s;
}
.footer__logo-img:hover img { opacity: .85; }

/* Social links — espacement et hover Facebook */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.social-link svg { flex-shrink: 0; transition: transform .25s; }
.social-link:hover svg { transform: scale(1.15); }

.cta-social {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.cta-social__link svg { flex-shrink: 0; }
