/* CSS Consult Site - v1.0.0 */

:root {
  --marine: #011627;
  --marine-soft: #02182b;
  --marine-line: #0a2540;
  --marine-mid: #1E343B;
  --terracotta: #DA745D;
  --terracotta-bright: #e89379;
  --coral: #FF6B4A;
  --coral-bright: #FF8762;
  --gold: #D4A373;
  --gold-bright: #E2BB8E;
  --cream: #f9f9f4;
  --signal-red: #c0392b;
  --signal-amber: #e09832;
  --signal-green: #6c9d6f;
  --max-w: 1400px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --display: 'Prompt', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --accent: 'Roboto', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--marine);
  color: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

/* ──────────────────────────────────────────────────────────────
   ÉDITEUR — Toolbar et mode édition
   ────────────────────────────────────────────────────────────── */





















/* ──────────────────────────────────────────────────────────────
   GRAIN TEXTURE
   ────────────────────────────────────────────────────────────── */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.97 0 0 0 0 0.97 0 0 0 0 0.95 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.5;
}

/* ──────────────────────────────────────────────────────────────
   HEADER
   ────────────────────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(1, 22, 39, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--marine-line);
  transition: all 0.3s ease;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: var(--display); font-weight: 500; font-size: 1.4rem;
  letter-spacing: -0.01em; color: var(--cream);
  display: flex; align-items: center; gap: 0.6rem;
}
.logo-mark {
  display: inline-block; width: 36px; height: 36px;
  background: var(--terracotta);
  border-radius: 3px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 12px rgba(218, 116, 93, 0.25);
}
.logo-mark::after {
  content: ''; position: absolute; inset: 5px;
  border: 2px solid var(--marine);
  border-radius: 2px;
}
.logo-text { font-style: italic; font-weight: 400; }
.logo-text strong { font-style: normal; font-weight: 600; }

nav { display: flex; gap: 2rem; }
nav a, nav button {
  font-size: 0.9rem; font-weight: 400; color: var(--cream);
  opacity: 0.7; transition: all 0.2s; position: relative;
  font-family: var(--body); background: 0; border: 0; cursor: pointer; padding: 0;
}
nav a:hover, nav button:hover, nav a.active, nav button.active {
  color: var(--coral-bright); opacity: 1;
}
nav a::after, nav button::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--coral); transition: width 0.3s;
}
nav a.active::after, nav button.active::after { width: 100%; }
nav a:hover::after, nav button:hover::after { width: 100%; }

.cta-header {
  background: var(--coral); color: var(--marine);
  padding: 0.7rem 1.4rem; border-radius: 3px;
  font-size: 0.85rem; font-weight: 600;
  font-family: var(--body);
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.2);
}
.cta-header:hover {
  background: var(--coral-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.3);
}

.nav-toggle { display: none; }
@media (max-width: 880px) {
  nav { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 4px;
    padding: 8px; cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 1.5px; background: var(--cream); transition: 0.3s; }
  nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--marine); padding: 2rem var(--pad-x);
    border-bottom: 1px solid var(--marine-line);
    gap: 1.5rem;
  }
  .cta-header { font-size: 0.78rem; padding: 0.55rem 1rem; }
}

/* ──────────────────────────────────────────────────────────────
   PAGES
   ────────────────────────────────────────────────────────────── */
.ccs-page { padding-top: 80px; }
.page.active { display: block; animation: pageIn 0.4s ease-out; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 85vh; position: relative;
  display: flex; align-items: center;
  padding: 5rem var(--pad-x) 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--marine) 0%, var(--marine-soft) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(218, 116, 93, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(212, 163, 115, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  font-family: var(--accent);
  opacity: 0; animation: rise 0.8s ease-out 0.1s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--terracotta); }

.hero-h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.02; letter-spacing: -0.03em;
  color: var(--cream); margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic; font-weight: 300;
  color: var(--gold-bright);
}
.hero-h1 .accent {
  color: var(--coral);
  font-weight: 400;
}
.hero-h1 > span {
  opacity: 0; animation: rise 1s ease-out forwards;
  display: block;
}
.hero-h1 > span:nth-child(1) { animation-delay: 0.3s; }
.hero-h1 > span:nth-child(2) { animation-delay: 0.6s; }

.hero-lead {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
  color: rgba(249, 249, 244, 0.78);
  max-width: 640px;
  margin-bottom: 2rem;
  opacity: 0; animation: rise 1s ease-out 1.1s forwards;
}
.hero-lead strong {
  font-weight: 500; color: var(--cream);
  background: linear-gradient(180deg, transparent 65%, rgba(218, 116, 93, 0.25) 65%);
  padding: 0 0.1em;
}

