.elementor-30521 .elementor-element.elementor-element-d843a7f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ============================================================
   ONLINE CARTE GRISE — CSS COMPLET (v2 amélioré)
   À coller dans Elementor → Site Settings → Custom CSS
   ============================================================ */

/* ===== VARIABLES GLOBALES ===== */
:root {
  --ocg-blue: #0056b3;
  --ocg-blue-dark: #003d80;
  --ocg-blue-light: #e8f1fb;
  --ocg-blue-soft: #f0f7ff;
  --ocg-orange: #f58220;
  --ocg-orange-dark: #d96f17;
  --ocg-orange-light: #fff5e9;
  --ocg-red: #dc3545;
  --ocg-red-light: #fdecec;
  --ocg-green: #16a34a;
  --ocg-green-light: #ecfdf3;
  --ocg-text: #0f172a;
  --ocg-text-soft: #475569;
  --ocg-text-light: #64748b;
  --ocg-bg: #ffffff;
  --ocg-bg-alt: #f8fafc;
  --ocg-border: #e2e8f0;
  --ocg-border-soft: #f1f5f9;
  --ocg-radius: 14px;
  --ocg-radius-sm: 10px;
  --ocg-radius-xs: 6px;
  --ocg-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --ocg-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --ocg-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --ocg-shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);
  --ocg-shadow-blue: 0 6px 20px rgba(0, 86, 179, 0.15);
  --ocg-shadow-orange: 0 6px 20px rgba(245, 130, 32, 0.25);
  --ocg-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
.ocg-page-wrapper *,
.ocg-hero * {
  box-sizing: border-box;
}

/* ============================================================
   1. HERO
   ============================================================ */
.ocg-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f1fb 50%, #dbe9f8 100%);
  padding: 70px 32px;
  border-radius: var(--ocg-radius);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.ocg-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0, 86, 179, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.ocg-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ocg-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Badges meta */
.ocg-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.ocg-meta-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 86, 179, 0.12);
  border-radius: var(--ocg-radius-sm);
  padding: 8px 16px;
  box-shadow: var(--ocg-shadow-xs);
  transition: var(--ocg-transition);
}

.ocg-meta-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--ocg-shadow-md);
  border-color: var(--ocg-blue);
}

.ocg-meta-label {
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--ocg-text-light);
  letter-spacing: 0.8px;
  font-weight: 700;
}

.ocg-meta-value {
  font-size: 14px;
  color: var(--ocg-blue);
  font-weight: 700;
  margin-top: 2px;
}

/* Titres hero */
.ocg-hero-title {
  font-size: 34px;
  line-height: 1.2;
  color: var(--ocg-text);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

.ocg-hero-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ocg-text-soft);
  margin: 0;
}

/* CTA hero */
.ocg-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ocg-blue);
  color: #fff !important;
  text-decoration: none !important;
  padding: 15px 32px;
  border-radius: var(--ocg-radius-sm);
  font-weight: 700;
  font-size: 15.5px;
  width: fit-content;
  transition: var(--ocg-transition);
  box-shadow: var(--ocg-shadow-blue);
  letter-spacing: 0.2px;
}

.ocg-hero-cta:hover {
  background: var(--ocg-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 86, 179, 0.3);
  color: #fff !important;
}

/* Image hero */
.ocg-hero-img-wrap {
  display: flex;
  justify-content: center;
}

.ocg-hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--ocg-radius);
  box-shadow: var(--ocg-shadow-lg);
  transition: var(--ocg-transition);
}

.ocg-hero-img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .ocg-hero {
    padding: 48px 24px;
  }
  .ocg-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ocg-hero-title {
    font-size: 28px;
  }
  .ocg-hero-img-wrap {
    order: -1;
  }
}

/* ============================================================
   2. WRAPPER & SECTIONS
   ============================================================ */
.ocg-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--ocg-text);
  -webkit-font-smoothing: antialiased;
}

.ocg-section {
  padding: 60px 24px;
}

.ocg-section-alt {
  background: var(--ocg-bg-alt);
  border-radius: var(--ocg-radius);
  margin: 0 24px;
}

.ocg-container {
  max-width: 980px;
  margin: 0 auto;
}

/* Titres de section */
.ocg-section-title {
  font-size: 28px;
  line-height: 1.25;
  color: var(--ocg-text);
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.4px;
}

.ocg-title-icon {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ocg-title-icon svg {
  flex-shrink: 0;
  padding: 8px;
  background: var(--ocg-blue-soft);
  border-radius: var(--ocg-radius-xs);
  width: 42px !important;
  height: 42px !important;
}

/* Quand l'icône doit rester orange (alertes) */
.ocg-title-icon svg[stroke="#f58220"] {
  background: var(--ocg-orange-light);
}

/* Texte */
.ocg-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ocg-text-soft);
  margin: 0 0 18px;
}

