/* ===== Reset simple ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  background: #0b0f1a;
}

/* ===== Variables ===== */
:root {
  --brand-orange: #f6a623;
  --brand-dark: #262626;
  --nav-text: #111827;
  --nav-bg: #ffffff;
  --hero-overlay: rgba(0, 0, 0, 0.45);
  --radius-pill: 999px;
}

/* Conteneur global pour limiter la largeur si tu veux */
.page-wrapper {
  min-height: 100vh;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Image de fond – à remplacer par ton export Figma */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-miraj.jpeg"); /* <-- change le chemin ici */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* léger voile foncé par dessus l’image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent),
              linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  mix-blend-mode: multiply;
  z-index: 2;
}

/* ===== NAVBAR CAPSULE ===== */
.main-header {
  position: relative;
  z-index: 5;
  padding-top: 24px;
}

.nav-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  border-radius: var(--radius-pill);
  padding: 10px 26px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-right: 32px;
}

.logo-main {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #111827;
  text-transform: uppercase;
}

.logo-main span {
  color: var(--brand-orange);
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  margin-top: -2px;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 2px;
}

/* Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--nav-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-orange);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-item-with-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-caret {
  font-size: 0.7rem;
  color: #6b7280;
}

/* CTA bouton à droite */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #4b5563, var(--brand-orange));
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-cta-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Burger mobile (caché sur desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 12px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

/* ===== Contenu hero (texte + flèche) ===== */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1220px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - 130px);
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw + 1rem, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
  color: #f9fafb;
}

/* Flèche de slider à droite */
.hero-arrow {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-inner {
    padding: 10px 18px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    padding: 14px 20px;
    background: #ffffff;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.nav-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-cta {
    display: none; /* tu peux le garder si tu veux */
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .hero-arrow {
    margin-top: 32px;
    align-self: center;
  }
}

@media (max-width: 600px) {
  .logo-sub,
  .logo-tagline {
    display: none;
  }

  .logo-main {
    font-size: 1.1rem;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }
}
/* ===== SECTION A PROPOS ===== */
.section-about {
  background: #f9fafb;
  color: #111827;
  padding: 80px 20px 90px;
}

.about-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

/* partie “SOMMES NOUS ?” en orange */
.about-title span {
  color: var(--brand-orange);
}

/* trait orangé façon brush sous le titre */
.about-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 220px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 50%, #ffd27a, transparent 60%),
              linear-gradient(90deg, #fbbf24, #f97316);
  opacity: 0.95;
}

/* texte long centré, largeur limitée */
.about-text {
  margin: 40px auto 0;
  max-width: 900px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5563;
}
/* ===== SECTION CHIFFRES CLES ===== */
.section-stats {
  background: #ffffff;
  padding: 60px 20px 80px;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stats-illustration img {
  max-width: 100%;
  height: auto;
  display: block;
}

.stats-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 230px;
}

.stat-item {
  text-align: left;
}

.stat-value {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  color: #111827;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-items {
    align-items: center;
  }

  .stat-item {
    text-align: center;
  }
}
/* ===== SECTION POURQUOI INTERVENIR MIRAJ ===== */
.section-why {
  position: relative;
  padding: 90px 20px 100px;
  background: #f5f7fb;
  overflow: hidden;
}

/* légère vague en haut (optionnel) */
.section-why::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  border-bottom-left-radius: 50% 60%;
  border-bottom-right-radius: 50% 60%;
}

