/* ─────────────────────────────────────────────────────────────────────
   index.css — Styles spécifiques homepage (mobile-first)
   Repose sur base.css pour variables, reset, nav, boutons, layout.
   ───────────────────────────────────────────────────────────────────── */

/* ─── Hero ────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 0 60px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px)  { #hero { padding: 120px 0 70px; } }
@media (min-width: 1100px) { #hero { padding: 130px 0 80px; } }

.hero-img { display: none; }
@media (min-width: 800px) {
  .hero-img {
    display: block;
    position: absolute; top: 0; left: 0; right: 0; height: min(100%, 63vw);
    pointer-events: none; z-index: 0;
  }
  .hero-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: right center;
    display: block;
  }
  .hero-img::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, var(--bg) 0%, transparent 46%);
  }
  .hero-img::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 14%, transparent 58%, var(--bg) 92%);
  }
}

#hero > .wrap { position: relative; z-index: 1; }
@media (min-width: 800px) {
  #hero > .wrap { padding-right: min(36vw, 460px); }
}
#hero > .hero-foot { position: absolute; z-index: 1; }

.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(17,17,17,.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(0,0,0,.5) 0%, transparent 80%);
}
@media (min-width: 768px) { .hero-dots { background-size: 28px 28px; } }

.hero-line { display: none; }
@media (min-width: 800px) {
  .hero-line {
    display: block;
    position: absolute; top: 0; right: 160px; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent 10%, var(--br) 40%, var(--br) 60%, transparent 90%);
    pointer-events: none;
  }
}

.hero-over {
  font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--tx2); margin-bottom: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0;
}
.hero-over i { margin: 0 10px; opacity: .35; font-style: normal; }
@media (min-width: 768px) {
  .hero-over { font-size: 11px; margin-bottom: 32px; }
  .hero-over i { margin: 0 14px; }
}

.hero-block { max-width: 100%; }
@media (min-width: 800px) { .hero-block { max-width: 640px; } }

.hero-h1 {
  font-family: var(--ff-d);
  font-size: clamp(44px, 11vw, 72px);
  font-weight: 300; line-height: 1.0; letter-spacing: -.035em;
  margin-bottom: 28px;
  font-optical-sizing: auto;
}
@media (min-width: 768px)  { .hero-h1 { font-size: clamp(56px, 9vw, 96px); margin-bottom: 32px; } }
@media (min-width: 1100px) { .hero-h1 { font-size: clamp(72px, 8vw, 106px); margin-bottom: 36px; } }

.hero-h1 em {
  font-style: italic; color: var(--ac);
  font-weight: 300;
}
.hero-h1.fi-anim { opacity: 1; transform: none; transition: none; }
.h1-line { display: block; overflow: hidden; }
.h1-line span {
  display: block;
  transform: translateY(110%);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}
.hero-h1.fi-anim .h1-line:nth-child(1) span { transition-delay: .08s; }
.hero-h1.fi-anim .h1-line:nth-child(2) span { transition-delay: .22s; }
.hero-h1.v .h1-line span { transform: translateY(0); }

.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--tx2);
  max-width: 100%; line-height: 1.65; margin-bottom: 36px;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 18px; max-width: 420px; line-height: 1.7; margin-bottom: 52px; }
}

.hero-ctas { display: flex; gap: 14px; align-items: stretch; flex-wrap: wrap; }
.hero-ctas .btn-solid { width: 100%; }
.hero-ctas .btn-ghost { width: 100%; justify-content: center; padding: 12px 18px; border: 1px solid var(--br); border-radius: 3px; }
@media (min-width: 480px) {
  .hero-ctas { gap: 18px; align-items: center; }
  .hero-ctas .btn-solid, .hero-ctas .btn-ghost { width: auto; }
  .hero-ctas .btn-ghost { border: none; padding: 0; }
}
.btn-voice { display: inline-flex; align-items: center; gap: 10px; }

.hero-foot { display: none; }
@media (min-width: 800px) {
  .hero-foot {
    display: block;
    position: absolute; bottom: 36px; left: 0; right: 0;
  }
  .hero-foot .wrap {
    display: flex; gap: 40px; flex-wrap: wrap;
    font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .1em;
    color: var(--tx3); text-transform: uppercase;
  }
}

/* ─── h2 global ──────────────────────────────────────────────────────── */
h2 {
  font-family: var(--ff-d); font-weight: 300;
  line-height: 1.15; letter-spacing: -.025em;
}