.hero-subtitle-tag {
  display: inline-block;
  background: rgba(255, 107, 74, 0.12);
  border: 1px solid rgba(255, 107, 74, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--coral-bright);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0; animation: rise 1s ease-out 1.3s forwards;
}

.hero-loi {
  font-family: var(--body);
  font-size: 0.95rem;
  color: rgba(249, 249, 244, 0.7);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  opacity: 0; animation: rise 1s ease-out 1.4s forwards;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 4rem;
  opacity: 0; animation: rise 1s ease-out 1.5s forwards;
}
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 0.95rem; font-weight: 500;
  font-family: var(--body);
  border-radius: 3px; transition: all 0.25s;
}
.btn-primary {
  background: var(--coral); color: var(--marine);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.25);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--coral-bright);
  transform: translateX(-100%); transition: transform 0.3s;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255, 107, 74, 0.35); }
.btn-secondary {
  background: transparent; color: var(--cream);
  border: 1px solid var(--marine-line);
}
.btn-secondary:hover { border-color: var(--terracotta); color: var(--terracotta-bright); }
.btn-arrow { display: inline-block; transition: transform 0.25s; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(4px); }

.hero-pipes {
  position: absolute; right: -10%; top: 0; bottom: 0;
  width: 60%; max-width: 800px;
  opacity: 0.16; pointer-events: none;
  z-index: 1;
}
@media (max-width: 880px) {
  .hero-pipes { opacity: 0.08; width: 100%; right: -30%; }
}

.hero-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--marine-line);
  border-top: 1px solid var(--marine-line);
  border-bottom: 1px solid var(--marine-line);
  opacity: 0; animation: rise 1s ease-out 1.8s forwards;
}
.kpi {
  background: var(--marine);
  padding: 2rem 1.5rem;
  transition: background 0.3s;
}
.kpi:hover { background: var(--marine-soft); }
.kpi:hover .kpi-num { color: var(--terracotta-bright); }
.kpi-num {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.kpi-num small { font-size: 0.5em; color: var(--gold); font-style: italic; }
.kpi-label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(249, 249, 244, 0.6);
  font-weight: 500;
  font-family: var(--accent);
}
.kpi-source {
  font-size: 0.65rem;
  color: rgba(249, 249, 244, 0.5);
  margin-top: 0.5rem;
  font-style: italic;
}

@media (max-width: 760px) { .hero-kpis { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .kpi { padding: 1.4rem 1rem; } }

/* ──────────────────────────────────────────────────────────────
   SECTIONS générales
   ────────────────────────────────────────────────────────────── */
section.std { padding: clamp(4rem, 10vw, 8rem) 0; position: relative; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--accent);
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--terracotta); }

.section-h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--cream); margin-bottom: 1.5rem;
}
.section-h2 em { font-style: italic; color: var(--gold-bright); font-weight: 300; }

.section-lead {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(249, 249, 244, 0.7);
  max-width: 720px;
  line-height: 1.65;
  margin-bottom: 4rem;
}

/* ──────────────────────────────────────────────────────────────
   PRÉSENTÉISME
   ────────────────────────────────────────────────────────────── */
.presenteisme {
  background: var(--marine-soft);
  border-top: 1px solid var(--marine-line);
  border-bottom: 1px solid var(--marine-line);
}
.presenteisme-grid {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.presenteisme-img {
  position: relative; aspect-ratio: 1024/574;
  border-radius: 3px; overflow: hidden;
  background: var(--marine);
}
.presenteisme-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
  transition: all 0.6s;
}
.presenteisme-img:hover img {
  filter: brightness(1) contrast(1) saturate(1);
  transform: scale(1.02);
}
.presenteisme-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.presenteisme-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--coral); color: var(--marine);
  padding: 0.4rem 0.9rem; border-radius: 3px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}
