/* ═══════════════════════════════════════════════════════════
   PAGE PARTICULIERS — composants spécifiques
   Repose sur tokens.css + styles.css
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO PILLS ─── */
.od-hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 24px 0 0;
}
.od-hero-pill {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--od-radius-pill);
  font-size: 13px; font-weight: 600;
  color: var(--od-white);
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}

/* ─── HERO STATS ─── */
.od-hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(6px);
  background: rgba(21,22,52,0.35);
}
.od-hero-stats__cell {
  flex: 1 1 140px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 4px;
}
.od-hero-stats__cell:last-child { border-right: none; }
.od-hero-stats__cell strong {
  font-family: var(--od-font-display);
  font-weight: 800; font-size: 22px;
  color: var(--od-amber-500); line-height: 1;
}
.od-hero-stats__cell span {
  font-size: 12px; color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

/* ─── TRUST STRIP ─── */
.od-trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding: 28px 28px;
  background: var(--od-bg-alt);
  border-bottom: 1px solid var(--od-ink-200);
}
.od-trust-item { display: flex; align-items: center; gap: 12px; }
.od-trust-item__icon {
  width: 40px; height: 40px;
  background: var(--od-amber-050); color: var(--od-amber-600);
  border-radius: var(--od-radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.od-trust-item__text strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--od-navy-900); line-height: 1.3;
}
.od-trust-item__text span { font-size: 12px; color: var(--od-fg-muted); }

/* ─── SOLUTIONS GRID 2×2 ─── */
.od-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.od-solution-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-200);
  border-top: 3px solid var(--od-amber-500);
  border-radius: var(--od-radius-lg);
  padding: 28px;
  box-shadow: var(--od-shadow-sm);
  transition: transform var(--od-t-base) var(--od-ease), box-shadow var(--od-t-base) var(--od-ease);
  display: flex; flex-direction: column;
}
.od-solution-card:hover { transform: translateY(-3px); box-shadow: var(--od-shadow-md); }
.od-solution-card__icon {
  width: 48px; height: 48px;
  background: var(--od-amber-050); color: var(--od-amber-600);
  border-radius: var(--od-radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.od-solution-card h3 {
  font-family: var(--od-font-display); font-weight: 700; font-size: 20px;
  color: var(--od-navy-900); margin-bottom: 10px;
}
.od-solution-card p {
  font-size: 14px; color: var(--od-fg-muted);
  line-height: 1.65; margin: 0 0 16px; flex: 1;
}
.od-solution-card__link {
  font-size: 13px; font-weight: 600;
  color: var(--od-amber-600);
  text-decoration: none; border: none;
  display: inline-block; margin-top: auto;
  transition: color var(--od-t-fast) var(--od-ease);
}
.od-solution-card__link:hover { color: var(--od-navy-900); }

/* liste inclus dans les solution cards */
.od-solution-card__includes {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.od-solution-card__includes li {
  font-size: 13px; color: var(--od-fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--od-ink-100);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.od-solution-card__includes li:last-child { border-bottom: none; }
.od-solution-card__includes li::before {
  content: '✓';
  color: var(--od-amber-600); font-weight: 700;
  flex-shrink: 0; font-size: 12px; margin-top: 1px;
}

/* ─── MAISON / APPARTEMENT 2 colonnes ─── */
.od-logement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.od-logement-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-200);
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  box-shadow: var(--od-shadow-sm);
}
.od-logement-card__header {
  background: var(--od-navy-900);
  padding: 18px 24px;
  font-family: var(--od-font-display); font-weight: 700; font-size: 18px;
  color: var(--od-white);
  display: flex; align-items: center; gap: 10px;
}
.od-logement-list {
  list-style: none; padding: 20px 24px; margin: 0;
}
.od-logement-list li {
  font-size: 14px; color: var(--od-fg-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--od-ink-100);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.od-logement-list li:last-child { border-bottom: none; }
.od-logement-list li::before {
  content: '✓';
  color: var(--od-success-500); font-weight: 700;
  flex-shrink: 0;
}

/* ─── SECTION NAVY ─── */
.od-section--navy {
  background: var(--od-navy-900);
}
.od-section--navy .od-section__inner { /* hérite od-section__inner */ }

/* Section head centré (navy) */
.od-section__head--centered { text-align: center; }
.od-title--light {
  color: var(--od-white) !important;
}
.od-eyebrow--amber {
  color: var(--od-amber-500) !important;
}
.od-lead--light {
  color: rgba(255,255,255,0.7) !important;
}

/* ─── TVA BOX ─── */
.od-tva-box {
  background: var(--od-amber-050);
  border: 2px solid var(--od-amber-500);
  border-radius: var(--od-radius-lg);
  padding: 36px 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.od-tva-list {
  list-style: none; padding: 0; margin: 0; flex: 1;
}
.od-tva-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600;
  color: var(--od-navy-900);
  padding: 10px 0;
  border-bottom: 1px solid rgba(242,182,0,0.2);
}
.od-tva-list li:last-child { border-bottom: none; }
.od-tva-check {
  width: 24px; height: 24px;
  background: var(--od-amber-500);
  color: var(--od-navy-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}
.od-btn--amber {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--od-amber-500);
  color: var(--od-navy-900);
  border: 2px solid var(--od-amber-500);
  border-radius: var(--od-radius-lg);
  font-family: var(--od-font-display); font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: background var(--od-t-fast) var(--od-ease), transform var(--od-t-fast) var(--od-ease);
  white-space: nowrap;
}
.od-btn--amber:hover {
  background: var(--od-amber-400);
  transform: translateY(-1px);
}

/* ─── ÉTUDE DE CAS ─── */
.od-case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}
.od-case-study__image {
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  box-shadow: var(--od-shadow-lg);
}
.od-case-study__image img {
  width: 100%; height: 400px; object-fit: cover; display: block;
}
.od-case-study__tag {
  display: inline-block;
  background: var(--od-amber-050);
  color: var(--od-amber-600);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--od-radius-pill);
  margin-bottom: 14px;
}
.od-case-study__title {
  font-family: var(--od-font-display); font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--od-navy-900); margin-bottom: 16px;
  line-height: 1.2;
}
.od-case-study__context {
  font-size: 14px; color: var(--od-fg-muted);
  line-height: 1.65; margin-bottom: 12px;
}
.od-case-study__kpis {
  display: flex; gap: 24px; margin-top: 24px;
  flex-wrap: wrap;
}
.od-kpi {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--od-bg-alt);
  border: 1px solid var(--od-ink-200);
  border-radius: var(--od-radius-md);
  padding: 14px 20px; flex: 1; min-width: 90px;
}
.od-kpi strong {
  font-family: var(--od-font-display); font-weight: 800; font-size: 22px;
  color: var(--od-amber-500); line-height: 1;
}
.od-kpi span { font-size: 12px; color: var(--od-fg-muted); }