/* ─── Problème ──────────────────────────────────────────────────────── */
.pain-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--br-inv); margin-top: 36px;
  border: 1px solid var(--br-inv);
}
.pain-card { background: var(--dk); padding: 32px 24px; transition: transform .25s, background .25s; }
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .pain-card { padding: 40px 32px; }
}
@media (min-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); margin-top: 56px; }
  .pain-card { padding: 44px 40px; }
}
@media (hover: hover) {
  .pain-card:hover { transform: translateY(-3px); background: #1d2b1d; }
}
.pain-q {
  font-family: var(--ff-d); font-size: 19px; font-weight: 300;
  font-style: italic; line-height: 1.45; margin-bottom: 16px;
  opacity: .92;
}
@media (min-width: 768px) { .pain-q { font-size: 21px; margin-bottom: 18px; } }
.pain-p { font-size: 14px; color: rgba(248,247,244,.5); line-height: 1.7; }

.pain-cta {
  margin-top: 32px; padding: 22px 22px;
  background: rgba(248,247,244,.04);
  border: 1px solid var(--br-inv); border-radius: 3px;
  display: flex; flex-direction: column; align-items: stretch;
  gap: 18px;
}
@media (min-width: 600px) {
  .pain-cta {
    flex-direction: row; align-items: center; justify-content: space-between;
    padding: 22px 28px; gap: 24px; flex-wrap: wrap;
  }
}
.pain-cta-text { font-size: 14.5px; color: rgba(248,247,244,.82); flex: 1; min-width: 240px; margin: 0; line-height: 1.55; }
.pain-cta-text strong { color: var(--bg); font-weight: 500; }
.pain-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  background: var(--bg); color: var(--tx); border-radius: 3px;
  font-size: 13.5px; font-weight: 500; white-space: nowrap;
  min-height: 44px;
  transition: opacity .2s, transform .1s;
}
.pain-cta-btn:hover { opacity: .9; }
.pain-cta-btn:active { transform: scale(.985); }

/* ─── Philosophie ───────────────────────────────────────────────────── */
#philosophie .wrap { max-width: 820px; }
.philo-q {
  font-family: var(--ff-d);
  font-size: clamp(22px, 4.5vw, 46px);
  font-weight: 300; line-height: 1.3; letter-spacing: -.02em;
  margin: 36px 0 24px; padding-left: 24px; position: relative;
}
@media (min-width: 768px) {
  .philo-q { margin: 48px 0 32px; padding-left: 36px; line-height: 1.25; }
}
.philo-q::before {
  content: '';
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 3px; background: var(--ac); border-radius: 2px;
}
.philo-p {
  font-size: 15.5px; font-weight: 300; color: var(--tx2);
  line-height: 1.75; padding-left: 24px; max-width: 580px;
}
@media (min-width: 768px) {
  .philo-p { font-size: 17px; line-height: 1.8; padding-left: 36px; }
}

/* ─── Piliers ───────────────────────────────────────────────────────── */
.piliers-g {
  display: grid; grid-template-columns: 1fr;
  gap: 0; border-top: 1px solid var(--br); margin-top: 40px;
}
.pilier {
  padding: 28px 0;
  border-bottom: 1px solid var(--br);
}
.pilier:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .piliers-g { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .pilier {
    padding: 36px 28px;
    border-right: 1px solid var(--br); border-bottom: 1px solid var(--br);
  }
  .pilier:nth-child(2n) { border-right: none; }
  .pilier:first-child { padding-left: 0; }
  .pilier:nth-child(2) { padding-right: 0; }
}
@media (min-width: 1024px) {
  .piliers-g { grid-template-columns: repeat(3, 1fr); margin-top: 56px; }
  .pilier {
    padding: 40px 36px 40px 0;
    border-right: 1px solid var(--br); border-bottom: none;
  }
  .pilier:nth-child(2n) { border-right: 1px solid var(--br); }
  .pilier:last-child  { border-right: none; }
  .pilier:nth-child(2) { padding-right: 36px; }
  .pilier + .pilier { padding-left: 36px; }
  .pilier:first-child { padding-left: 0; padding-right: 36px; }
}
.pilier-n {
  font-family: var(--ff-m); font-size: 11px; color: var(--ac);
  letter-spacing: .1em; margin-bottom: 16px;
}
.pilier-h {
  font-family: var(--ff-d); font-size: 23px; font-weight: 400;
  line-height: 1.2; letter-spacing: -.015em; margin-bottom: 14px;
}
@media (min-width: 768px) { .pilier-h { font-size: 27px; line-height: 1.15; margin-bottom: 16px; } }
.pilier-p { font-size: 14.5px; color: var(--tx2); line-height: 1.7; margin-bottom: 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--ff-m); font-size: 10.5px;
  padding: 4px 9px; border: 1px solid var(--br); border-radius: 2px;
  color: var(--tx2); letter-spacing: .04em;
}