.presenteisme-text h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.15; letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.presenteisme-text h2 em { font-style: italic; color: var(--gold-bright); }
.presenteisme-text p {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(249, 249, 244, 0.78);
  margin-bottom: 1rem;
}
.presenteisme-text p strong { color: var(--cream); font-weight: 500; }
.presenteisme-fact {
  border-left: 3px solid var(--terracotta);
  padding-left: 1.4rem;
  margin-top: 2rem;
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: 1.1rem; color: var(--cream);
}
.presenteisme-fact strong {
  display: block;
  font-family: var(--display); font-style: normal; font-weight: 500;
  font-size: 2.6rem; color: var(--coral);
  letter-spacing: -0.02em; margin-bottom: 0.3rem;
  line-height: 1;
}
@media (max-width: 900px) { .presenteisme-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   COÛT
   ────────────────────────────────────────────────────────────── */
.cout { background: var(--marine); }
.cout-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--marine-line);
  border: 1px solid var(--marine-line);
}
.cout-card {
  background: var(--marine);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.cout-card:hover { background: var(--marine-soft); }
.cout-num {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.cout-num small { font-size: 0.5em; color: var(--terracotta); }
.cout-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.2rem; line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--cream);
}
.cout-card p { font-size: 0.92rem; color: rgba(249, 249, 244, 0.7); line-height: 1.65; }
.cout-source {
  display: block; margin-top: 1.2rem;
  font-size: 0.75rem; font-style: italic;
  color: rgba(249, 249, 244, 0.5);
}
@media (max-width: 900px) { .cout-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   PLOMBERIE
   ────────────────────────────────────────────────────────────── */
.plomberie {
  background: linear-gradient(180deg, var(--marine) 0%, var(--marine-soft) 100%);
  position: relative; overflow: hidden;
}
.plomberie-decorline {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--terracotta));
}
.plomberie-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.plomberie-text h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 2rem;
  color: var(--cream);
}
.plomberie-text h2 em { font-style: italic; color: var(--gold-bright); }
.plomberie-text h2 .underline { position: relative; display: inline-block; }
.plomberie-text h2 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.05em;
  height: 0.18em; background: rgba(218, 116, 93, 0.35);
  z-index: -1;
}
.plomberie-text p {
  font-size: 1.08rem; line-height: 1.7;
  color: rgba(249, 249, 244, 0.78);
  margin-bottom: 1.2rem;
}
.plomberie-text p strong { color: var(--cream); font-weight: 500; }
.plomberie-quote {
  margin-top: 3rem; padding: 2rem;
  background: var(--marine-soft); border: 1px solid var(--marine-line);
  border-left: 4px solid var(--terracotta);
  position: relative; border-radius: 3px;
}
.plomberie-quote::before {
  content: '"'; position: absolute; top: 0.5rem; left: 1.2rem;
  font-family: var(--display); font-size: 5rem;
  color: var(--terracotta); line-height: 1; opacity: 0.25;
  font-weight: 700;
}
.plomberie-quote p {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: 1.2rem; line-height: 1.5;
  color: var(--cream); margin: 0;
}
.plomberie-quote cite {
  display: block; margin-top: 1rem;
  font-family: var(--body); font-style: normal;
  font-size: 0.85rem; color: var(--gold-bright); font-weight: 500;
}
@media (max-width: 900px) { .plomberie-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   FRPS Manomètres
   ────────────────────────────────────────────────────────────── */
.frps { background: var(--marine); border-top: 1px solid var(--marine-line); }
.frps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.frps-card {
  background: var(--marine-soft);
  border: 1px solid var(--marine-line);
  padding: 1.5rem;
  border-radius: 3px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.frps-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.frps-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.frps-card:hover::before { transform: scaleX(1); }
.frps-card-num {
  position: absolute; top: 0.8rem; right: 1rem;
  font-family: var(--display); font-size: 0.85rem;
  color: var(--gold); font-style: italic; font-weight: 500;
}
.gauge { width: 100%; max-width: 140px; margin: 0 auto 1rem; position: relative; }
.gauge svg { width: 100%; height: auto; }
.gauge-value {
  position: absolute; top: 60%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 500;
  font-size: 1.15rem; color: var(--cream);
}
.frps-name {
  font-family: var(--display); font-weight: 500;
  font-size: 0.98rem; line-height: 1.3;
  margin-bottom: 0.4rem;
  color: var(--cream); text-align: center;
}
.frps-desc {
  font-size: 0.8rem;
  color: rgba(249, 249, 244, 0.6);
  text-align: center; line-height: 1.45;
}
@media (max-width: 1000px) { .frps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .frps-grid { gap: 1rem; } .gauge { max-width: 110px; } }

/* ──────────────────────────────────────────────────────────────
   APPROCHE 4 PHASES (page homepage condensé)
   ────────────────────────────────────────────────────────────── */
.approche-home {
  background: var(--marine-soft);
  border-top: 1px solid var(--marine-line);
  border-bottom: 1px solid var(--marine-line);
}
.phases {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative; margin-top: 3rem;
}
.phases::before {
  content: ''; position: absolute;
  top: 2.5rem; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--terracotta) 20%, var(--terracotta) 80%, transparent 100%);
  z-index: 0;
}
.phase {
  position: relative; z-index: 1;
  background: var(--marine);
  border: 1px solid var(--marine-line);
  padding: 2rem 1.5rem;
  border-radius: 3px;
  transition: all 0.3s;
}
.phase:hover {
  border-color: var(--terracotta);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.phase-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4.5rem; height: 4.5rem;
  background: var(--marine);
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  font-family: var(--display); font-weight: 400; font-size: 1.5rem;
  color: var(--gold-bright);
  margin: 0 auto 1.5rem;
  position: relative;
}
.phase-num::before {
  content: ''; position: absolute; inset: -8px;
  border: 1px dashed rgba(218, 116, 93, 0.3);
  border-radius: 50%;
}
.phase-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600;
  font-family: var(--accent);
  text-align: center; margin-bottom: 0.8rem;
}
.phase h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.25rem; line-height: 1.3;
  text-align: center; margin-bottom: 1rem;
  color: var(--cream);
}
.phase p {
  font-size: 0.88rem;
  color: rgba(249, 249, 244, 0.7);
  line-height: 1.6; text-align: center;
}
@media (max-width: 900px) {
  .phases { grid-template-columns: repeat(2, 1fr); }
  .phases::before { display: none; }
}
@media (max-width: 500px) { .phases { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   POURQUOI
   ────────────────────────────────────────────────────────────── */
.pourquoi { background: var(--marine); }
.pourquoi-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.pourquoi-text h2 em { font-style: italic; color: var(--gold-bright); }
.pourquoi-text p {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(249, 249, 244, 0.78);
  margin-bottom: 1.2rem;
}
.pourquoi-text p strong { color: var(--cream); font-weight: 500; }
.pourquoi-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.p-stat { border-left: 3px solid var(--terracotta); padding-left: 1rem; }
.p-stat-num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1; color: var(--cream);
  margin-bottom: 0.4rem;
}
.p-stat-num small { font-size: 0.5em; color: var(--terracotta); }
.p-stat-label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(249, 249, 244, 0.6); font-family: var(--accent);
}
.experts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.expert-card {
  background: var(--marine-soft);
  border: 1px solid var(--marine-line);
  padding: 2rem 1.5rem;
  border-radius: 3px; transition: all 0.3s;
}
.expert-card:hover { border-color: var(--terracotta); }
.expert-avatar {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--coral) 100%);
  border-radius: 50%;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 500; font-size: 1.7rem;
  color: var(--marine);
  box-shadow: 0 6px 20px rgba(218, 116, 93, 0.2);
}
.expert-card h4 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.2rem; margin-bottom: 0.2rem;
  color: var(--cream);
}
.expert-role {
  font-size: 0.85rem; font-style: italic;
  color: var(--gold-bright); margin-bottom: 0.8rem;
}
.expert-card p {
  font-size: 0.88rem; color: rgba(249, 249, 244, 0.75);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .pourquoi-grid { grid-template-columns: 1fr; }
  .experts { grid-template-columns: 1fr; }
}
@media (max-width: 500px) { .pourquoi-stats { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   CTA FINALE
   ────────────────────────────────────────────────────────────── */
.cta-final {
  background: var(--marine);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(218, 116, 93, 0.12) 0%, transparent 60%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.cta-final h2 em { font-style: italic; color: var(--gold-bright); }
.cta-final p {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: 1.2rem;
  color: rgba(249, 249, 244, 0.78);
  max-width: 580px; margin: 0 auto 3rem;
}
.cta-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem; color: rgba(249, 249, 244, 0.7);
}
.cta-meta-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-meta-item::before { content: '✓'; color: var(--gold-bright); font-weight: 600; }

/* ──────────────────────────────────────────────────────────────
   PAGE APPROCHE — Programme détaillé
   ────────────────────────────────────────────────────────────── */
.approche-hero { background: linear-gradient(180deg, var(--marine) 0%, var(--marine-soft) 100%); padding: 5rem var(--pad-x) 4rem; }
.approche-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.approche-h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.5rem; max-width: 920px;
}
.approche-h1 em { font-style: italic; color: var(--gold-bright); }
.approche-h1 .accent { color: var(--coral); font-weight: 400; }
.approche-lead {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: rgba(249, 249, 244, 0.78);
  max-width: 720px;
}

.phases-detailed {
  background: var(--marine);
  padding: 6rem 0;
}
.phases-list {
  display: flex; flex-direction: column;
  gap: 1.5rem; margin-top: 3rem;
}
.phase-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  background: var(--marine-soft);
  border: 1px solid var(--marine-line);
  border-radius: 3px;
  padding: 2.5rem;
  align-items: start;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.phase-row:hover {
  border-color: var(--terracotta);
  transform: translateX(4px);
}
.phase-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--terracotta);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s;
}
.phase-row:hover::before { transform: scaleY(1); }