/* ─── TÉMOIGNAGES ─── */
.od-temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.od-temoignage-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--od-radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--od-t-base) var(--od-ease);
}
.od-temoignage-card:hover { transform: translateY(-3px); }
.od-temoignage-card__stars {
  color: var(--od-amber-500); font-size: 16px; letter-spacing: 2px;
}
.od-temoignage-card__text {
  font-size: 14px; color: rgba(255,255,255,0.8);
  line-height: 1.65; font-style: italic; flex: 1;
}
.od-temoignage-card__author {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.od-temoignage-card__author strong {
  font-size: 14px; font-weight: 700; color: var(--od-white);
}
.od-temoignage-card__author span {
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ─── FAQ ─── */
.od-faq { margin-top: 40px; }
.od-faq__item {
  border-bottom: 1px solid var(--od-ink-200);
}
.od-faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--od-font-body); font-size: 16px; font-weight: 600;
  color: var(--od-navy-900); text-align: left;
  transition: color var(--od-t-fast) var(--od-ease);
}
.od-faq__question:hover { color: var(--od-amber-600); }
.od-faq__icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--od-amber-050); color: var(--od-amber-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; line-height: 1;
  transition: transform var(--od-t-base) var(--od-ease), background var(--od-t-base) var(--od-ease);
}
.od-faq__answer {
  overflow: hidden; max-height: 0;
  font-size: 15px; color: var(--od-fg-muted); line-height: 1.7;
  transition: max-height var(--od-t-slow) var(--od-ease), padding var(--od-t-slow) var(--od-ease);
  padding: 0;
}
.od-faq__item.is-open .od-faq__answer {
  max-height: 400px; padding-bottom: 20px;
}
.od-faq__item.is-open .od-faq__icon {
  transform: rotate(45deg);
  background: var(--od-amber-500); color: var(--od-navy-900);
}