.why-container {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.why-title {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.why-title span {
  color: var(--brand-orange);
}

/* trait orangé sous le titre */
.why-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 240px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 50%, #ffd27a, transparent 60%),
              linear-gradient(90deg, #fbbf24, #f97316);
}

/* Cartes */
.why-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.why-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px 26px 34px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.why-icon {
  font-size: 2rem;
  color: var(--brand-orange);
  margin-bottom: 14px;
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 18px;
}

.why-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #111827;
}

.why-list li + li {
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .section-why {
    padding-top: 70px;
  }
}
/* ===== SECTION DOMAINES D’EXPERTISE ===== */
.section-domains {
  padding: 90px 20px 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-domains::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #f5f7fb;
  border-bottom-left-radius: 50% 60%;
  border-bottom-right-radius: 50% 60%;
}

.domains-container {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.domains-title {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.domains-title span {
  color: var(--brand-orange);
}

.domains-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 260px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 50%, #ffd27a, transparent 60%),
              linear-gradient(90deg, #fbbf24, #f97316);
}

/* Onglets */
.domains-tabs {
  margin-top: 55px;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.domain-tab {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 10px 26px;
  font-size: 0.95rem;
  font-weight: 500;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.domain-tab:hover {
  border-color: var(--brand-orange);
}

.domain-tab.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(90deg, #4b5563, var(--brand-orange));
}

/* Panel */
.domains-panels {
  margin-top: 36px;
}

.domain-panel {
  display: none;
}

.domain-panel.is-active {
  display: block;
}

.domain-panel-inner {
  margin-top: 10px;
  background: #fdfefe;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  padding: 34px 34px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.domain-text {
  max-width: 620px;
  text-align: left;
}

.domain-icon {
  font-size: 2rem;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.domain-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

.domain-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5563;
}

.domain-visual img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 960px) {
  .domain-panel-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .domain-visual img {
    max-width: 220px;
    margin: 0 auto;
  }

  .domain-text {
    max-width: 100%;
  }

  .domain-tab {
    white-space: normal;
    text-align: center;
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

@media (max-width: 900px) {
  .domains-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .domain-tab {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}
/* ===== SECTION CITATION ===== */
.section-quote {
  position: relative;
  background: #455563; /* gris bleu foncé comme maquette */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* vague du haut */
.section-quote::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  border-bottom-left-radius: 50% 60%;
  border-bottom-right-radius: 50% 60%;
}

/* vague du bas */
.section-quote::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  border-top-left-radius: 50% 60%;
  border-top-right-radius: 50% 60%;
}

.quote-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.quote-text {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  color: #ffffff;
  margin: 20px 0;
  text-transform: none; /* garder texte naturel */
}

.quote-icon {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.6;
  display: inline-block;
}

.quote-icon-right {
  margin-left: 10px;
}
/* ===== SECTION NOS GARANTIES ===== */
.section-guarantees {
  background: #ffffff;
  padding: 80px 20px 90px;
  text-align: center;
}

.guarantees-container {
  max-width: 1120px;
  margin: 0 auto;
}

.guarantees-title {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.guarantees-title span {
  color: var(--brand-orange);
}

/* trait orangé sous le titre */
.guarantees-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 250px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 50%, #ffd27a, transparent 60%),
              linear-gradient(90deg, #fbbf24, #f97316);
}

/* Cartes garanties */
.guarantees-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.guarantee-card {
  background: #fdfefe;
  border-radius: 26px;
  padding: 28px 24px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  text-align: left;
}

/* pastille numérotée */
.guarantee-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 3px solid var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-orange);
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
}

.guarantee-badge::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 2px solid rgba(249, 168, 37, 0.6);
}

.guarantee-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.guarantee-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
}

/* flèches en bas */
.guarantees-arrows {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.guarantee-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid var(--brand-orange);
  background: #ffffff;
  color: var(--brand-orange);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.guarantee-arrow:hover {
  background: var(--brand-orange);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 960px) {
  .guarantees-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .guarantees-cards {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    text-align: left;
  }
}
/* ===== SECTION COUT REEL D’UN IMPAYE ===== */
.section-cost {
  background: #ffffff;
  padding: 70px 20px 80px;
}

.cost-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cost-title {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111827;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.cost-title span {
  color: var(--brand-orange);
}

/* trait orange façon “brush” sous le titre */
.cost-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 280px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 50%, #ffd27a, transparent 60%),
              linear-gradient(90deg, #fbbf24, #f97316);
}

.cost-text {
  margin-top: 38px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5563;
}
/* ===== SECTION CONSEQUENCES ===== */
.section-consequences {
  background: #ffffff;
  padding: 40px 20px 80px;
}

.conseq-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* Cartes */
.conseq-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.conseq-card {
  background: #fdfefe;
  border-radius: 22px;
  padding: 26px 24px 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.conseq-title {
  color: var(--brand-orange);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.conseq-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Illustration */
.conseq-visual img {
  max-width: 340px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 960px) {
  .conseq-container {
    flex-direction: column;
    align-items: center;
  }

  .conseq-visual img {
    max-width: 260px;
    margin-top: 20px;
  }

  .conseq-cards {
    width: 100%;
  }
}
/* ===== SECTION SIMULATEUR ===== */
.section-simulator {
  position: relative;
  background: #f5f7fb;
  padding: 80px 20px 90px;
  text-align: center;
  overflow: hidden;
}

/* Vagues haut/bas (optionnel comme sur ta maquette) */
.section-simulator::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  border-bottom-left-radius: 50% 60%;
  border-bottom-right-radius: 50% 60%;
}

.section-simulator::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  border-top-left-radius: 50% 60%;
  border-top-right-radius: 50% 60%;
}

.simu-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.simu-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

.simu-title span {
  color: var(--brand-orange);
}

.simu-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.simu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 26px;
}

.simu-field {
  text-align: left;
}

.simu-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #111827;
}

.simu-input-wrap {
  border-radius: 999px;
  border: 2px solid #111827;
  padding: 8px 18px;
  background: #ffffff;
}

.simu-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.98rem;
  background: transparent;
  color: #111827;
}

.simu-input-wrap input::placeholder {
  color: #9ca3af;
}

/* Résultat à droite */
.simu-result {
  text-align: right;
  font-weight: 700;
  color: var(--brand-orange);
  font-size: 2.4rem;
  white-space: nowrap;
}

.simu-result-currency {
  font-size: 1.5rem;
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .simu-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .simu-result {
    text-align: left;
    margin-top: 10px;
  }
}
/* ===== SECTION TAUX DE RECOUVREMENT ===== */
.section-recovery {
  background: #ffffff;
  padding: 80px 20px 90px;
}

.recovery-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.recovery-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 28px;
}

.recovery-title span {
  color: var(--brand-orange);
}

/* Brush sous le sous-titre */
.recovery-title span {
  position: relative;
  display: inline-block;
}

.recovery-title span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 260px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 50%, #ffd27a, transparent 60%),
              linear-gradient(90deg, #fbbf24, #f97316);
}

.recovery-text {
  max-width: 820px;
  margin: 40px auto 40px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5563;
}

/* Bandeau orange + personnages */
.recovery-banner {
  margin: 0 auto 40px;
  max-width: 900px;
}

.recovery-banner-people {
  background: #ffffff;
  padding: 6px 0 0;
}

.recovery-banner-people img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Cartes de taux */
.recovery-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  justify-items: center;
}

