/* ============================================================
   CSS SITE — Variables & Reset
============================================================ */
:root {
  --gradient-start: #1a0f2e;
  --gradient-end: #e65c25;
  --primary-color: #c0390e;
  --primary-dark:   #8a2208;
  --orange:         #e65c25;
  --orange-deep:    #c0390e;
  --secondary-color: #4a1a00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --white: #ffffff;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  text-align: center;
}

/* =========================
   UTILITAIRES
========================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 50;
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 850px;
  margin: 0 auto;
  padding: 12px 24px;
}

.logo img {
  height: 48px;
  width: auto;
  order: 1;
}

.navMenu {
  display: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  order: 2;
}

.navMenu svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.navMenu:hover svg {
  transform: scale(1.1);
}

#navInput {
  display: none;
}

.nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--orange-deep);
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--orange-deep);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.close-nav {
  display: none;
}

.fullclose {
  display: none;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, #1a0f2e 0%, #3d1a08 45%, #c0390e 100%);
  color: white;
  padding: 96px 24px 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0.1;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  text-align: center;
}

.hero p {
  font-size: 1rem;
  opacity: 0.9;
  text-align: center;
}

.hero__container {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: 1em auto;
  padding: 0 20px;
}

/* =========================
   BOUTONS
========================= */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1a0f2e 0%, #c0390e 100%);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  margin-top: 1rem;
  transition: var(--transition);
}

.cta-button:hover {
  background: linear-gradient(135deg, #c0390e 0%, #1a0f2e 100%);
}

/* Bouton sidebar (pleine largeur) */
.cta-button--sidebar {
  width: 100%;
  text-align: center;
  display: block;
  padding: .75rem 1rem;
  font-size: .85rem;
}

/* Bouton clair (fond blanc, texte primaire) */
.cta-button--light {
  background: white;
  color: var(--orange-deep);
}

.cta-button--light:hover {
  background: #f5f5f5;
}

/* Lien blanc dans le titre CTA */
.cta__title a {
  color: white;
  text-decoration: none;
}

.cta__title a:hover {
  text-decoration: underline;
}

/* =========================
   SECTION CTA
========================= */
.gradient-bg {
  background: linear-gradient(135deg, #1a0f2e 0%, #c0390e 100%);
}

.cta {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.cta__title {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cta__text {
  color: white;
  opacity: .9;
  margin-bottom: .5rem;
}

/* =========================
   ACTIONS ARTICLE
========================= */
.article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* =========================
   SITE FOOTER
========================= */
.site-footer {
  background: linear-gradient(135deg, #1a0f2e 0%, #e65c25 100%);
  color: rgba(255,255,255,0.75);
  padding: 56px 24px 24px;
  font-size: 0.875rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.site-footer .footer-brand img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}
.site-footer .footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  text-align: left;
}
.site-footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.site-footer .footer-contact a:hover { color: #e65c25; }
.site-footer .footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 10px;
}
.site-footer .footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.site-footer .footer-col a:hover { color: white; }
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.site-footer .footer-bottom strong { color: rgba(255,255,255,0.55); }
@media (max-width: 768px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   FAQ — Styles spécifiques
============================================================ */

/* Layout grille sidebar + contenu */
.faq-wrap {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0 3rem;
}

/* ── Sidebar ── */
.faq-sidebar {
  position: sticky;
  top: 88px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1.75rem 1.5rem;
  border-top: 4px solid var(--orange-deep);
}

.faq-sidebar h2 {
  font-size: 1rem;
  text-align: left;
  color: var(--orange-deep);
  margin-bottom: 1.25rem;
}

.faq-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #555;
  font-size: .85rem;
  margin-bottom: .85rem;
}

.faq-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.faq-contact-item a {
  color: #555;
  text-decoration: none;
}

.faq-contact-item a:hover {
  color: var(--orange-deep);
}

.faq-sidebar hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 1.2rem 0;
}

.faq-sidebar-note {
  background: #fdf6f0;
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: .8rem 1rem;
  font-size: .8rem;
  color: #666;
  line-height: 1.55;
}

.faq-sidebar-note strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: .25rem;
}

/* ── Titres de section ── */
.faq-section-title {
  font-size: 1.15rem;
  text-align: left;
  color: var(--orange-deep);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #eee;
  position: relative;
}

.faq-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--orange);
}

.faq-section-title:first-child {
  margin-top: 0;
}

/* ── Accordéon ── */
.faq-accordion {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: .5rem;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow .25s, border-color .25s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(192,57,14,0.15);
  border-color: rgba(192,57,14,0.25);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dark);
  transition: color .2s;
  user-select: none;
  text-align: left;
}

.faq-label:hover {
  color: var(--orange-deep);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #f0f0f0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .25s, color .25s, transform .35s;
  font-size: 1rem;
  color: var(--orange-deep);
  font-weight: 700;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-body-inner {
  padding: .9rem 1.25rem 1.1rem;
  color: #555;
  font-size: .88rem;
  line-height: 1.75;
  border-top: 1px solid #f0f0f0;
}

.faq-body-inner p {
  margin-bottom: .55rem;
}

.faq-body-inner p:last-child {
  margin-bottom: 0;
}

.faq-body-inner img {
  display: block;
  margin-top: 1rem;
  border-radius: 8px;
  max-width: 220px;
  border: 1px solid #eee;
}

/* État ouvert */
.faq-item input:checked ~ .faq-label {
  color: var(--orange-deep);
}

.faq-item input:checked ~ .faq-label .faq-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(45deg);
}

.faq-item input:checked ~ .faq-body {
  max-height: 800px;
}

/* =========================
   HERO — Eyebrow badge & italic
========================= */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f97316;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.hero__eyebrow svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.hero h1 em {
  font-style: italic;
  color: #f97316;
}

/* =========================
   STATS STRIP
========================= */
.stats-strip {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.stats-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 56px;
  border-right: 1px solid #e5e7eb;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-deep);
}

.stat-item span {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .stats-strip__inner {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 20px;
  }

  .navMenu {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #navInput:checked ~ .nav {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 32px;
    font-size: 1.2rem;
  }

  .close-nav {
    display: list-item;
  }

  .fullclose {
    display: block;
  }

  .close {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--orange-deep);
    font-weight: 600;
  }

  .close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}