/* Bloc essentiel */
.ocg-essentiel-bloc {
  background: #fff;
  border-left: 4px solid var(--ocg-blue);
  padding: 32px 36px;
  border-radius: var(--ocg-radius-sm);
  box-shadow: var(--ocg-shadow-sm);
}

/* Espacement après h2 + icon */
.ocg-section h2.ocg-title-icon + .ocg-text {
  margin-bottom: 22px;
}

/* H3 inline (sous-titres dans sections) */
.ocg-section h3 {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: var(--ocg-text);
  margin-top: 36px !important;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

/* ============================================================
   3. BOUTONS
   ============================================================ */
.ocg-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.ocg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--ocg-blue) !important;
  text-decoration: none !important;
  padding: 12px 22px;
  border: 1.5px solid var(--ocg-blue);
  border-radius: var(--ocg-radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--ocg-transition);
}

.ocg-btn-primary:hover {
  background: var(--ocg-blue);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--ocg-shadow-blue);
}

.ocg-btn-primary svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.ocg-btn-primary:hover svg {
  transform: translateX(3px);
}

.ocg-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ocg-blue-light);
  color: var(--ocg-blue) !important;
  text-decoration: none !important;
  padding: 10px 18px;
  border-radius: var(--ocg-radius-sm);
  font-weight: 600;
  font-size: 13px;
  transition: var(--ocg-transition);
  border: 1px solid transparent;
}

.ocg-btn-secondary:hover {
  background: var(--ocg-blue);
  color: #fff !important;
  transform: translateY(-1px);
}

.ocg-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ocg-orange);
  color: #fff !important;
  text-decoration: none !important;
  padding: 17px 36px;
  border-radius: var(--ocg-radius-sm);
  font-weight: 700;
  font-size: 16px;
  margin: 22px 0;
  transition: var(--ocg-transition);
  box-shadow: var(--ocg-shadow-orange);
  letter-spacing: 0.2px;
}

.ocg-btn-cta:hover {
  background: var(--ocg-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(245, 130, 32, 0.35);
  color: #fff !important;
}

/* ============================================================
   4. LIENS
   ============================================================ */
.ocg-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  row-gap: 14px;
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--ocg-blue-soft);
  border-radius: var(--ocg-radius-sm);
  border: 1px solid var(--ocg-border-soft);
}

.ocg-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ocg-blue) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 0;
  transition: gap 0.2s ease, color 0.2s ease;
}

.ocg-link-arrow:hover {
  gap: 11px;
  color: var(--ocg-blue-dark) !important;
}

.ocg-link-underline {
  color: var(--ocg-blue) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ocg-link-underline:hover {
  color: var(--ocg-blue-dark) !important;
}

.ocg-links-secondary {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ocg-links-secondary li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

/* ============================================================
   5. TABLEAUX
   ============================================================ */
.ocg-table-scroll {
  overflow-x: auto;
  margin: 26px 0;
  border-radius: var(--ocg-radius-sm);
  box-shadow: var(--ocg-shadow-sm);
  border: 1px solid var(--ocg-border);
}

.ocg-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14.5px;
}

.ocg-table thead {
  background: linear-gradient(135deg, var(--ocg-blue) 0%, var(--ocg-blue-dark) 100%);
  color: #fff;
}

.ocg-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.ocg-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--ocg-border-soft);
  color: var(--ocg-text-soft);
  line-height: 1.6;
}

.ocg-table tbody tr {
  transition: background 0.2s ease;
}

.ocg-table tbody tr:hover {
  background: var(--ocg-blue-soft);
}

.ocg-table tbody tr:last-child td {
  border-bottom: none;
}

.ocg-table tbody tr:nth-child(even) {
  background: var(--ocg-bg-alt);
}

.ocg-table tbody tr:nth-child(even):hover {
  background: var(--ocg-blue-soft);
}

/* ============================================================
   6. CHECKLIST & ERROR LIST
   ============================================================ */
.ocg-checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ocg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--ocg-radius-sm);
  border: 1px solid var(--ocg-border);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ocg-text);
  transition: var(--ocg-transition);
  position: relative;
}

.ocg-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ocg-blue);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ocg-checklist li:hover {
  border-color: var(--ocg-blue);
  transform: translateX(4px);
  box-shadow: var(--ocg-shadow-sm);
}

.ocg-checklist li:hover::before {
  opacity: 1;
}

.ocg-checklist svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ocg-errorlist {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ocg-errorlist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--ocg-red-light);
  border-left: 4px solid var(--ocg-red);
  border-radius: var(--ocg-radius-sm);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ocg-text);
  transition: var(--ocg-transition);
}