.phase-big-num {
  font-family: var(--display); font-weight: 200;
  font-size: 5rem; line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.04em;
}
.phase-content h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.6rem; line-height: 1.2;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.phase-content .phase-meta {
  font-family: var(--accent);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 500;
  margin-bottom: 1.2rem;
}
.phase-content p {
  font-size: 1rem; line-height: 1.7;
  color: rgba(249, 249, 244, 0.75);
  margin-bottom: 1.2rem;
}
.phase-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.2rem;
}
.phase-tag {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  background: rgba(218, 116, 93, 0.12);
  border: 1px solid rgba(218, 116, 93, 0.3);
  border-radius: 999px;
  color: var(--terracotta-bright);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .phase-row { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }
  .phase-big-num { font-size: 3.5rem; }
}

.versus {
  background: var(--marine-soft);
  border-top: 1px solid var(--marine-line);
  border-bottom: 1px solid var(--marine-line);
  padding: 6rem 0;
}
.versus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 3rem;
}
.versus-col {
  padding: 2.5rem;
  border-radius: 3px;
  border: 1px solid var(--marine-line);
}
.versus-col.bad {
  background: rgba(192, 57, 43, 0.04);
  border-color: rgba(192, 57, 43, 0.25);
}
.versus-col.good {
  background: rgba(108, 157, 111, 0.04);
  border-color: rgba(108, 157, 111, 0.3);
}
.versus-col h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.4rem; margin-bottom: 1.5rem;
  color: var(--cream);
  display: flex; align-items: center; gap: 0.5rem;
}
.versus-col.bad h3::before { content: '✕'; color: var(--signal-red); font-size: 1.2rem; }
.versus-col.good h3::before { content: '✓'; color: var(--signal-green); font-size: 1.3rem; }
.versus-col ul { list-style: none; }
.versus-col li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--marine-line);
  font-size: 0.95rem;
  color: rgba(249, 249, 244, 0.78);
  line-height: 1.5;
}
.versus-col li:last-child { border-bottom: 0; }
@media (max-width: 800px) { .versus-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   PAGE LOI 27 — FAQ accordion
   ────────────────────────────────────────────────────────────── */
.loi-hero {
  background: linear-gradient(180deg, var(--marine) 0%, var(--marine-soft) 100%);
  padding: 5rem var(--pad-x) 4rem;
}

.loi-key-facts {
  background: var(--marine);
  padding: 4rem 0;
  border-top: 1px solid var(--marine-line);
}
.loi-facts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.loi-fact-card {
  background: var(--marine-soft);
  border: 1px solid var(--marine-line);
  padding: 2rem 1.5rem;
  border-radius: 3px;
  border-left: 3px solid var(--coral);
}
.loi-fact-card h4 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.1rem; margin-bottom: 0.8rem;
  color: var(--cream);
}
.loi-fact-card p {
  font-size: 0.92rem;
  color: rgba(249, 249, 244, 0.75);
  line-height: 1.65;
}
@media (max-width: 900px) { .loi-facts-grid { grid-template-columns: 1fr; } }

