@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;700;900&display=swap');

:root {
  --bg: #f6f4f2;
  --block: #b29f84;
  --text: #25343a;
  --text-light: #7a8f96;
  --block-dark: #8a7a65;
  --block-light: #ddd4c4;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(246,244,242,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 56px;
  border-bottom: 1px solid rgba(178,159,132,0.15);
}
.nav-logo {
  font-size: 20px; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo .dot { color: var(--block); }
.logo-shrink {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  max-width: 2em;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
nav.scrolled .logo-shrink { max-width: 0; opacity: 0; }
nav.scrolled .nav-logo:hover .logo-shrink { max-width: 2em; opacity: 1; }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--text-light);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.1px;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--text) !important; color: var(--bg) !important;
  padding: 10px 24px !important; border-radius: 100px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--block) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 140px 56px 80px;
  align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--block-light); color: var(--text);
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 100px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.1s;
  align-self: center;
}
.hero-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--block); border-radius: 50%;
}
.hero h1 {
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -4px; color: var(--text);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero h1 .accent { color: var(--block); }
.hero h1 .light { font-weight: 300; font-style: italic; }
.hero-sub {
  font-size: 16px; line-height: 1.75; color: var(--text-light);
  max-width: 520px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.4s;
  margin-bottom: 48px;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-sub .line-break { display: block; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--text); color: var(--bg);
  font-size: 15px; font-weight: 500;
  padding: 18px 36px; border-radius: 100px;
  text-decoration: none; transition: all 0.3s ease;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.55s;
}
.hero-cta:hover {
  background: var(--block);
  box-shadow: 0 12px 40px rgba(178,159,132,0.35);
  transform: translateY(-2px);
}
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(5px); }
.hero-deco {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle at 60% 50%, rgba(178,159,132,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* ── LOGOS ── */
.logos-band {
  padding: 32px 0; border-top: 1px solid rgba(178,159,132,0.18);
  border-bottom: 1px solid rgba(178,159,132,0.18); overflow: hidden;
}
.logos-label {
  text-align: center; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 20px; font-weight: 500;
}
.logos-track-wrap { overflow: hidden; display: flex; }
.logos-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content; will-change: transform;
}
.logo-item {
  display: flex; align-items: center; gap: 9px;
  opacity: 0.45; white-space: nowrap;
  font-size: 13px; font-weight: 600; color: var(--text);
  letter-spacing: -0.2px; transition: opacity 0.2s;
}
.logo-item:hover { opacity: 0.85; }

/* ── PAIN POINTS ── */
.pain-section {
  position: relative;
  background: var(--bg);
}
.pain-sticky-wrap {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pain-scroll-area {
  height: 250vh;
}
.pain-center {
  text-align: center; position: relative; z-index: 2;
  max-width: 580px;
}
.pain-eyebrow {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--block); font-weight: 600; margin-bottom: 20px;
}
.pain-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  color: var(--text); margin-bottom: 16px;
}
.pain-subtitle {
  font-size: 15px; color: var(--text-light); font-weight: 300;
  line-height: 1.7; max-width: 400px; margin: 0 auto 40px;
}
.pain-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: var(--bg);
  font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all 0.25s;
}
.pain-cta:hover { background: var(--block); transform: translateY(-2px); }