/* ─── RGPD / Self-hosted ────────────────────────────────────────────── */
.rgpd-g {
  display: grid; grid-template-columns: 1fr;
  gap: 36px; align-items: center;
}
@media (min-width: 800px) {
  .rgpd-g { grid-template-columns: 1fr 1fr; gap: 60px; }
}
@media (min-width: 1100px) {
  .rgpd-g { gap: 96px; }
}
.rgpd-h {
  font-family: var(--ff-d);
  font-size: clamp(28px, 6vw, 58px);
  font-weight: 300; letter-spacing: -.025em; line-height: 1.1;
  margin-bottom: 20px;
}
.rgpd-p { font-size: 15.5px; opacity: .82; line-height: 1.75; font-weight: 300; }
@media (min-width: 768px) { .rgpd-p { font-size: 16px; } }
.rgpd-specs { display: grid; gap: 12px; }
.rgpd-spec {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 16px 18px; background: rgba(255,255,255,.1);
  border-radius: 3px;
}
@media (min-width: 480px) {
  .rgpd-spec { flex-direction: row; align-items: flex-start; gap: 16px; padding: 18px 20px; }
}
.rgpd-tag {
  font-family: var(--ff-m); font-size: 10px; letter-spacing: .1em;
  opacity: .6; white-space: nowrap; padding-top: 2px; text-transform: uppercase;
}
.rgpd-txt { font-size: 13.5px; opacity: .88; line-height: 1.55; }

/* ─── Preuves ───────────────────────────────────────────────────────── */
.preuves-g {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--br-inv); border: 1px solid var(--br-inv);
  margin: 36px 0;
}
.preuve { background: var(--dk); padding: 32px 24px; }
@media (min-width: 600px)  { .preuves-g { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .preuves-g { grid-template-columns: repeat(3, 1fr); margin: 56px 0; } .preuve { padding: 44px 40px; } }
@media (min-width: 768px)  { .preuve { padding: 36px 28px; } }

.preuve-n {
  font-family: var(--ff-d);
  font-size: 64px; font-weight: 300; line-height: 1;
  letter-spacing: -.05em; color: var(--ac); margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 4px;
}
@media (min-width: 768px) { .preuve-n { font-size: 80px; margin-bottom: 14px; } }
.preuve-n .cnt { transition: none; }
.preuve-n .suf { font-size: 36px; letter-spacing: -.02em; }
@media (min-width: 768px) { .preuve-n .suf { font-size: 44px; } }
.preuve-lbl { font-size: 14.5px; line-height: 1.55; opacity: .88; margin-bottom: 8px; }
@media (min-width: 768px) { .preuve-lbl { font-size: 15px; } }
.preuve-sub { font-size: 12.5px; opacity: .4; font-family: var(--ff-m); }

.preuves-cta {
  margin-top: 40px; padding: 24px 24px;
  background: rgba(248,247,244,.04);
  border: 1px solid var(--br-inv); border-radius: 3px;
  display: flex; flex-direction: column; align-items: stretch;
  gap: 20px;
}
@media (min-width: 600px) {
  .preuves-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 28px 36px; gap: 28px; flex-wrap: wrap; margin-top: 48px; }
}
@media (min-width: 1024px) { .preuves-cta { margin-top: 56px; } }
.preuves-cta-text {
  font-family: var(--ff-d); font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 300; letter-spacing: -.01em; line-height: 1.4;
  flex: 1; min-width: 240px; margin: 0;
}
.preuves-cta-text em { color: var(--ac); font-style: italic; font-weight: 400; }
.preuves-cta .btn-solid { white-space: nowrap; align-self: stretch; }
@media (min-width: 600px) { .preuves-cta .btn-solid { align-self: auto; } }

