@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@1&display=swap');

:root {
  --navy: #0F1C24;
  --navy2: #1a2d38;
  --teal: #1EC8C0;
  --orange: #F59E0B;
  --orange2: #FDBA3B;
  --off: #F5F5F3;
  --dim: rgba(255,255,255,.62);
  --muted: rgba(255,255,255,.32);
  --dt: #0F1C24;
  --mt: rgba(15,28,36,.58);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
}
::-webkit-scrollbar { width: 3px; } ::-webkit-scrollbar-thumb { background: var(--teal); }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  height: 68px; display: flex; align-items: center;
  padding: 0 48px; justify-content: space-between;
  transition: box-shadow .3s;
}
header.sc { box-shadow: 0 2px 32px rgba(0,0,0,.09); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: #fff;
  border: 2.5px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 0; }
.logo-t { font-weight: 900; font-size: 19px; letter-spacing: 2.7px; text-transform: uppercase; color: var(--navy); line-height: 1; }
.logo-t span { color: var(--orange); }
.logo-sub { font-size: 8px; font-weight: 600; letter-spacing: 3px; color: var(--teal); text-transform: uppercase; margin-top: 4px; }

.nav-d { display: flex; align-items: center; gap: 28px; }
.nav-d a { font-size: 13px; font-weight: 500; color: rgba(15,28,36,.6); text-decoration: none; white-space: nowrap; transition: color .2s; }
.nav-d a:hover { color: var(--navy); }
.nav-d a.active { color: var(--navy); font-weight: 700; }
.nav-d .cta {
  background: var(--orange); color: #fff !important;
  padding: 10px 22px; border-radius: 6px;
  transition: background .2s, transform .15s;
}
.nav-d .cta:hover { background: var(--orange2); color: var(--navy) !important; transform: translateY(-1px); }
.nav-d .cta.active { background: var(--orange2); color: var(--navy) !important; }

.lang-switch {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--teal);
  border: 1px solid rgba(30,200,192,.35);
  border-radius: 4px;
  padding: 4px 8px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.lang-switch:hover {
  background: rgba(30,200,192,.12);
}

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

.mnav {
  position: fixed; top: 68px; left: 0; right: 0; background: #fff;
  transform: translateY(-110%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 199; padding: 20px 32px 32px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.12); pointer-events: none;
}
.mnav.open { transform: translateY(0); pointer-events: all; }
.mnav a { font-size: 22px; font-weight: 700; color: var(--navy); text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.mnav a.active { color: var(--teal); }
.mnav .mcta { margin-top: 20px; background: var(--orange); color: #fff; text-align: center; padding: 16px; border-radius: 8px; border-bottom: none; }

/* ── HERO ── */
#hero {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 52fr 48fr;
  position: relative; overflow-x: hidden;
}
.hero-left {
  display: flex; align-items: flex-end; justify-content: center;
  background: var(--navy);
  border-left: none; border-image: none;
  position: relative; z-index: 1;
  padding: 0; overflow: hidden;
}
.hero-phoenix-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  animation: fadeUp 1.2s ease-out both;
  will-change: object-position;
}
.hero-phoenix-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,28,36,.52) 0%,
    rgba(15,28,36,.04) 32%,
    rgba(15,28,36,.04) 56%,
    rgba(15,28,36,.93) 100%
  );
}
.hero-phoenix-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  padding: 0 clamp(20px,4vw,40px) clamp(40px,6vh,64px);
  width: 100%;
}
.hero-right {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  padding: clamp(80px, 12vh, 140px) 5vw clamp(60px, 10vh, 100px) 5vw;
  position: relative; z-index: 1;
}
.g1 { position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); width: min(700px,130vw); height: min(700px,130vw); background: radial-gradient(ellipse, rgba(30,200,192,.13) 0%, transparent 68%); pointer-events: none; animation: gp 7s ease-in-out infinite; }
.g2 { position: absolute; top: 10%; right: 5%; width: 300px; height: 300px; background: radial-gradient(ellipse, rgba(245,158,11,.07) 0%, transparent 70%); pointer-events: none; animation: gp2 9s ease-in-out infinite 2s; }
@keyframes gp  { 0%,100%{opacity:.7} 50%{opacity:1} }
@keyframes gp2 { 0%,100%{opacity:.5} 50%{opacity:1} }