/* Scattered cards */
.pain-tags {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.pain-tag {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(178,159,132,0.2);
  border-radius: 20px;
  padding: 40px 44px;
  max-width: 370px;
  box-shadow: 0 16px 56px rgba(37,52,58,0.12);
  opacity: 0;
  transform-style: preserve-3d;
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pain-tag .tag-num {
  font-size: 13px; font-weight: 700; color: var(--block);
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.pain-tag .tag-title {
  font-size: 22px; font-weight: 700; color: var(--text);
  line-height: 1.25; letter-spacing: -0.5px; margin-bottom: 10px;
}
.pain-tag .tag-desc {
  font-size: 16px; color: var(--text-light); font-weight: 300; line-height: 1.6;
}
.pain-tag:nth-child(1) {
  top: 14%; left: 9%;
  transform: translate3d(-40px, -20px, 0) rotateZ(-6deg) scale(0.88);
}
.pain-tag:nth-child(2) {
  top: 10%; right: 9%;
  transform: translate3d(40px, -20px, 0) rotateZ(4deg) scale(0.88);
}
.pain-tag:nth-child(3) {
  bottom: 14%; left: 9%;
  transform: translate3d(-40px, 20px, 0) rotateZ(-3deg) scale(0.88);
}
.pain-tag:nth-child(4) {
  bottom: 10%; right: 9%;
  transform: translate3d(40px, 20px, 0) rotateZ(8deg) scale(0.88);
}
.pain-tag:nth-child(1).tag-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(-6deg) scale(1);
}
.pain-tag:nth-child(2).tag-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(4deg) scale(1);
}
.pain-tag:nth-child(3).tag-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(-3deg) scale(1);
}
.pain-tag:nth-child(4).tag-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(8deg) scale(1);
}

/* ── SOLUTION (sticky scroll) ── */
.solution-section {
  background: var(--text);
  position: relative;
}
.solution-sticky-wrap {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg);
  transition: background 0.8s ease;
}
.solution-sticky-wrap.revealed {
  background: var(--text);
}
.solution-big-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; letter-spacing: -2.5px;
  color: var(--text);
  text-align: center;
  position: relative;
  line-height: 1.05;
  user-select: none;
  transform-origin: center center;
}
#solSubtitle {
  color: var(--text-light);
  transition: color 0.8s ease;
}
.solution-sticky-wrap.revealed #solSubtitle {
  color: rgba(246,244,242,0.35) !important;
}
.solution-eyebrow {
  display: block;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--block); font-weight: 600;
  margin-bottom: 20px;
}
.solution-scroll-area {
  padding: 50vh 56px 100px;
}
.solution-items {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.solution-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid rgba(178,159,132,0.1);
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.solution-item.visible { opacity: 1; transform: translateY(0); }
.solution-item:nth-child(even) .solution-item-img { order: -1; }
.solution-item-img {
  background: rgba(37,52,58,0.03);
  border: 1px solid rgba(178,159,132,0.15);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.solution-item-img .img-placeholder {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(37,52,58,0.2); font-weight: 500;
}
.solution-item-img .img-deco {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(178,159,132,0.1) 0%, transparent 70%);
}
.solution-item-num {
  font-size: 80px; font-weight: 900; letter-spacing: -4px;
  color: rgba(246,244,242,0.08); line-height: 1;
  margin-bottom: 16px;
}
.solution-item h3 {
  font-size: 28px; font-weight: 700; letter-spacing: -1px;
  color: rgba(246,244,242,0.9); margin-bottom: 14px; line-height: 1.2;
}
.solution-item p {
  font-size: 15px; color: rgba(246,244,242,0.45);
  line-height: 1.8; font-weight: 300;
}

/* ── OFFRES ── */
.offres-section {
  padding: 140px 56px;
  background: var(--bg);
}
.offres-header { margin-bottom: 72px; }
.section-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--block); font-weight: 600; margin-bottom: 16px;
  display: block;
}
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; letter-spacing: -2.5px;
  color: var(--text); line-height: 1.05; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text-light);
  font-weight: 300; line-height: 1.7; max-width: 480px;
}
.offres-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.offre-card {
  border-radius: 20px; padding: 40px 32px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 1;
}
.offre-card:hover {
  transform: scale(1.04) translateY(-10px);
  z-index: 10;
  box-shadow: 0 32px 72px rgba(37,52,58,0.16) !important;
}

/* Sentinelle - minimal */
.offre-sentinelle {
  background: var(--bg);
  border: 1px solid rgba(178,159,132,0.25);
}