.recovery-stat-card {
  width: 100%;
  max-width: 200px;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.recovery-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.recovery-stat-label {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 960px) {
  .recovery-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .recovery-stats {
    grid-template-columns: 1fr 1fr;
  }

  .recovery-title {
    font-size: 1.6rem;
  }
}
/* ===== SECTION DOCUMENTATION MIRAJ ===== */
.section-docs {
  background: #ffffff;
  padding: 80px 20px 90px;
}

.docs-container {
  max-width: 1120px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.docs-text {
  flex: 1.2;
}

.docs-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.docs-title span {
  color: var(--brand-orange);
}

/* brush sous le mot DOCUMENTATION */
.docs-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 220px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 50%, #ffd27a, transparent 60%),
              linear-gradient(90deg, #fbbf24, #f97316);
}

.docs-intro {
  margin-top: 30px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 520px;
}

.docs-highlight {
  color: var(--brand-orange);
  font-weight: 600;
}

.docs-learn {
  margin-top: 26px;
}

.docs-learn-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.docs-learn ul {
  padding-left: 18px;
  list-style: disc;
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.8;
}

/* Illustration à droite */
.docs-visual {
  flex: 0.9;
  text-align: right;
}

.docs-visual img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Liste de guides */
.docs-list {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.docs-item {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 14px 18px 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.docs-item-title {
  font-size: 0.98rem;
  font-weight: 500;
  color: #111827;
}

/* bouton Télécharger */
.docs-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4b5563, var(--brand-orange));
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.docs-download-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 960px) {
  .docs-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .docs-visual {
    align-self: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .docs-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .docs-download {
    align-self: flex-end;
  }
}
/* ===== SECTION CTA FINAL ===== */
.section-final-cta {
  position: relative;
  background: #455563; /* même bleu que la citation */
  color: #ffffff;
  padding: 80px 20px 90px;
  text-align: center;
  overflow: hidden;
}

/* Vagues haut/bas comme sur la maquette */
.section-final-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  border-bottom-left-radius: 50% 60%;
  border-bottom-right-radius: 50% 60%;
}

.section-final-cta::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #e5e7eb;
  border-top-left-radius: 50% 60%;
  border-top-right-radius: 50% 60%;
}

.final-cta-container {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  z-index: 1;
}

.final-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 16px;
}

.final-cta-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 26px;
}

/* Bouton */
.final-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 24px;
  border-radius: 999px;
  background: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  position: relative;
  overflow: hidden;
}