.hero-mark {
  width: clamp(220px, 32vw, 380px);
  height: clamp(220px, 32vw, 380px);
  position: relative; z-index: 1;
  animation: fadeUp .9s ease-out .1s both;
  filter: drop-shadow(0 0 40px rgba(30,200,192,.15));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,200,192,.1); border: 1px solid rgba(30,200,192,.4);
  color: #0a7a76; font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 100px;
  margin-bottom: 24px; align-self: flex-start;
  animation: fadeUp .8s ease-out .2s both;
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--teal); border-radius:50%; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-top: 14px; margin-bottom: 20px;
  animation: fadeUp .8s ease-out .55s both;
  opacity: .85;
}
.eyebrow-sep { width: 7px; height: 7px; flex-shrink: 0; }

.hero-title {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 800; line-height: 1.02; letter-spacing: -2px;
  color: #fff; margin-bottom: 20px;
  animation: fadeUp .8s ease-out .35s both;
  text-align: left;
}
@media (max-width: 480px) {
  .hero-title { font-size: 34px; letter-spacing: -.3px; }
}
.hero-title .tc { color: var(--teal); }

.hero-sub {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 300; line-height: 1.8;
  color: var(--dim); max-width: 480px; margin-bottom: 36px;
  animation: fadeUp .8s ease-out .5s both;
  text-align: left;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .8s ease-out .65s both;
}
.btn-p { background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff; padding: 15px 32px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; text-decoration: none; border-radius: 8px; transition: transform .2s, background .2s; display: inline-block; letter-spacing: .3px; }
.btn-p:hover { transform: translateY(-2px); background: var(--orange2); color: var(--navy); }
.btn-g { background: transparent; color: var(--teal); border: 1px solid var(--teal); padding: 14px 32px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; text-decoration: none; border-radius: 8px; transition: all .2s; display: inline-block; }
.btn-g:hover { background: rgba(30,200,192,.1); transform: translateY(-2px); }

.scroll-bar { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--teal), transparent); animation: sb 2.2s ease-in-out infinite; margin: 0 auto; }
.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 80px; align-self: center; width: 80px;
  pointer-events: none;
}
@keyframes sb { 0%{transform:scaleY(0);transform-origin:top;opacity:1} 45%{transform:scaleY(1);transform-origin:top} 46%{transform-origin:bottom} 90%{transform:scaleY(0);transform-origin:bottom;opacity:0} 100%{transform:scaleY(0);transform-origin:top;opacity:0} }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

/* ── SECTIONS COMMUNES ── */
.sec { padding: clamp(72px,10vw,130px) clamp(24px,6vw,80px); position: relative; }
.sec-light { background: var(--off); }
.sec-dark  { background: var(--navy); }
.sec-mid   { background: var(--navy2); }
.sec-light::before, .sec-mid::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(30,200,192,.18), rgba(245,158,11,.12), transparent);
  pointer-events: none;
}

.stag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.stag::before { content:''; width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }
.stag::after  { content:''; width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }

.sh { font-size: clamp(26px,4.5vw,56px); font-weight: 800; line-height: 1.06; letter-spacing: -1px; margin-bottom: 14px; }
.sh.sh-dark { font-size: clamp(30px,5.5vw,70px); letter-spacing: -2px; }
.sh .tc { color: var(--teal); }
.sh-light { color: var(--dt); }
.sh-dark  { color: #fff; }
.ssub { font-size: 15px; font-weight: 300; line-height: 1.8; max-width: 520px; margin: 0 auto; }
.ssub-light { color: var(--mt); }
.ssub-dark  { color: var(--dim); }
.sec-hd { text-align: center; margin-bottom: 56px; }
@media (max-width: 480px) {
  .sh { font-size: 24px; letter-spacing: -.3px; }
  .mani-title { font-size: 26px; letter-spacing: -.3px; }
  .con-title { font-size: 28px; letter-spacing: -1px; }
  .dan-title { font-size: 26px; }
}

.stag-left {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.stag-left::before { content:''; width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }

/* ── MANIFESTE ── */
.mani-c { display: grid; grid-template-columns: 5fr 4fr; }
.mani-c-left { padding: clamp(60px,9vw,110px) clamp(32px,6vw,80px); background: var(--off); display: flex; flex-direction: column; justify-content: center; }
.mani-c-right { background: var(--off); border-left: 1px solid rgba(0,0,0,.07); padding: clamp(60px,9vw,110px) clamp(28px,4vw,60px); display: flex; flex-direction: column; justify-content: center; position: relative; }
.mani-c-top-bar { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--orange), var(--teal)); }
.mani-c-bot-bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--teal), var(--orange)); }
.mani-title { font-size: clamp(26px,3.5vw,52px); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: var(--dt); }
.mani-title em { font-style: normal; color: var(--teal); }
.mani-body { font-size: clamp(14px,1.3vw,16px); font-weight: 400; line-height: 1.9; color: var(--dt); }
.mani-quote-big { font-size: 72px; font-weight: 900; line-height: .8; margin-bottom: 16px; font-family: Georgia,serif; background: linear-gradient(135deg, var(--orange), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mani-quote-text { font-size: clamp(14px,1.5vw,18px); font-weight: 700; color: var(--dt); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.mani-quote-line { width: 40px; height: 2px; background: linear-gradient(to right, var(--orange), var(--teal)); margin-bottom: 12px; }
.mani-quote-cite { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }
@media (max-width: 900px) {
  .mani-c { grid-template-columns: 1fr; }
  .mani-c-top-bar, .mani-c-bot-bar { display: none; }
  .mani-c-right { border-left: none; border-top: 1px solid rgba(0,0,0,.07); padding-top: 24px; padding-bottom: 40px; }
  .mani-c-left { padding-bottom: 24px; }
}

/* ── POURQUOI ── */
.pq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1100px; margin: 0 auto 16px; }
.pq-card { background: var(--navy2); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 36px 28px; position: relative; overflow: hidden; transition: border-color .3s, transform .3s; }
.pq-card:hover { border-color: rgba(30,200,192,.3); transform: translateY(-4px); }
.pq-num { font-size: 60px; font-weight: 800; color: rgba(30,200,192,.08); line-height: 1; position: absolute; top: 12px; right: 18px; }
.pq-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(30,200,192,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pq-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.pq-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pq-text { font-size: 14px; font-weight: 300; color: var(--dim); line-height: 1.8; }
.pq-footer { max-width: 1100px; margin: 0 auto; background: rgba(30,200,192,.05); border: 1px solid rgba(30,200,192,.15); border-radius: 12px; padding: 32px 36px; display: flex; align-items: center; gap: 20px; }
.pq-bar { width: 3px; height: 48px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.pq-footer p { font-size: 15px; font-weight: 300; color: var(--dim); line-height: 1.8; }
.pq-footer strong { color: #fff; font-weight: 500; }

/* ── MÉTHODE ── */
.m-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.m-card { background: #fff; border-radius: 14px; padding: 28px 24px 24px 28px; position: relative; overflow: hidden; border-left: 4px solid; box-shadow: 0 1px 3px rgba(0,0,0,.07), 0 8px 24px rgba(0,0,0,.04); transition: transform .25s, box-shadow .25s; }
.m-card:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(0,0,0,.08), 0 20px 40px rgba(0,0,0,.07); }
.m-card.c1 { border-left-color: #1EC8C0; }
.m-card.c2 { border-left-color: #F59E0B; }
.m-card.c3 { border-left-color: #A78BFA; }
.m-card.c4 { border-left-color: #EC4899; }
.m-ghost { position:absolute; bottom:-10px; right:8px; font-size:110px; font-weight:900; line-height:1; opacity:.06; letter-spacing:-6px; pointer-events:none; user-select:none; }
.m-card.c1 .m-ghost { color:#1EC8C0; }
.m-card.c2 .m-ghost { color:#F59E0B; }
.m-card.c3 .m-ghost { color:#A78BFA; }
.m-card.c4 .m-ghost { color:#EC4899; }
.m-top { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.m-num { font-size:11px; font-weight:800; letter-spacing:1.5px; padding:3px 9px; border-radius:20px; }
.m-card.c1 .m-num { color:#1EC8C0; background:rgba(30,200,192,.1); }
.m-card.c2 .m-num { color:#F59E0B; background:rgba(245,158,11,.1); }
.m-card.c3 .m-num { color:#A78BFA; background:rgba(167,139,250,.1); }
.m-card.c4 .m-num { color:#EC4899; background:rgba(236,72,153,.1); }
.m-icon { display:flex; align-items:center; justify-content:center; }
.m-icon svg { width:20px; height:20px; fill:none; stroke-width:1.8; }
.m-card.c1 .m-icon svg { stroke:#1EC8C0; }
.m-card.c2 .m-icon svg { stroke:#F59E0B; }
.m-card.c3 .m-icon svg { stroke:#A78BFA; }
.m-card.c4 .m-icon svg { stroke:#EC4899; }
.m-title { font-size:17px; font-weight:700; color:#0d1b2a; margin-bottom:8px; letter-spacing:-.3px; }
.m-text { font-size:13.5px; font-weight:300; color:#6b7280; line-height:1.85; margin-bottom:18px; }
.m-tags { display:flex; flex-wrap:wrap; gap:5px; }
.m-tag { font-size:10.5px; font-weight:600; letter-spacing:.4px; padding:0; background:none; }
.m-tag::before { content:'·'; margin-right:4px; }
.m-card.c1 .m-tag { color:#1EC8C0; }
.m-card.c2 .m-tag { color:#F59E0B; }
.m-card.c3 .m-tag { color:#A78BFA; }
.m-card.c4 .m-tag { color:#EC4899; }

/* ── OFFRES ── */
.offres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1100px; margin: 0 auto; }
.o-main { background: rgba(30,200,192,.05); border: 1px solid rgba(30,200,192,.2); border-radius: 16px; padding: 48px 40px; position: relative; overflow: hidden; }
.o-main::before { content:''; position: absolute; top: -1px; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--teal), var(--orange)); }
.o-sec { background: var(--navy2); border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 48px 40px; }
.o-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 24px; }
.o-main .o-badge { background: var(--teal); color: var(--navy); }
.o-sec  .o-badge { background: rgba(255,255,255,.08); color: var(--muted); }
.o-title { font-size: clamp(20px,2.5vw,30px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 12px; }
.o-desc { font-size: 14px; font-weight: 300; color: var(--dim); line-height: 1.8; margin-bottom: 28px; }
.o-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.o-item { display: flex; align-items: flex-start; gap: 12px; }
.o-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.o-main .o-dot { background: var(--teal); }
.o-sec  .o-dot { background: var(--orange); }
.o-item span { font-size: 14px; font-weight: 300; color: var(--dim); line-height: 1.6; }

/* ── DANIEL ── */
.dan-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.dan-visual { aspect-ratio: 4/5; background: var(--navy); border-radius: 16px; position: relative; overflow: hidden; }
.dan-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.dan-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--teal), var(--orange)); }
.dan-title { font-size: clamp(28px,3.5vw,48px); font-weight: 800; color: var(--dt); line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; }
.dan-title em { font-style: normal; color: var(--teal); }
.dan-text { font-size: 15px; font-weight: 300; color: var(--mt); line-height: 1.9; margin-bottom: 28px; }
.cert-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cert-row { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 8px; padding: 12px 16px; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.cert-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.cert-row span { font-size: 13px; font-weight: 500; color: var(--dt); }
.cert-row small { margin-left: auto; font-size: 11px; color: rgba(15,28,36,.3); }
.stats-r { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-n { font-size: 38px; font-weight: 800; color: var(--dt); line-height: 1; }
.stat-n span { color: var(--orange); }
.stat-l { font-size: 12px; color: var(--mt); margin-top: 4px; }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-btn { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; text-align: left; font-size: clamp(15px,2vw,18px); font-weight: 600; color: #fff; transition: color .2s; gap: 16px; }
.faq-btn:hover { color: var(--teal); }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.faq-ico svg { width: 11px; height: 11px; stroke: var(--dim); fill: none; stroke-width: 2.5; transition: transform .3s; }
.faq-item.open .faq-ico { border-color: var(--teal); background: rgba(30,200,192,.1); }
.faq-item.open .faq-ico svg { stroke: var(--teal); transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .35s ease; }
.faq-item.open .faq-body { max-height: 280px; padding-bottom: 22px; }
.faq-body p { font-size: 14px; font-weight: 300; color: var(--dim); line-height: 1.9; }

/* ── CONTACT ── */
#contact { text-align: center; position: relative; overflow: hidden; }
#contact::before { content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(30,200,192,.07) 0%, transparent 68%); pointer-events: none; }
.con-in { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.con-title { font-size: clamp(34px,6vw,74px); font-weight: 800; line-height: 1.0; letter-spacing: -2px; color: #fff; margin-bottom: 18px; }
.con-title .tc { color: var(--teal); }
.con-sub { font-size: 16px; font-weight: 300; color: var(--dim); line-height: 1.8; margin-bottom: 44px; }
.cf { display: flex; flex-direction: column; gap: 14px; max-width: 440px; margin: 0 auto 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-g { display: flex; flex-direction: column; gap: 6px; }
.cf-g label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.cf-g input, .cf-g select, .cf-g textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: #fff; padding: 13px 16px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; outline: none; transition: border-color .2s; -webkit-appearance: none; }
.cf-g input:focus, .cf-g select:focus, .cf-g textarea:focus { border-color: var(--teal); }
.cf-g input::placeholder, .cf-g textarea::placeholder { color: rgba(255,255,255,.2); }
.cf-g select option { background: var(--navy); color: #fff; }
.cf-g textarea { resize: vertical; min-height: 90px; }
.cf-sub { width: 100%; background: var(--orange); color: #fff; border: none; padding: 16px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; }
.cf-sub:hover { background: var(--orange2); color: var(--navy); transform: translateY(-2px); }
.con-legal { font-size: 11px; color: var(--muted); line-height: 1.7; max-width: 440px; margin: 0 auto; }

/* ── FOOTER ── */
footer { background: #080f13; padding: 52px clamp(24px,6vw,80px) 28px; position: relative; overflow: hidden; }
footer::before { content: 'R35'; position: absolute; bottom: -20px; right: clamp(16px,4vw,60px); font-family: 'DM Serif Display', Georgia, serif; font-style: italic; font-size: clamp(120px,18vw,220px); font-weight: 400; color: rgba(255,255,255,.025); line-height: 1; pointer-events: none; user-select: none; }
.ft { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.05); }
.ft-brand p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 260px; margin-top: 10px; }
.ft-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.ft-col a { display: block; font-size: 13px; color: rgba(255,255,255,.38); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.ft-col a:hover { color: var(--teal); }
.ft-bot { max-width: 1100px; margin: 22px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.ft-bot p { font-size: 11px; color: rgba(255,255,255,.18); }

/* ── REVEAL ── */
.r { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.r.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 clamp(24px,6vw,80px);
  overflow-x: auto;
}
.stats-table { width: 100%; border-collapse: collapse; }
.stats-table tr:first-child td { padding: 32px 0 10px; vertical-align: bottom; }
.stats-table tr:last-child  td { padding: 0 0 32px; vertical-align: top; }
.stat-num {
  font-size: clamp(36px,4.5vw,64px); font-weight: 800;
  line-height: 1; letter-spacing: -2px; text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; width: 25%;
}
.stat-inf { -webkit-text-fill-color: transparent; color: transparent; background: linear-gradient(135deg, var(--orange), var(--teal)); -webkit-background-clip: text; background-clip: text; font-size: clamp(48px,5.5vw,80px); }
.stat-label { font-size: 12px; font-weight: 400; color: var(--muted); text-align: center; letter-spacing: .3px; line-height: 1.5; }
.stat-sep-td { width: 1px; padding: 0; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.14), transparent); }

/* ── COMPARATIF ── */
.cmp-wrap { max-width: 820px; margin: 0 auto; }
.cmp-table { width: 100%; border: 1px solid rgba(15,28,36,.08); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,.06); }
.cmp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.cmp-row + .cmp-row { border-top: 1px solid rgba(15,28,36,.07); }
.cmp-alt { background: rgba(15,28,36,.02); }
.cmp-head { background: var(--navy); }
.cmp-cell { padding: 18px 20px; display: flex; align-items: center; font-size: 14px; }
.cmp-label { font-weight: 600; color: var(--dt); font-size: 13px; }
.cmp-classic { justify-content: center; text-align: center; font-size: 13px; border-left: 3px solid var(--teal); color: rgba(15,28,36,.65); font-style: italic; }
.cmp-rb { justify-content: center; text-align: center; font-size: 13px; font-weight: 600; border-left: 2px solid var(--teal); background: rgba(30,200,192,.06); color: var(--dt); }
.cmp-head .cmp-cell { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 20px; }
.cmp-head .cmp-label { color: rgba(255,255,255,.3); }
.cmp-head .cmp-classic { color: var(--teal); border-left: 3px solid var(--teal); background: rgba(30,200,192,.08); }
.cmp-head .cmp-rb { color: var(--orange); background: rgba(245,158,11,.08); border-left: 3px solid var(--orange); }
.cmp-no { color: var(--dt); font-style: italic; }
.cmp-yes { color: var(--dt); font-weight: 600; display: flex; align-items: center; justify-content: flex-start; gap: 10px; width: 100%; }
.cmp-yes::before { content:''; min-width:20px; width:20px; height:20px; border-radius:50%; flex-shrink:0; background: var(--orange) url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l4.5 4.5L16 6' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain; }
.cmp-rb { justify-content: flex-start; padding-left: 24px; text-align: left; font-size: 13px; font-weight: 600; border-left: 3px solid var(--orange); background: rgba(245,158,11,.05); color: var(--dt); }

/* ── PAGE HEADER (inner pages) ── */
.page-hd {
  background: var(--navy);
  padding: clamp(120px,16vh,180px) clamp(24px,6vw,80px) clamp(64px,8vh,100px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.page-hd::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(30,200,192,.08) 0%, transparent 68%);
  pointer-events: none;
}
.page-hd-in { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hd-title {
  font-size: clamp(36px,5vw,70px);
  font-weight: 800; color: #fff; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 16px;
}
.page-hd-title .tc { color: var(--teal); }
.page-hd-sub {
  font-size: clamp(14px,1.5vw,17px);
  font-weight: 300; color: var(--dim);
  line-height: 1.8; max-width: 520px; margin: 0 auto;
}

/* ── CTA BAND (bottom of inner pages) ── */
.cta-band {
  text-align: center;
  padding: clamp(64px,10vw,120px) clamp(24px,6vw,80px);
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,158,11,.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-in { position: relative; z-index: 1; max-width: 540px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(28px,3.5vw,48px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 14px; }
.cta-band h2 .tc { color: var(--teal); }
.cta-band p { font-size: 15px; font-weight: 300; color: var(--dim); line-height: 1.8; margin-bottom: 32px; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── TEASER LINK (home page) ── */
.sec-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  text-decoration: none; margin-top: 32px;
  transition: gap .2s;
}
.sec-link:hover { gap: 12px; }
.sec-link::after { content: '→'; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  header { padding: 0 24px; }
  .nav-d { display: none; }
  .hbg { display: flex; }
  #hero {
    grid-template-columns: 1fr;
    min-height: 0; height: auto;
  }
  .hero-left {
    padding: 0;
    min-height: 105vw;
    border-top: none; border-image: none;
  }
  .hero-phoenix-img {
    object-position: center 55%;
  }
  .hero-phoenix-content {
    padding-bottom: clamp(28px,6vw,48px);
  }
  .hero-right {
    padding: 32px 24px 60px;
    align-items: center; min-height: 0;
  }
  .hero-title { text-align: center; }
  .scroll-hint { margin-top: 110px; }
  .hero-sub { text-align: center; }
  .hero-badge { align-self: center; }
  .hero-btns { justify-content: center; }
  .hero-mark { width: clamp(120px,35vw,180px); height: clamp(120px,35vw,180px); }
  .pq-grid, .offres-grid { grid-template-columns: 1fr; }
  .m-grid { grid-template-columns: 1fr; }
  .dan-wrap { grid-template-columns: 1fr; gap: 40px; }
  .dan-visual { aspect-ratio: 3/2; }
  .ft { grid-template-columns: 1fr; gap: 28px; }
  .cf-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .o-main, .o-sec { padding: 32px 24px; }
  .pq-footer { flex-direction: column; gap: 12px; }
  .pq-bar { width: 40px; height: 3px; }
  .stats-r { gap: 20px; }
  .stat-sep-td { display: none; }
  .stat-num { font-size: 32px; }
  .cmp-cell { padding: 10px 8px; font-size: 11px; }
  .cmp-yes { gap: 6px; font-size: 11px; }
  .cmp-yes::before { min-width: 16px; width: 16px; height: 16px; }
  .cmp-head .cmp-cell { padding: 14px 8px; font-size: 9px; letter-spacing: 1px; }
  .cmp-label { font-size: 11px; }
  .cmp-wrap { overflow-x: auto; }
  .cmp-table { min-width: 340px; }
}
