/* ═══════════════════════════════════════════════════════════
   VIDÉOPROTECTION DINARD — Page locale SEO
   Repose sur tokens.css + styles.css (Navy / Amber / Barlow)
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO KPIs INLINE ─── */
.od-hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 24px 0 32px;
}
.od-hero-kpi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
}
.od-hero-kpi::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--od-amber-500);
  flex-shrink: 0;
}

/* ─── SECTIONS COMMUNES ─── */
.od-section { padding: 84px 0; }
.od-section--cream { background: var(--od-amber-050); }
.od-section--dark  { background: var(--od-navy-900); }

.od-section__head {
  text-align: center;
  margin-bottom: 52px;
}
.od-section__head .od-eyebrow { margin-bottom: 10px; }
.od-section__head .od-lead {
  margin: 14px auto 0;
  max-width: 660px;
}

/* ─── CONTAINER ─── */
.od-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── EYEBROW VARIANTS ─── */
.od-eyebrow--amber { color: var(--od-amber-500); }

/* ─── TITLES ─── */
.od-title {
  font-family: var(--od-font-display);
  font-weight: 700;
  font-size: var(--od-fs-h2);
  line-height: var(--od-lh-snug);
  color: var(--od-fg);
  margin: 0 0 var(--od-space-3) 0;
}
.od-title--light { color: var(--od-white); }
.od-lead--light  { color: rgba(255,255,255,0.75); }

/* ─── PROXIMITY CARDS (section 1) ─── */
.od-prox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.od-prox-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--od-t-base) var(--od-ease),
              transform var(--od-t-base) var(--od-ease);
}
.od-prox-card:hover {
  box-shadow: var(--od-shadow-md);
  transform: translateY(-3px);
}
.od-prox-card__icon {
  width: 44px;
  height: 44px;
  background: var(--od-amber-050);
  border: 1px solid rgba(242,182,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-navy-900);
  margin-bottom: 14px;
}
.od-prox-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 6px;
}
.od-prox-card p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── SOLUTION CARDS (section 2) ─── */
.od-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.od-sol-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--od-t-base) var(--od-ease);
}
.od-sol-card:hover { box-shadow: var(--od-shadow-md); }
.od-sol-card__tag {
  display: inline-block;
  background: var(--od-navy-900);
  color: var(--od-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--od-radius-pill);
  margin-bottom: 18px;
}
.od-sol-card__tag--pro {
  background: var(--od-amber-500);
  color: var(--od-navy-900);
}
.od-sol-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 6px;
}
.od-sol-card__lead {
  font-size: 14px;
  color: var(--od-fg-muted);
  font-style: italic;
  margin: 0 0 16px;
  line-height: 1.6;
}
.od-sol-card p {
  font-size: 14px;
  color: var(--od-fg-muted);
  line-height: 1.7;
  margin: 0 0 16px;
}
.od-sol-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.od-sol-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--od-ink-700);
  line-height: 1.5;
}
.od-sol-card ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--od-amber-500);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── CONTEXT CARDS (section 3 — dark) ─── */
.od-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.od-context-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--od-radius-lg);
  padding: 28px 24px;
}
.od-context-card__icon {
  width: 46px;
  height: 46px;
  background: rgba(242,182,0,0.1);
  border: 1px solid rgba(242,182,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-amber-500);
  margin-bottom: 16px;
}
.od-context-card h3 {
  color: var(--od-amber-500);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
}
.od-context-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin: 0;
}