.faq {
  background: var(--marine);
  padding: 6rem 0;
}
.faq-list { max-width: 880px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--marine-line);
  transition: all 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--marine-line); }
.faq-q {
  width: 100%; text-align: left;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 400;
  color: var(--cream);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-bright); }
.faq-q-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta);
  font-size: 1.2rem;
  transition: all 0.3s;
}
.faq-item.open .faq-q-icon {
  background: var(--terracotta);
  color: var(--marine);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-a-inner {
  padding: 0 0 1.5rem 0;
  font-size: 1rem;
  color: rgba(249, 249, 244, 0.78);
  line-height: 1.75;
  max-width: 720px;
}
.faq-a-inner p { margin-bottom: 0.8rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--cream); font-weight: 500; }
.faq-item.open .faq-a { max-height: 600px; }

/* ──────────────────────────────────────────────────────────────
   PAGE CONTACT
   ────────────────────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(180deg, var(--marine) 0%, var(--marine-soft) 100%);
  padding: 5rem var(--pad-x) 4rem;
}
.contact-section {
  background: var(--marine);
  padding: 4rem 0 6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.contact-form {
  background: var(--marine-soft);
  border: 1px solid var(--marine-line);
  padding: 2.5rem;
  border-radius: 3px;
}
.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-family: var(--accent); font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--marine);
  border: 1px solid var(--marine-line);
  border-radius: 3px;
  padding: 0.9rem 1rem;
  font-family: var(--body); font-size: 0.95rem;
  color: var(--cream);
  transition: border 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--coral); color: var(--marine);
  padding: 1rem 2rem;
  font-size: 0.95rem; font-weight: 600;
  font-family: var(--body);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
  width: 100%;
}
.form-submit:hover { background: var(--coral-bright); transform: translateY(-1px); }
.form-note {
  font-size: 0.82rem;
  color: rgba(249, 249, 244, 0.6);
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}

.contact-side h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.3rem; margin-bottom: 1rem;
  color: var(--cream);
}
.contact-side ul {
  list-style: none; margin-bottom: 2rem;
}
.contact-side ul li {
  padding: 0.6rem 0;
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(249, 249, 244, 0.78);
  line-height: 1.65;
}
.contact-side ul li::before {
  content: '✓'; color: var(--gold-bright);
  flex-shrink: 0; font-weight: 600;
}
.contact-coords {
  background: var(--marine-soft);
  border: 1px solid var(--marine-line);
  border-left: 3px solid var(--terracotta);
  padding: 1.5rem 1.5rem;
  border-radius: 3px;
}
.contact-coords-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--cream);
}
.contact-coords-item .icon {
  width: 32px; height: 32px;
  background: rgba(218, 116, 93, 0.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--terracotta-bright);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-coords-item a { color: var(--cream); transition: color 0.2s; }
.contact-coords-item a:hover { color: var(--coral-bright); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
footer {
  background: var(--marine-soft);
  border-top: 1px solid var(--marine-line);
  padding: 4rem var(--pad-x) 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.4rem; margin-bottom: 1rem;
  color: var(--cream);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(249, 249, 244, 0.7);
  line-height: 1.65; max-width: 320px;
}
.footer-col h5 {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600;
  font-family: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a, .footer-col button {
  font-size: 0.9rem;
  color: rgba(249, 249, 244, 0.7);
  transition: color 0.2s;
  background: 0; border: 0; padding: 0; cursor: pointer; font-family: inherit;
  text-align: left;
}
.footer-col a:hover, .footer-col button:hover { color: var(--coral-bright); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--marine-line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
  color: rgba(249, 249, 244, 0.6);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   ANIMATIONS
   ────────────────────────────────────────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--signal-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  margin-right: 0.4rem;
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .sticky-cta-mobile {
    position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
    z-index: 88;
    background: var(--coral); color: var(--marine);
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600; font-size: 0.95rem;
    font-family: var(--body);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
}
@media (min-width: 761px) { .sticky-cta-mobile { display: none; } }

::selection { background: var(--terracotta); color: var(--marine); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--marine); }
::-webkit-scrollbar-thumb { background: var(--marine-line); }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }
/* ──────────────────────────────────────────────────────────────
   FRPS GROUPS (Intervention vs Référé) — v1.0 additions
   ────────────────────────────────────────────────────────────── */