.comptes { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--br-inv); }
@media (min-width: 768px) { .comptes { margin-top: 52px; padding-top: 52px; } }
.comptes-lbl {
  font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; opacity: .4; margin-bottom: 20px;
}
.comptes-list { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }
@media (min-width: 768px) { .comptes-list { gap: 18px 40px; } }
.compte-logo {
  height: 18px; width: auto; display: block;
  opacity: .55;
  filter: brightness(0) invert(1);
  transition: opacity .25s ease;
}
@media (min-width: 768px) { .compte-logo { height: 22px; } }
.compte-logo:hover { opacity: .9; }

/* ─── Offres ────────────────────────────────────────────────────────── */
#offres { border-top: 1px solid var(--br); }
.offres-g {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; margin-top: 36px;
}
@media (min-width: 768px)  { .offres-g { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; } }
@media (min-width: 1024px) { .offres-g { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; } }

.offre-card {
  border: 1px solid var(--br); border-radius: 3px; padding: 28px 24px;
  position: relative; transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .offre-card { padding: 36px; } }
@media (hover: hover) {
  .offre-card:hover {
    border-color: rgba(17,17,17,.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(17,17,17,.08);
  }
  .offre-card.ft:hover { border-color: var(--ac); box-shadow: 0 16px 40px rgba(13,110,100,.15); }
}
.offre-card.ft { border-color: var(--ac); }
.offre-badge {
  position: absolute; top: -1px; left: 24px;
  font-family: var(--ff-m); font-size: 9.5px; padding: 4px 12px;
  background: var(--ac); color: #fff; border-radius: 0 0 3px 3px;
  letter-spacing: .1em; text-transform: uppercase;
}
.offre-name {
  font-family: var(--ff-d); font-size: clamp(20px, 4vw, 23px); font-weight: 400;
  letter-spacing: -.015em; margin-bottom: 6px;
}
.offre-del {
  font-family: var(--ff-m); font-size: 11px; color: var(--tx2);
  letter-spacing: .06em; margin-bottom: 24px;
}
.offre-p {
  font-family: var(--ff-d); font-size: 44px; font-weight: 300;
  letter-spacing: -.04em; line-height: 1; margin-bottom: 4px;
}
@media (min-width: 768px) { .offre-p { font-size: 52px; } }
.offre-ht { font-size: 13px; color: var(--tx2); margin-bottom: 28px; }
.offre-ul { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.offre-ul li {
  font-size: 13.5px; color: var(--tx2); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.offre-ul li::before { content: '—'; position: absolute; left: 0; color: var(--ac); }
.offre-btn {
  margin-top: 28px; width: 100%; padding: 13px 12px;
  border: 1px solid var(--br); border-radius: 3px;
  font-size: 13.5px; text-align: center; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.offre-btn:hover { background: var(--tx); color: var(--bg); border-color: var(--tx); }
.offre-btn-cal {
  margin-top: 10px;
  background: var(--ac); color: #fff; border-color: var(--ac);
  cursor: pointer; font: inherit;
}
.offre-btn-cal:hover { background: #0a5a52; border-color: #0a5a52; color: #fff; }
.offre-card.ft .offre-btn { background: var(--ac); color: #fff; border-color: var(--ac); }
.offre-card.ft .offre-btn:hover { background: #0a5a52; border-color: #0a5a52; }
.tjm { margin-top: 32px; text-align: center; font-size: 14px; color: var(--tx2); }
.tjm strong { color: var(--tx); font-weight: 500; }

/* ─── Profil ────────────────────────────────────────────────────────── */
#profil { border-top: 1px solid var(--br); }
.profil-g {
  display: grid; grid-template-columns: 1fr;
  gap: 36px; align-items: start;
}
@media (min-width: 768px) {
  .profil-g { grid-template-columns: 1fr 320px; gap: 48px; }
}
@media (min-width: 1024px) { .profil-g { grid-template-columns: 1fr 400px; gap: 80px; } }
.profil-h2 {
  font-family: var(--ff-d);
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 300; letter-spacing: -.025em;
  margin-bottom: 20px; line-height: 1.2;
}
.profil-p {
  font-size: 15.5px; font-weight: 300; color: var(--tx2);
  line-height: 1.75; margin-bottom: 24px;
}
@media (min-width: 768px) { .profil-p { font-size: 17px; line-height: 1.8; margin-bottom: 28px; } }
.profil-net {
  font-size: 14px; color: var(--tx2); line-height: 1.65;
  padding: 18px 22px; border: 1px solid var(--br);
  border-left: 3px solid var(--ac); border-radius: 0 3px 3px 0;
  margin-bottom: 28px;
}
@media (min-width: 768px) { .profil-net { font-size: 14.5px; padding: 20px 24px; margin-bottom: 32px; } }
.profil-links { display: flex; flex-wrap: wrap; gap: 16px; }
@media (min-width: 480px) { .profil-links { gap: 20px; } }
.profil-link {
  font-size: 13px; color: var(--tx2);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color .2s;
}
.profil-link:hover { color: var(--tx); }
.profil-img {
  width: 100%; max-width: 360px; aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: 3px; overflow: hidden;
  background: #e8e6e2;
}
@media (min-width: 768px) { .profil-img { max-width: 100%; margin: 0; } }
.profil-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Contact ───────────────────────────────────────────────────────── */
.contact-g {
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) { .contact-g { grid-template-columns: 1fr 1fr; gap: 60px; } }
@media (min-width: 1100px) { .contact-g { gap: 80px; } }
.contact-h2 {
  font-family: var(--ff-d);
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 300; letter-spacing: -.02em; line-height: 1.2;
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 15.5px; opacity: .6; line-height: 1.75;
  font-weight: 300; margin-bottom: 28px;
}
@media (min-width: 768px) { .contact-sub { font-size: 16px; margin-bottom: 36px; } }
.voice-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; padding: 13px 22px; min-height: 48px;
  border: 1px solid rgba(248,247,244,.22); border-radius: 3px;
  transition: opacity .2s, border-color .2s; color: var(--bg);
}
.voice-btn:hover { opacity: 1; border-color: rgba(248,247,244,.55); }
.voice-note {
  font-family: var(--ff-m); font-size: 10.5px; opacity: .3;
  margin-top: 10px; letter-spacing: .06em;
}

.form { display: flex; flex-direction: column; gap: 16px; }
.fg  { display: flex; flex-direction: column; gap: 7px; }
.fl  {
  font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; opacity: .4;
}
.fi, .fta {
  background: transparent; color: var(--bg);
  border: 1px solid rgba(248,247,244,.2); border-radius: 3px;
  padding: 13px 16px; font: 16px/1.5 var(--ff-b);
  transition: border-color .2s; resize: vertical;
  min-height: 48px;
}
@media (min-width: 768px) { .fi, .fta { font-size: 15px; padding: 12px 16px; min-height: 44px; } }
.fi:focus, .fta:focus { outline: none; border-color: rgba(248,247,244,.55); }
.fi::placeholder, .fta::placeholder { opacity: .3; }
.fta { min-height: 100px; }
.rgpd-note { font-family: var(--ff-m); font-size: 10.5px; opacity: .25; letter-spacing: .04em; }
.fsub {
  align-self: stretch; padding: 14px 30px; min-height: 48px;
  background: var(--ac); color: #fff; border-radius: 3px;
  font-size: 14.5px; font-weight: 500; transition: opacity .2s;
}
@media (min-width: 480px) { .fsub { align-self: flex-start; } }
.fsub:hover { opacity: .85; }
.fsub:disabled { opacity: .6; cursor: default; }

/* ─── FAQ ───────────────────────────────────────────────────────────── */
#faq { background: var(--bg-warm); }
.faq-g {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--br); border: 1px solid var(--br);
  margin-top: 36px;
}
@media (min-width: 768px) { .faq-g { grid-template-columns: 1fr 1fr; margin-top: 52px; } }
.faq-item { background: var(--bg-warm); padding: 26px 22px; transition: background .2s; border-radius: 2px; }
@media (min-width: 768px) { .faq-item { padding: 32px 36px; } }
.faq-item:hover { background: rgba(13,110,100,.04); }
.faq-q {
  font-family: var(--ff-d); font-size: 18px; font-weight: 400;
  letter-spacing: -.01em; line-height: 1.3; margin-bottom: 12px;
}
@media (min-width: 768px) { .faq-q { font-size: 19px; } }
.faq-a { font-size: 14px; color: var(--tx2); line-height: 1.75; }

/* ─── Footer ────────────────────────────────────────────────────────── */
footer {
  padding: 28px 0; border-top: 1px solid var(--br);
  background: var(--bg);
}
.footer-in {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  font-size: 12.5px; color: var(--tx2);
}
@media (min-width: 600px) {
  .footer-in { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 22px; }
@media (min-width: 768px) { .footer-links { gap: 24px; } }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--tx); }
.siret { font-family: var(--ff-m); font-size: 11px; color: var(--tx2); }