/* ─── BRAND CARDS (section 4) ─── */
.od-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.od-brand-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--od-t-base) var(--od-ease),
              transform var(--od-t-base) var(--od-ease);
}
.od-brand-card:hover {
  box-shadow: var(--od-shadow-md);
  transform: translateY(-2px);
}
.od-brand-card__icon {
  width: 48px;
  height: 48px;
  background: var(--od-amber-050);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-navy-900);
  margin: 0 auto 14px;
}
.od-brand-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 6px;
}
.od-brand-card p {
  font-size: 12px;
  color: var(--od-fg-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── RGPD ALERT BLOCK ─── */
.od-rgpd-alert {
  background: var(--od-amber-050);
  border: 1.5px solid var(--od-amber-500);
  border-radius: var(--od-radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.od-rgpd-alert__icon {
  width: 44px;
  height: 44px;
  background: var(--od-amber-500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-navy-900);
  flex-shrink: 0;
}
.od-rgpd-alert__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 8px;
}
.od-rgpd-alert__body p {
  font-size: 13px;
  color: var(--od-ink-700);
  line-height: 1.7;
  margin: 0;
}

/* ─── PROCESS STEPS (section 5) ─── */
.od-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step-counter;
}
.od-step {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 28px 20px;
  position: relative;
  transition: box-shadow var(--od-t-base) var(--od-ease);
}
.od-step:hover { box-shadow: var(--od-shadow-md); }
.od-step__num {
  width: 36px;
  height: 36px;
  background: var(--od-navy-900);
  color: var(--od-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--od-font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.od-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 8px;
}
.od-step p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── VILLES CHIPS (section 6 — dark) ─── */
.od-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.od-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--od-radius-pill);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--od-white);
  transition: background var(--od-t-fast) var(--od-ease),
              border-color var(--od-t-fast) var(--od-ease);
}
.od-chip:hover {
  background: rgba(242,182,0,0.12);
  border-color: rgba(242,182,0,0.4);
  color: var(--od-amber-400);
}

/* ─── FAQ (section 7) ─── */
.od-faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.od-faq__item {
  border: 1px solid var(--od-ink-200);
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  background: var(--od-white);
  transition: border-color var(--od-t-fast) var(--od-ease);
}
.od-faq__item.is-open {
  border-color: var(--od-amber-500);
}
.od-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--od-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--od-navy-900);
  transition: color var(--od-t-fast) var(--od-ease);
}
.od-faq__question:hover { color: var(--od-amber-600); }
.od-faq__icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--od-amber-500);
  flex-shrink: 0;
  transition: transform var(--od-t-base) var(--od-ease);
  line-height: 1;
}
.od-faq__item.is-open .od-faq__icon { transform: rotate(45deg); }
.od-faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--od-fg-muted);
  line-height: 1.75;
}
.od-faq__item.is-open .od-faq__answer { display: block; }

/* ─── MAILLAGE LINK CARDS ─── */
.od-link-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.od-link-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--od-t-base) var(--od-ease),
              transform var(--od-t-base) var(--od-ease),
              border-color var(--od-t-base) var(--od-ease);
}
.od-link-card:hover {
  box-shadow: var(--od-shadow-md);
  transform: translateY(-2px);
  border-color: var(--od-ink-200);
}
.od-link-card__icon {
  width: 40px;
  height: 40px;
  background: var(--od-amber-050);
  border: 1px solid rgba(242,182,0,0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-navy-900);
}
.od-link-card__body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 4px;
}
.od-link-card__body p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.5;
  margin: 0;
}
.od-link-card__arrow {
  font-size: 18px;
  color: var(--od-amber-500);
  align-self: flex-end;
  margin-top: auto;
}

/* ─── CTA FINAL (dark) ─── */
.od-cta-final {
  background: var(--od-navy-900);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.od-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%,
    rgba(242,182,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.od-cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.od-cta-final .od-lead--light {
  margin: 14px auto 36px;
  max-width: 600px;
}
.od-cta-final__mention {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ─── MOBILE CTA ─── */
.od-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--od-navy-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  gap: 10px;
}
.od-mobile-cta .od-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ─── BTN ROW ─── */
.od-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.od-btn-row--center { justify-content: center; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .od-brand-grid   { grid-template-columns: repeat(2, 1fr); }
  .od-context-grid { grid-template-columns: repeat(2, 1fr); }
  .od-link-cards   { grid-template-columns: repeat(2, 1fr); }
  .od-steps        { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .od-section { padding: 60px 0; }
  .od-prox-grid      { grid-template-columns: 1fr; }
  .od-solutions-grid { grid-template-columns: 1fr; }
  .od-context-grid   { grid-template-columns: 1fr; }
  .od-brand-grid     { grid-template-columns: repeat(2, 1fr); }
  .od-link-cards     { grid-template-columns: 1fr; }
  .od-steps          { grid-template-columns: 1fr; }
  .od-rgpd-alert     { flex-direction: column; gap: 14px; }
  .od-mobile-cta     { display: flex; }
  body               { padding-bottom: 76px; }
  .od-nav,
  .od-btn.od-btn--sm:not(.od-btn--mobile-visible) { display: none; }
  .od-burger         { display: flex; }
}

@media (max-width: 480px) {
  .od-brand-grid { grid-template-columns: 1fr; }
  .od-hero-kpis  { gap: 8px 12px; }
}