.ocg-errorlist li:hover {
  transform: translateX(4px);
  box-shadow: var(--ocg-shadow-sm);
}

.ocg-errorlist svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   7. BLOCS INFO / DÉLAI / CTA ORANGE / NOTE
   ============================================================ */
.ocg-bloc-info,
.ocg-bloc-delai,
.ocg-bloc-cta-orange,
.ocg-bloc-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--ocg-radius-sm);
  margin: 26px 0;
  box-shadow: var(--ocg-shadow-xs);
}

.ocg-bloc-info {
  background: var(--ocg-blue-light);
  border-left: 4px solid var(--ocg-blue);
}

.ocg-bloc-info p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ocg-text);
  margin: 0;
}

.ocg-bloc-info strong {
  color: var(--ocg-blue-dark);
}

.ocg-bloc-delai {
  background: var(--ocg-orange-light);
  border-left: 4px solid var(--ocg-orange);
}

.ocg-bloc-delai strong {
  color: var(--ocg-text);
  font-weight: 700;
}

.ocg-bloc-delai > div {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ocg-text-soft);
}

.ocg-bloc-cta-orange {
  background: var(--ocg-orange-light);
  border: 1px solid #f5c178;
  border-radius: var(--ocg-radius);
  padding: 22px 26px;
}

.ocg-bloc-cta-orange > div strong {
  display: block;
  color: var(--ocg-text);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ocg-bloc-cta-orange > div p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ocg-text-soft);
  margin: 0;
}

.ocg-bloc-note {
  background: var(--ocg-red-light);
  border-left: 4px solid var(--ocg-red);
}

.ocg-bloc-note p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ocg-text);
  margin: 0;
}

.ocg-bloc-info svg,
.ocg-bloc-delai svg,
.ocg-bloc-cta-orange svg,
.ocg-bloc-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   8. STEPPER
   ============================================================ */
.ocg-stepper {
  margin: 32px 0;
}

.ocg-step {
  display: flex;
  gap: 22px;
  position: relative;
}

.ocg-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ocg-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ocg-blue) 0%, var(--ocg-blue-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  box-shadow: var(--ocg-shadow-blue);
  z-index: 2;
  position: relative;
}

.ocg-step-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--ocg-blue-light);
  border-radius: 50%;
  z-index: -1;
}

.ocg-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--ocg-blue) 0%, var(--ocg-border) 100%);
  margin-top: 6px;
  min-height: 30px;
}

.ocg-step-body {
  flex: 1;
  padding-bottom: 36px;
  padding-top: 4px;
}

.ocg-step-last .ocg-step-body {
  padding-bottom: 0;
}

.ocg-step-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ocg-text);
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}

.ocg-step-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   9. BADGE TAXES
   ============================================================ */
.ocg-taxes-badge {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--ocg-border);
  border-radius: var(--ocg-radius);
  padding: 22px;
  margin: 26px 0;
  box-shadow: var(--ocg-shadow-sm);
  max-width: 520px;
}

.ocg-tax-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 18px;
  text-align: center;
}

.ocg-tax-label {
  font-size: 11.5px;
  text-transform: uppercase;
  color: var(--ocg-text-light);
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ocg-tax-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--ocg-blue);
  letter-spacing: -0.5px;
}

.ocg-tax-divider {
  width: 1px;
  background: var(--ocg-border);
}

/* ============================================================
   10. SITUATIONS GRID
   ============================================================ */
.ocg-situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.ocg-situation-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--ocg-border);
  border-left: 4px solid var(--ocg-orange);
  border-radius: var(--ocg-radius-sm);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ocg-text);
  transition: var(--ocg-transition);
}

.ocg-situation-card:hover {
  border-color: var(--ocg-orange);
  transform: translateY(-3px);
  box-shadow: var(--ocg-shadow-md);
}

.ocg-situation-card svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ocg-situation-card a {
  color: var(--ocg-blue) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  font-weight: 600;
}

.ocg-situation-card a:hover {
  color: var(--ocg-blue-dark) !important;
}

/* ============================================================
   11. RENVOI BLOC
   ============================================================ */
.ocg-renvoi-bloc {
  background: linear-gradient(135deg, var(--ocg-blue-soft) 0%, var(--ocg-blue-light) 100%);
  border-radius: var(--ocg-radius);
  padding: 26px;
  margin: 26px 0;
  border: 1px solid var(--ocg-border-soft);
}

.ocg-renvoi-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ocg-text);
  margin: 0 0 18px;
}

.ocg-renvoi-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   12. RÉFÉRENCES
   ============================================================ */
.ocg-refs-section {
  padding: 60px 24px;
}