.frps-group {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px dashed rgba(218, 116, 93, 0.3);
}
.frps-group:first-of-type { margin-top: 3rem; padding-top: 0; border-top: 0; }
.frps-group-title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: var(--cream);
    margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.7rem;
}
.frps-group-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(218, 116, 93, 0.15);
    border: 1px solid var(--terracotta);
    font-size: 1.2rem;
}
.frps-group-icon.refer {
    background: rgba(212, 163, 115, 0.12);
    border-color: var(--gold);
}
.frps-group-lead {
    color: rgba(249, 249, 244, 0.7);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: 2rem;
}

.frps-badge {
    position: absolute; top: 0.8rem; left: 1rem;
    font-family: var(--accent);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    z-index: 2;
}
.frps-badge-action {
    background: rgba(255, 107, 74, 0.18);
    color: var(--coral-bright);
    border: 1px solid rgba(255, 107, 74, 0.35);
}
.frps-badge-refer {
    background: rgba(212, 163, 115, 0.15);
    color: var(--gold-bright);
    border: 1px solid rgba(212, 163, 115, 0.4);
}

.frps-grid-refer {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 700px) {
    .frps-grid-refer { grid-template-columns: 1fr; }
}

.frps-card-refer {
    background: linear-gradient(135deg, var(--marine-soft) 0%, rgba(30, 52, 59, 0.5) 100%);
    border-color: rgba(212, 163, 115, 0.25);
}
.frps-card-refer::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.frps-card-refer:hover {
    border-color: var(--gold);
}