/* ─── PROCESSUS — phrase de détail ─── */
.od-process__detail {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.6;
  margin-top: 8px;
  font-style: italic;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   NOUVELLES SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* ─── CHIFFRES CLÉS ─── */
.od-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.od-stat-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-200);
  border-radius: var(--od-radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--od-shadow-sm);
  transition: transform var(--od-t-base) var(--od-ease), box-shadow var(--od-t-base) var(--od-ease);
}
.od-stat-card:hover { transform: translateY(-3px); box-shadow: var(--od-shadow-md); }
.od-stat-card__icon {
  width: 44px; height: 44px;
  background: var(--od-amber-050); color: var(--od-amber-600);
  border-radius: var(--od-radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.od-stat-val {
  font-family: var(--od-font-display);
  font-weight: 900;
  font-size: 42px;
  color: var(--od-amber-500);
  line-height: 1;
  margin-bottom: 6px;
}
.od-stat-label {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.4;
}

/* ─── POURQUOI OUEST-DIGIT (diff grid, fond navy) ─── */
.od-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.od-diff-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--od-radius-lg);
  padding: 28px;
  transition: transform var(--od-t-base) var(--od-ease);
}
.od-diff-card:hover { transform: translateY(-3px); }
.od-diff-card__icon {
  width: 48px; height: 48px;
  background: rgba(242,182,0,0.15);
  color: var(--od-amber-400);
  border-radius: var(--od-radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.od-diff-card h3 {
  font-family: var(--od-font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--od-white);
  margin-bottom: 10px;
}
.od-diff-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}

/* ─── GARANTIES ─── */
.od-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.od-guarantee-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-200);
  border-top: 3px solid var(--od-amber-500);
  border-radius: var(--od-radius-lg);
  padding: 28px;
  box-shadow: var(--od-shadow-sm);
  transition: transform var(--od-t-base) var(--od-ease), box-shadow var(--od-t-base) var(--od-ease);
}
.od-guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--od-shadow-md);
}
.od-guarantee-card__num {
  width: 40px; height: 40px;
  background: var(--od-amber-050);
  color: var(--od-amber-600);
  border-radius: var(--od-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--od-font-display); font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.od-guarantee-card h3 {
  font-family: var(--od-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--od-navy-900);
  margin-bottom: 8px;
}
.od-guarantee-card p {
  font-size: 14px;
  color: var(--od-fg-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── ARTICLES BLOG ─── */
.od-blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.od-blog-row-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-200);
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  box-shadow: var(--od-shadow-sm);
  transition: transform var(--od-t-base) var(--od-ease), box-shadow var(--od-t-base) var(--od-ease);
  display: flex; flex-direction: column;
}
.od-blog-row-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--od-shadow-md);
}
.od-blog-row-card__cat {
  display: inline-block;
  background: var(--od-amber-050);
  color: var(--od-amber-600);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--od-radius-pill);
  margin-bottom: 12px;
}
.od-blog-row-card__body {
  padding: 20px;
  display: flex; flex-direction: column; flex: 1;
}
.od-blog-row-card h3 {
  font-family: var(--od-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--od-navy-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.od-blog-row-card p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.od-blog-row-card__link {
  font-size: 12px; font-weight: 700;
  color: var(--od-amber-600);
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  transition: color var(--od-t-fast) var(--od-ease);
}
.od-blog-row-card__link:hover { color: var(--od-navy-900); }

/* ─── BANDEAU URGENCE ─── */
.od-urgency-band {
  background: #DC2626;
  padding: 40px 28px;
  text-align: center;
}
.od-urgency-band .od-section__inner {
  margin-left: auto; margin-right: auto;
}
.od-urgency-band h3 {
  font-family: var(--od-font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--od-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.od-urgency-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.6;
}
.od-urgency-band .od-btn--amber {
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .od-temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .od-trust-strip { gap: 24px; }
  .od-hero-stats { flex-wrap: wrap; }
  .od-hero-stats__cell { flex: 1 1 120px; }
  /* nouvelles sections */
  .od-stats-row { grid-template-columns: repeat(2, 1fr); }
  .od-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .od-blog-row { grid-template-columns: repeat(2, 1fr); }
  .od-guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .od-solutions-grid { grid-template-columns: 1fr; }
  .od-logement-grid { grid-template-columns: 1fr; }
  .od-temoignages-grid { grid-template-columns: 1fr; }
  .od-case-study { grid-template-columns: 1fr; }
  .od-case-study__image img { height: 250px; }
  .od-tva-box { flex-direction: column; align-items: flex-start; }
  .od-trust-strip { flex-direction: column; gap: 16px; text-align: center; align-items: flex-start; }
  .od-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); }
  .od-hero-stats__cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .od-hero-stats__cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  /* nouvelles sections */
  .od-stats-row { grid-template-columns: 1fr; }
  .od-diff-grid { grid-template-columns: 1fr; }
  .od-guarantees-grid { grid-template-columns: 1fr; }
  .od-blog-row { grid-template-columns: 1fr; }
  .od-urgency-band h3 { font-size: 22px; }
  .od-stat-val { font-size: 36px; }
}

@media (max-width: 480px) {
  .od-case-study__kpis { flex-direction: column; }
  .od-hero-pills { gap: 6px; }
  .od-hero-pill { font-size: 12px; padding: 5px 10px; }
  .od-urgency-band { padding: 32px 20px; }
}