.ocg-refs-section.ocg-section-alt {
  background: var(--ocg-bg-alt);
  border-radius: var(--ocg-radius);
  margin: 0 24px;
}

.ocg-refs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.ocg-refs-col {
  background: #fff;
  padding: 28px;
  border-radius: var(--ocg-radius);
  border: 1px solid var(--ocg-border);
  box-shadow: var(--ocg-shadow-sm);
  transition: var(--ocg-transition);
}

.ocg-refs-col:hover {
  box-shadow: var(--ocg-shadow-md);
  transform: translateY(-2px);
}

.ocg-refs-col h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--ocg-text);
  margin: 0 0 20px !important;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ocg-blue-light);
}

.ocg-refs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ocg-refs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
}

.ocg-refs-list svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.ocg-refs-list a {
  color: var(--ocg-blue) !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ocg-refs-list a:hover {
  color: var(--ocg-blue-dark) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .ocg-refs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   13. CTA SECTION FINALE
   ============================================================ */
.ocg-cta-section {
  background: linear-gradient(135deg, var(--ocg-blue) 0%, var(--ocg-blue-dark) 100%);
  border-radius: var(--ocg-radius);
  margin: 50px 24px;
  padding: 60px 36px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ocg-cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.ocg-cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.ocg-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ocg-cta-section .ocg-cta-title,
.ocg-cta-section h2.ocg-cta-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 22px;
  color: #ffffff !important;
  text-transform: none !important;
  letter-spacing: -0.5px;
}

.ocg-cta-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 30px;
}

.ocg-cta-subtext {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 18px 0 0;
}

.ocg-cta-section .ocg-btn-cta {
  background: #fff;
  color: var(--ocg-blue) !important;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.ocg-cta-section .ocg-btn-cta:hover {
  background: var(--ocg-orange);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* ============================================================
   14. FAQ
   ============================================================ */
.ocg-faq-section {
  padding: 60px 24px;
}

.ocg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.ocg-faq-item {
  background: #fff;
  border: 1px solid var(--ocg-border);
  border-radius: var(--ocg-radius-sm);
  overflow: hidden;
  transition: var(--ocg-transition);
}

.ocg-faq-item:hover {
  border-color: var(--ocg-blue);
  box-shadow: var(--ocg-shadow-sm);
}

.ocg-faq-item[open] {
  border-color: var(--ocg-blue);
  box-shadow: var(--ocg-shadow-md);
}

.ocg-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ocg-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
}

.ocg-faq-item summary::-webkit-details-marker {
  display: none;
}

.ocg-faq-item summary:hover {
  background: var(--ocg-blue-soft);
}

.ocg-faq-item[open] summary {
  background: var(--ocg-blue-soft);
  color: var(--ocg-blue);
}

.ocg-faq-chevron {
  flex-shrink: 0;
  color: var(--ocg-blue);
  transition: transform 0.3s ease;
}

.ocg-faq-item[open] .ocg-faq-chevron {
  transform: rotate(180deg);
}

.ocg-faq-body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ocg-text-soft);
  border-top: 1px solid var(--ocg-border-soft);
  padding-top: 18px;
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .ocg-section {
    padding: 44px 18px;
  }
  .ocg-section-alt {
    margin: 0 16px;
  }
  .ocg-section-title {
    font-size: 23px;
  }
  .ocg-essentiel-bloc {
    padding: 24px 22px;
  }
  .ocg-btn-group {
    flex-direction: column;
  }
  .ocg-btn-primary {
    width: 100%;
    justify-content: center;
  }
  .ocg-step {
    gap: 14px;
  }
  .ocg-step-num {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .ocg-step-title {
    font-size: 17px;
  }
  .ocg-cta-section {
    margin: 32px 16px;
    padding: 40px 22px;
  }
  .ocg-cta-section .ocg-cta-title {
    font-size: 24px;
  }
  .ocg-taxes-badge {
    flex-direction: column;
    gap: 16px;
  }
  .ocg-tax-divider {
    width: 100%;
    height: 1px;
  }
  .ocg-hero-meta {
    gap: 8px;
  }
  .ocg-meta-badge {
    padding: 6px 12px;
  }
  .ocg-refs-section.ocg-section-alt {
    margin: 0 16px;
  }
  .ocg-title-icon svg {
    width: 36px !important;
    height: 36px !important;
  }
  .ocg-links-inline {
    padding: 14px 16px;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .ocg-table th,
  .ocg-table td {
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1.5;
  }
  .ocg-essentiel-bloc {
    padding: 22px 18px;
  }
  .ocg-essentiel-bloc .ocg-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .ocg-hero-title {
    font-size: 24px;
  }
  .ocg-hero-subtitle {
    font-size: 14.5px;
  }
  .ocg-section-title {
    font-size: 21px;
  }
}/* End custom CSS */