/* Héraut - contour discret */
.offre-heraut {
  background: var(--bg);
  border: 2px solid var(--text);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--text); color: var(--bg);
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
  white-space: nowrap;
}

/* Conquérant - la star */
.offre-conquerant {
  background: var(--block);
  border: none;
}
.offre-conquerant:hover {
  box-shadow: 0 20px 60px rgba(178,159,132,0.5);
}
.audacieux-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--text); color: var(--bg);
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
  white-space: nowrap;
}

.offre-name {
  font-size: 32px; font-weight: 900; letter-spacing: -1.5px;
  margin-bottom: 6px; line-height: 1;
}
.offre-sentinelle .offre-name,
.offre-heraut .offre-name { color: var(--text); }
.offre-conquerant .offre-name { color: var(--white); }

.offre-tagline {
  font-size: 13px; font-weight: 300; font-style: italic;
  margin-bottom: 32px; line-height: 1.5;
}
.offre-sentinelle .offre-tagline,
.offre-heraut .offre-tagline { color: var(--text-light); }
.offre-conquerant .offre-tagline { color: rgba(255,255,255,0.65); }

.offre-sep {
  height: 1px; margin-bottom: 28px;
}
.offre-sentinelle .offre-sep,
.offre-heraut .offre-sep { background: rgba(178,159,132,0.2); }
.offre-conquerant .offre-sep { background: rgba(255,255,255,0.2); }

.offre-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 13px; }
.offre-features li { display: flex; gap: 10px; font-size: 13px; line-height: 1.55; font-weight: 300; }
.offre-sentinelle .offre-features li,
.offre-heraut .offre-features li { color: var(--text); }
.offre-conquerant .offre-features li { color: rgba(255,255,255,0.85); }
.offre-features li::before { content: '✦'; font-size: 9px; margin-top: 3px; flex-shrink: 0; }
.offre-sentinelle .offre-features li::before,
.offre-heraut .offre-features li::before { color: var(--block); }
.offre-conquerant .offre-features li::before { color: rgba(255,255,255,0.5); }
.offre-features li strong { font-weight: 600; }
.offre-sentinelle .offre-features li strong,
.offre-heraut .offre-features li strong { color: var(--text); }
.offre-conquerant .offre-features li strong { color: var(--white); }

.offre-rarity {
  font-size: 11px; font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 7px;
}
.offre-sentinelle .offre-rarity,
.offre-heraut .offre-rarity { color: var(--block); }
.offre-conquerant .offre-rarity { color: rgba(255,255,255,0.7); }
.offre-rarity::before {
  content: ''; width: 6px; height: 6px;
  background: currentColor; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.4; transform: scale(1.4); }
}

.offre-btn {
  display: block; text-align: center;
  padding: 15px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.25s;
  letter-spacing: 0.2px;
  background: var(--text);
  color: var(--bg);
  border: 1.5px solid var(--text);
}
.offre-btn:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--text);
}