.frps-refer-note {
    margin-top: 2rem;
    background: rgba(212, 163, 115, 0.08);
    border-left: 3px solid var(--gold);
    padding: 1.2rem 1.5rem;
    border-radius: 3px;
    max-width: 880px;
}
.frps-refer-note p {
    color: rgba(249, 249, 244, 0.85);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}
.frps-refer-note strong {
    color: var(--gold-bright);
    font-weight: 600;
}

.ccs-page { padding-top: 0; }

/* ──────────────────────────────────────────────────────────────
   SCOPE SECTION (Page Approche) — v1.0
   ────────────────────────────────────────────────────────────── */
.scope-section {
    background: var(--marine);
    padding: 6rem 0;
}
.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.scope-card {
    background: var(--marine-soft);
    border: 1px solid var(--marine-line);
    border-radius: 3px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}
.scope-card.scope-action {
    border-left: 4px solid var(--coral);
}
.scope-card.scope-refer {
    border-left: 4px solid var(--gold);
}
.scope-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.scope-icon {
    width: 60px; height: 60px;
    background: rgba(218, 116, 93, 0.12);
    border: 1px solid var(--terracotta);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.scope-refer .scope-icon {
    background: rgba(212, 163, 115, 0.12);
    border-color: var(--gold);
}
.scope-card h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cream);
}
.scope-card p {
    color: rgba(249, 249, 244, 0.78);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--marine-line);
    padding-top: 1rem;
}
.scope-list li {
    padding: 0.6rem 0;
    color: var(--cream);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(10, 37, 64, 0.5);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.scope-list li:last-child { border-bottom: 0; }
.scope-list li::before {
    content: '✓';
    color: var(--gold-bright);
    margin-right: 0.6rem;
    flex-shrink: 0;
}
.scope-pill {
    background: rgba(212, 163, 115, 0.15);
    color: var(--gold-bright);
    border: 1px solid rgba(212, 163, 115, 0.35);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
    margin-left: auto;
}
@media (max-width: 800px) {
    .scope-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   v1.0.1 — Restructure FRPS section + badge overlay + fullwidth
   ────────────────────────────────────────────────────────────── */

/* Badge "Le coût caché" en overlay en bas de la photo */
.presenteisme-img { position: relative; }
.presenteisme-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(1, 22, 39, 0.85) 100%);
    z-index: 2;
}
.presenteisme-img .presenteisme-tag {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* FRPS : 1 seule grille de 8 manomètres, F6/F7 subtilement marqués */
.frps-tagline {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--gold-bright);
    margin: 0.5rem 0 2.5rem;
    line-height: 1.5;
}
.frps-tagline strong {
    color: var(--cream);
    font-weight: 500;
    font-style: normal;
}
.frps .frps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 0;
}
@media (max-width: 1100px) { .frps .frps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .frps .frps-grid { grid-template-columns: 1fr; } }

/* Marquage TRÈS subtil pour F6/F7 (pas de gros badge, juste un asterisque) */
.frps-card-refer-soft {
    /* Aucun changement visuel marqué — on garde la cohérence */
    /* La distinction se fait par l'asterisque dans le nom */
}
.frps-asterisk {
    color: var(--gold-bright);
    font-weight: 600;
    font-size: 0.75em;
    margin-left: 2px;
}
.frps-mini-note {
    margin-top: 2rem;
    padding: 0.8rem 0 0;
    border-top: 1px solid var(--marine-line);
    font-size: 0.85rem;
    color: rgba(249, 249, 244, 0.55);
    line-height: 1.65;
    max-width: 880px;
    font-style: italic;
}
.frps-mini-note strong {
    color: rgba(249, 249, 244, 0.75);
    font-weight: 500;
    font-style: normal;
}
.frps-mini-asterisk {
    color: var(--gold-bright);
    font-weight: 600;
    margin-right: 0.3rem;
    font-style: normal;
}

/* On supprime les anciennes règles frps-group / frps-grid-refer si elles restent */
.frps-group,
.frps-group-refer,
.frps-grid-refer,
.frps-card-refer,
.frps-badge,
.frps-refer-note,
.frps-group-title,
.frps-group-lead,
.frps-group-icon { display: revert; } /* Garde au cas où d'anciens caches */