/* dégradé orange à droite du bouton */
.final-cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(75,85,99,0.02), var(--brand-orange));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.final-cta-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--brand-orange);
  background: #ffffff;
}

.final-cta-button:hover .final-cta-icon {
  background: var(--brand-orange);
  color: #ffffff;
}
/* ===== SECTION FAQ ===== */
.section-faq {
  background: #ffffff;
  padding: 80px 20px 90px;
}

.faq-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.faq-visual {
  flex: 0.9;
}

.faq-visual img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.faq-content {
  flex: 1.4;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 26px;
}

/* Liste */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item / question */
.faq-item {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden; /* pour arrondi du bas si réponse ouverte */
}

/* bouton question */
.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 0.96rem;
  text-align: left;
  color: #111827;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--brand-orange);
  background: #ffffff;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

/* réponse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

/* état ouvert */
.faq-item.is-open .faq-answer {
  max-height: 200px; /* suffisant pour 2–3 lignes */
  padding-bottom: 12px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 960px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-visual {
    text-align: center;
  }

  .faq-visual img {
    margin: 0 auto 10px;
  }

  .faq-title {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .faq-question {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 16px;
  }
}
/* ===== SECTION CONTACT ===== */
.section-contact {
  background: #ffffff;
  padding: 80px 20px 90px;
}

.contact-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.contact-title-gray {
  color: #374151;
}

.contact-title-orange {
  color: var(--brand-orange);
  position: relative;
  display: inline-block;
}

/* Image des lignes décoratives sous NOUS */
.contact-title-decoration {
  position: absolute;
  left: 0;
  bottom: -8px;
  height: auto;
  width: auto;
  max-width: 140px;
  display: block;
  pointer-events: none;
}

/* Carte formulaire */
.contact-form {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  padding: 26px 26px 24px;
  text-align: left;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-field {
  flex: 1;
  min-width: 180px;
}

.contact-field-full {
  flex: 1 1 100%;
}

.contact-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 6px;
}

/* Inputs arrondis */
.contact-field {
  position: relative;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  font-size: 0.96rem;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 10px 16px;
  outline: none;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(to bottom, #374151, var(--brand-orange)) border-box;
  color: #111827;
  transition: box-shadow 0.2s ease;
}

.contact-field textarea {
  border-radius: 18px;
  min-height: 150px;
  resize: vertical;
  padding-top: 12px;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(to bottom, #374151, var(--brand-orange)) border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9ca3af;
}

.contact-field input:focus,
.contact-field textarea:focus {
  box-shadow: 0 0 0 1px rgba(249, 159, 28, 0.35);
}

/* Message d'erreur pour l'email */
.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 18px;
}

.contact-field input.error {
  border-image: linear-gradient(to bottom, #ef4444, #dc2626) 1;
}

.contact-field input.error:focus {
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.35);
}

/* Messages de statut du formulaire */
.form-status {
  margin: 16px 0;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  animation: slideDown 0.3s ease;
}

.form-status.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Bouton */
.contact-actions {
  margin-top: 8px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #4b5563, var(--brand-orange));
}

.contact-btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 720px) {
  .contact-form {
    padding: 22px 18px 20px;
  }

  .contact-row {
    flex-direction: column;
  }
}
/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: #e5e7eb; /* gris clair */
  padding-top: 70px;
  margin-top: 0;
}

/* Vague en haut du footer */
.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: #e5e7eb;
  border-top-left-radius: 50% 60%;
  border-top-right-radius: 50% 60%;
}

/* Contenu principal : 4 colonnes fixes sur desktop */
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

/* Colonne logo + description */
.footer-brand {
  max-width: 260px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 14px;
}

.footer-desc {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Réseaux sociaux */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--brand-orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 166, 35, 0.3);
}

/* Titres de colonnes */
.footer-title {
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-title-orange {
  color: var(--brand-orange);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Listes */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  color: #374151;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li i {
  color: #374151;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
}

/* Bloc horaires à droite */
.footer-hours {
  justify-self: end;
}

.hours-box {
  padding: 18px 24px;
  border: 3px solid var(--brand-orange);
  border-radius: 18px;
 
  max-width: 260px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #111827;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.hours-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Bande copyright */
.footer-bottom {
  text-align: center;
  padding: 14px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  color: #374151;
}

/* Responsive */
@media (max-width: 960px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .footer-hours {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    max-width: none;
  }

  .hours-box {
    max-width: 100%;
  }
}