/* ── REASSURANCE ── */
.reassurance {
  background: var(--bg);
  border-top: 1px solid rgba(178,159,132,0.15);
  padding: 64px 56px;
}
.reassurance-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(178,159,132,0.12);
  border-radius: 16px; overflow: hidden;
}
.reassurance-item {
  background: var(--bg); padding: 40px 28px;
  transition: background 0.3s;
}
.reassurance-item:hover { background: rgba(178,159,132,0.06); }
.r-icon {
  width: 36px; height: 36px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.reassurance-item h4 {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.3px; line-height: 1.3;
}
.reassurance-item p {
  font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.65;
}

/* ── PROCESS (sticky same as solution) ── */
.process-section {
  background: var(--bg);
  position: relative;
}
.process-sticky-wrap {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 48px;
  overflow: hidden;
}

.process-sticky-header {
  text-align: center;
  transition: opacity 0.2s ease;
}
.process-eyebrow {
  display: block;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--block); font-weight: 600;
  margin-bottom: 16px;
}
.process-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; letter-spacing: -2.5px;
  color: var(--text); line-height: 1.05;
}
/* Progress bar */
.process-progress-wrap {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 2px; top: 80px; bottom: 80px;
  background: rgba(178,159,132,0.15); border-radius: 2px;
}
.process-progress-bar {
  width: 100%; background: var(--block); border-radius: 2px;
  height: 0%; transition: height 0.1s linear;
}
.process-scroll-area {
  padding: 0.5vh 56px 100px;
}
.process-items {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.process-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid rgba(178,159,132,0.12);
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.process-item.visible { opacity: 1; transform: translateY(0); }
.process-item:nth-child(even) .process-item-img { order: -1; }
.process-item-img {
  background: rgba(37,52,58,0.03);
  border: 1px solid rgba(178,159,132,0.2);
  border-radius: 16px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.process-item-img .img-placeholder {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(37,52,58,0.2); font-weight: 500;
}
.solution-item-img img,
.process-item-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  border-radius: 16px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
/* Overlay invisible bloquant le clic droit sur les images */
.solution-item-img::after,
.process-item-img::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: transparent;
}
.process-step-num {
  font-size: 80px; font-weight: 900; letter-spacing: -4px;
  color: rgba(178,159,132,0.15); line-height: 1; margin-bottom: 16px;
}
.process-item h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.8px;
  color: var(--text); margin-bottom: 14px; line-height: 1.25;
}
.process-item p {
  font-size: 15px; color: var(--text-light); line-height: 1.8; font-weight: 300;
}