/* Fullwidth body force — niveau CSS file (en plus du inline) */
body.ccs-fullwidth-page {
    overflow-x: hidden;
}
body.ccs-fullwidth-page .elementor-section,
body.ccs-fullwidth-page .elementor-section-wrap,
body.ccs-fullwidth-page .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Hello Elementor / GeneratePress / Astra fullwidth overrides */
body.ccs-fullwidth-page .ast-container,
body.ccs-fullwidth-page .ast-row,
body.ccs-fullwidth-page .ast-grid-container,
body.ccs-fullwidth-page .gp-container,
body.ccs-fullwidth-page .inside-article,
body.ccs-fullwidth-page .hfeed.site,
body.ccs-fullwidth-page #wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ──────────────────────────────────────────────────────────────
   v1.0.2 — FAQ business minimaliste + Form labels visibles
   ────────────────────────────────────────────────────────────── */

/* === FAQ STYLE BUSINESS (override v1.0.0) === */
.faq-list {
    max-width: 880px;
    margin: 3rem auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}
.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.015);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 1.35rem 0.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--body);  /* Inter (business) — pas Prompt (display) */
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--cream);
    letter-spacing: -0.005em;
    cursor: pointer;
    background: 0;
    border: 0;
    transition: color 0.2s;
}
.faq-q:hover {
    color: var(--gold-bright);
}
.faq-q-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 163, 115, 0.65);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease, color 0.2s;
}
.faq-item.open .faq-q-icon {
    background: transparent !important;
    color: var(--gold-bright);
    transform: rotate(45deg);
}
.faq-item.open .faq-q {
    color: var(--gold-bright);
    font-weight: 500;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-a-inner {
    padding: 0 0 1.6rem 0;
    font-family: var(--body);
    font-size: 0.97rem;
    color: rgba(249, 249, 244, 0.72);
    line-height: 1.75;
    max-width: 760px;
}
.faq-a-inner p {
    margin-bottom: 0.9rem;
}
.faq-a-inner p:last-child {
    margin-bottom: 0;
}
.faq-a-inner strong {
    color: var(--cream);
    font-weight: 500;
}
.faq-item.open .faq-a {
    max-height: 700px;
}

/* Section FAQ : titre plus business aussi (moins display, plus body) */
.faq .section-h2 {
    margin-bottom: 1rem;
}

/* === FORMULAIRE CONTACT — Labels mieux visibles === */
.ccs-form-fr .form-row {
    margin-bottom: 1.4rem;
}
.ccs-form-fr .form-row label {
    display: block;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    color: var(--cream) !important;
    font-family: var(--body) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin-bottom: 0.55rem !important;
}
.ccs-form-fr .form-row input,
.ccs-form-fr .form-row select,
.ccs-form-fr .form-row textarea {
    width: 100%;
    padding: 0.95rem 1.1rem !important;
    background: var(--marine) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 4px !important;
    font-family: var(--body) !important;
    font-size: 0.98rem !important;
    color: var(--cream) !important;
    transition: border-color 0.2s, background 0.2s;
}
.ccs-form-fr .form-row input:hover,
.ccs-form-fr .form-row select:hover,
.ccs-form-fr .form-row textarea:hover {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(2, 24, 43, 0.6) !important;
}
.ccs-form-fr .form-row input:focus,
.ccs-form-fr .form-row select:focus,
.ccs-form-fr .form-row textarea:focus {
    outline: none !important;
    border-color: var(--terracotta) !important;
    background: var(--marine) !important;
    box-shadow: 0 0 0 3px rgba(218, 116, 93, 0.12);
}
.ccs-form-fr .form-row input::placeholder,
.ccs-form-fr .form-row textarea::placeholder {
    color: rgba(249, 249, 244, 0.35) !important;
    font-style: italic;
    font-weight: 300;
}
.ccs-form-fr .form-row select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23f9f9f4' stroke-width='1.5'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.1rem center !important;
    background-size: 12px !important;
    padding-right: 2.5rem !important;
}
.ccs-form-fr .form-row select option {
    background: var(--marine);
    color: var(--cream);
}
.ccs-form-fr .form-submit {
    background: var(--coral) !important;
    color: var(--marine) !important;
    padding: 1.05rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: var(--body) !important;
    border: 0 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s;
    margin-top: 0.5rem !important;
    width: 100%;
    box-shadow: 0 6px 18px rgba(255, 107, 74, 0.18);
}
.ccs-form-fr .form-submit:hover {
    background: var(--coral-bright) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(255, 107, 74, 0.28);
}
.ccs-form-fr .form-note {
    font-size: 0.83rem;
    color: rgba(249, 249, 244, 0.55);
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
    font-family: var(--body);
}
/* Validation HTML5 - état invalide */
.ccs-form-fr .form-row input:invalid:not(:placeholder-shown),
.ccs-form-fr .form-row textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(192, 57, 43, 0.5) !important;
}