/* ── FAQ ── */
.faq-section {
  padding: 140px 56px;
  background: var(--text);
  max-width: 100%;
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-section .section-label { color: var(--block); }
.faq-section .section-title { color: var(--bg); margin-bottom: 64px; }
.faq-group { margin-bottom: 56px; }
.faq-group-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--block); font-weight: 600;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(178,159,132,0.25);
  margin-bottom: 0;
  display: block;
}
.faq-item { border-bottom: 1px solid rgba(178,159,132,0.15); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; font-family: 'Satoshi', sans-serif;
  font-size: 15px; font-weight: 500; color: rgba(246,244,242,0.8);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; transition: color 0.2s;
}
.faq-question:hover { color: var(--bg); }
.faq-icon {
  width: 26px; height: 26px; border: 1px solid rgba(178,159,132,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--block); font-size: 18px;
  transition: all 0.3s; line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--block); color: var(--white);
  border-color: var(--block); transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: 0 0 22px; font-size: 14px;
  color: rgba(246,244,242,0.45); line-height: 1.8; font-weight: 300;
}
.faq-answer-inner strong { color: rgba(246,244,242,0.8); font-weight: 500; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── FOOTER ── */
footer { background: var(--text); padding: 0 56px 48px; }
.footer-sep { height: 1px; background: rgba(178,159,132,0.12); margin-bottom: 48px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; margin-bottom: 48px; align-items: start;
}
.footer-logo {
  font-size: 24px; font-weight: 700; color: var(--bg);
  text-decoration: none; letter-spacing: -0.8px; display: block; margin-bottom: 12px;
}
.footer-logo .dot { color: var(--block); }
.footer-taglines p { font-size: 13px; color: rgba(246,244,242,0.3); font-weight: 300; line-height: 1.7; }
.footer-nav { display: flex; gap: 56px; }
.footer-nav-col h5 {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--block); font-weight: 600; margin-bottom: 18px;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a { font-size: 13px; color: rgba(246,244,242,0.4); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-nav-col a:hover { color: var(--bg); }
.footer-bottom {
  border-top: 1px solid rgba(178,159,132,0.1);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(246,244,242,0.2); font-weight: 300; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px; border: 1px solid rgba(178,159,132,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(246,244,242,0.35); text-decoration: none;
  font-size: 12px; font-weight: 600; transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--block); color: var(--block); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Offre cards override — .reveal.visible would otherwise cancel hover transform */
.offre-card.visible:hover { transform: scale(1.05) translateY(-10px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero h1 { font-size: 52px; letter-spacing: -2.5px; }
  /* Pain — static grid on mobile, cards after title */
  .pain-sticky-wrap { position: relative; height: auto; padding: 80px 24px 40px; flex-direction: column; align-items: stretch; }
  .pain-scroll-area { display: none; }
  .pain-center { order: 1; max-width: 100%; text-align: left; margin-bottom: 28px; }
  .pain-tags { order: 2; position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; pointer-events: auto; }
  .pain-tag { position: static; opacity: 1; transform: none !important; max-width: 100%; padding: 24px 20px; }
  .pain-tag .tag-title { font-size: 16px; }
  .pain-tag .tag-desc { font-size: 13px; }
  /* Solution — show title text on mobile, no sticky/animation */
  .solution-sticky-wrap { display: flex; position: relative; height: auto; padding: 80px 24px; background: var(--bg) !important; }
  .solution-big-title { transform: none !important; font-size: clamp(28px, 7vw, 44px); }
  #solSubtitle { color: var(--text-light) !important; opacity: 1 !important; }
  .solution-eyebrow { position: static; margin-bottom: 24px; }
  .process-sticky-wrap { position: static; height: auto; padding: 60px 24px 32px; flex-direction: column; gap: 0; overflow: visible; }
  .process-sticky-header { opacity: 1 !important; }
  .process-progress-wrap { display: none; }
  .solution-scroll-area, .process-scroll-area { padding: 20px 24px 60px; }
  .solution-item, .process-item { grid-template-columns: 1fr; gap: 32px; }
  .solution-item:nth-child(even) .solution-item-img { order: 0; }
  .process-item:nth-child(even) .process-item-img { order: 0; }
  .offres-section { padding: 80px 24px; }
  .offres-grid { grid-template-columns: 1fr; }
  .reassurance { padding: 48px 24px; }
  .reassurance-grid { grid-template-columns: repeat(2,1fr); }
  .faq-section { padding: 80px 24px; }
  footer { padding: 0 24px 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { flex-wrap: wrap; gap: 28px; }
}

/* ── PAGES LÉGALES ── */
body.legal nav {
  background: rgba(246,244,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(178,159,132,0.15);
  padding: 22px 56px;
  transition: none;
}
.nav-back {
  font-size: 14px; color: var(--text-light);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.nav-back:hover { color: var(--text); }
.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px 100px;
}
.page-label {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 24px;
}
.legal-container h1 {
  font-size: 40px; font-weight: 700; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 48px; color: var(--text);
}
.legal-container h1 .dot { color: var(--block); }
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(178,159,132,0.15);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 13px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--block); margin-bottom: 16px;
}
.legal-container p {
  font-size: 15px; line-height: 1.8; color: var(--text);
  font-weight: 300; margin-bottom: 12px;
}
.legal-container p:last-child { margin-bottom: 0; }
.legal-container a { color: var(--block); text-decoration: none; }
.legal-container a:hover { text-decoration: underline; }
.legal-container ul { margin: 12px 0 12px 20px; }
.legal-container ul li {
  font-size: 15px; line-height: 1.8; color: var(--text);
  font-weight: 300; margin-bottom: 6px;
}
.legal-footer {
  text-align: center;
  padding: 40px 32px;
  border-top: 1px solid rgba(178,159,132,0.15);
  font-size: 13px; color: var(--text-light);
}
.legal-footer a { color: var(--text-light); margin: 0 12px; text-decoration: none; }
.legal-footer a:hover { color: var(--text); text-decoration: none; }
@media (max-width: 900px) {
  body.legal nav { padding: 16px 24px; }
  .legal-container { padding: 120px 24px 80px; }
}
