/* ============================================================
   native.css — Design pages natives v2 (maquette-lovable)
   Extrait de : native/pages/maquette-lovable.html
   Créé le : 2026-02-28
   Usage : ville-v2.php (Paris/Excel uniquement dans un premier temps)

   Sections :
     1.  VARIABLES
     2.  RESET & BASE
     3.  LAYOUT
     4.  HEADER
     5.  BREADCRUMB
     6.  HERO
     7.  PRICING
     8.  SESSIONS
     9.  AVIS / TESTIMONIALS
    10.  PROGRAMME
    11.  CERTIFICATIONS
    12.  CONTENT
    13.  CAROUSEL
    14.  FAQ
    15.  INFO / COCON
    16.  SIDEBAR
    17.  FOOTER
    18.  MOBILE STICKY BAR
    19.  UTILITIES & RESPONSIVE
   ============================================================ */


/* ─── 1. VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --bg:              hsl(0, 0%, 99%);
  --fg:              hsl(222, 47%, 11%);
  --card:            hsl(0, 0%, 100%);
  --primary:         hsl(258, 62%, 30%);
  --primary-fg:      hsl(0, 0%, 100%);
  --secondary:       hsl(220, 14%, 96%);
  --muted:           hsl(220, 14%, 96%);
  --muted-fg:        hsl(220, 9%, 46%);
  --accent:          hsl(160, 84%, 29%);
  --accent-fg:       hsl(0, 0%, 100%);
  --accent-hover:    hsl(160, 74%, 24%);
  --accent-light:    hsl(160, 40%, 96%);
  --primary-light:   hsl(258, 50%, 97%);
  --border:          hsl(220, 13%, 91%);
  --warning-bg:      hsl(35, 100%, 97%);
  --warning-accent:  hsl(0, 60%, 45%);
  --radius:          0.75rem;
  --shadow-xs:       0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-sm:       0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.06);
  --shadow-md:       0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}


/* ─── 2. RESET & BASE ──────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid hsl(220, 13%, 91%);
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.025em;
}
.font-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  font: inherit;
  background: none;
}
input {
  font: inherit;
}


/* ─── 3. LAYOUT ────────────────────────────────────────────────────────────── */
.max-w {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.page-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}
.main-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sidebar-col {
  width: 100%;
  flex-shrink: 0;
}
.sidebar-col > .sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section > * + * {
  margin-top: 1.25rem;
}


/* ─── 4. HEADER ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: #FFF;
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
}
.header-logo {
  width: 160px;
  height: 80px;
  object-fit: contain;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.header-nav a.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: all 0.15s;
}
.header-nav a.nav-link:hover {
  color: var(--fg);
  background: var(--muted);
}
.header-cta {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
  transition: all 0.15s;
}
.header-cta:hover {
  opacity: 0.9;
}
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}
/* Barre formations sous le header */
.formation-bar {
  border-top: 1px solid var(--border);
  background: hsla(220, 14%, 96%, 0.3);
  margin-bottom: 15px;
}
.formation-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 0;
}
.formation-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: white;
  transition: opacity 0.15s;
}
.formation-pill:hover {
  opacity: 0.9;
}
/* Menu mobile */
.mobile-menu {
  border-top: 1px solid var(--border);
  padding: 1rem;
}
.mobile-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
}
.mobile-menu .mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}


/* ─── 5. BREADCRUMB ────────────────────────────────────────────────────────── */
.breadcrumb-v2 {
  padding-top: 20px;
  padding-bottom: 15px;
}
.breadcrumb-v2 ol {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  color: #6b7280;
}
.breadcrumb-v2 a {
  color: #6b7280;
}
.breadcrumb-v2 a:hover {
  color: #1f2937;
}
.breadcrumb-v2 .current {
  color: #1f2937;
  font-weight: 600;
}
.breadcrumb-v2 .sep {
  font-size: 0.75rem;
  opacity: 0.5;
}


/* ─── 6. HERO ──────────────────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 9999px;
  border: 1px solid hsla(160, 84%, 29%, 0.2);
  background: var(--accent-light);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  width: fit-content;
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero h1 span {
  color: var(--primary);
}
.hero-desc {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 36rem;
}
.hero-img-wrap {
  display: none;
  flex-shrink: 0;
}
.hero-img {
  width: 18rem;
  height: 13rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
/* Social proof */
.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
}
.stars {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.star {
  color: hsl(45, 93%, 47%);
  font-size: 1rem;
}
.social-proof .dot {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.social-proof .count {
  font-size: 0.875rem;
  font-weight: 600;
}
.social-proof .qualiopi {
  font-size: 0.875rem;
  color: var(--muted-fg);
}
/* CTA hero */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
}
.hero-ctas .sub-link {
  font-size: 0.75rem;
  color: var(--muted-fg);
  transition: color 0.15s;
}
.hero-ctas .sub-link:hover {
  color: var(--accent);
}
/* Trust chips */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: hsla(220, 14%, 96%, 0.5);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
}
.trust-chip .check {
  color: var(--accent);
}
/* Pictogrammes */
.picto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.picto-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.875rem;
  transition: all 0.15s;
}
.picto-card:hover {
  background: hsla(220, 14%, 96%, 0.5);
  box-shadow: var(--shadow-xs);
}
.picto-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsla(258, 62%, 30%, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.picto-icon svg {
  display: block;
  flex-shrink: 0;
}
.picto-card .label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.picto-card .desc {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
/* Bande certifications */
.cert-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: hsla(220, 14%, 96%, 0.3);
  padding: 1rem 1.5rem;
}
.cert-band .cert-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cert-band img {
  height: 2rem;
  object-fit: contain;
}


/* ─── 7. PRICING ───────────────────────────────────────────────────────────── */
.pricing-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: var(--card);
  transition: all 0.15s;
}
.pricing-card.popular {
  border-color: var(--accent);
  background: hsla(160, 84%, 29%, 0.03);
  box-shadow: var(--shadow-md);
  outline: 2px solid hsla(160, 84%, 29%, 0.2);
}
.pricing-badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent-fg);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
}
.pricing-card .name {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.pricing-card .price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.125rem;
}
.pricing-card .meta {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-bottom: 0.25rem;
}
.pricing-card .divider {
  border-top: 1px solid var(--border);
  margin: 0.75rem 0;
}
.pricing-card ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.pricing-card li .ck {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-weight: 700;
}
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s;
  box-shadow: var(--shadow-xs);
}
.pricing-btn.green {
  background: var(--accent);
  color: var(--accent-fg);
}
.pricing-btn.green:hover {
  background: var(--accent-hover);
}
.pricing-footer {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-align: center;
}
.funding-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: hsl(220, 30%, 97%);
  border: 1px solid hsl(220, 20%, 88%);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.funding-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.funding-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.funding-text {
  flex: 1;
  min-width: 0;
}
.funding-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}
.funding-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-top: 0.2rem;
}
.funding-btn {
  display: inline-flex;
  align-items: center;
  height: 2.25rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.15s;
  flex-shrink: 0;
}
.funding-btn:hover {
  background: var(--primary);
  color: var(--primary-fg);
}


/* ─── 8. SESSIONS ──────────────────────────────────────────────────────────── */
#sessions {
  scroll-margin-top: 100px;
}
.sessions-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.sessions-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.info-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: hsla(220, 14%, 96%, 0.3);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.info-line .bold {
  font-weight: 700;
}
.info-line .sep {
  color: var(--muted-fg);
}
.info-line .light {
  color: var(--muted-fg);
}
.urgency {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: var(--radius);
  background: hsla(258, 62%, 30%, 0.05);
  border: 1px solid hsla(258, 62%, 30%, 0.1);
  padding: 0.75rem 1rem;
}
.urgency p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}
.urgency p strong {
  font-weight: 700;
}
.session-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
  transition: all 0.15s;
}
.session-card:hover {
  border-color: hsla(160, 84%, 29%, 0.4);
  background: hsla(160, 84%, 29%, 0.02);
  box-shadow: var(--shadow-sm);
}
.session-card.first {
  border-color: hsla(160, 84%, 29%, 0.3);
  background: hsla(160, 84%, 29%, 0.02);
  box-shadow: var(--shadow-xs);
}
.session-badge {
  position: absolute;
  top: -0.625rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent-fg);
  box-shadow: var(--shadow-xs);
}
.xls-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsla(140, 60%, 28%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.75rem;
  color: hsl(140, 60%, 28%);
  letter-spacing: -0.03em;
}
.session-info {
  flex: 1;
  min-width: 0;
}
.session-info .title {
  font-size: 0.875rem;
  font-weight: 600;
}
.session-info .loc {
  font-size: 0.75rem;
  color: var(--muted-fg);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.session-date {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.session-price-desktop {
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
  width: 5rem;
  flex-shrink: 0;
}
.session-date,
.session-price-desktop {
  display: none;
}
.session-mobile {
  text-align: right;
  flex-shrink: 0;
}
.session-mobile .m-date {
  font-size: 0.75rem;
  font-weight: 500;
}
.session-mobile .m-price {
  font-size: 0.875rem;
  font-weight: 700;
}
/* Boutons sessions */
.btn-sm-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 2.25rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
  transition: all 0.15s;
  flex-shrink: 0;
}
.btn-sm-accent:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-sm);
}
.bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  padding: 1rem;
}
.bottom-cta .text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  height: 2.25rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--muted);
}
/* Bloc CPF dans sessions */
.cpf-form-block {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: hsla(220, 14%, 96%, 0.3);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cpf-form-block .cpf-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cpf-form-block .cpf-header p {
  font-size: 0.875rem;
  font-weight: 600;
}
.cpf-form-block .cpf-desc {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.cpf-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.input-field {
  height: 2.25rem;
  flex: 1;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  outline: none;
}
.input-field::placeholder {
  color: var(--muted-fg);
}
.input-field:focus {
  box-shadow: 0 0 0 2px hsla(160, 84%, 29%, 0.3);
}
.success-msg {
  border-radius: 0.5rem;
  background: hsla(160, 84%, 29%, 0.1);
  padding: 1rem;
  text-align: center;
}
.success-msg .ok {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.success-msg .detail {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}
/* Espacement liste sessions */
.space-y-sm > * + * {
  margin-top: 0.5rem;
}


/* ─── 9. AVIS / TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials-header {
  text-align: center;
}
.testimonials-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.testimonials-header .stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.testimonials-header .stats .rating {
  font-size: 0.875rem;
  font-weight: 700;
}
.testimonials-header .stats .detail {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.review-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.15s;
}
.review-card:hover {
  box-shadow: var(--shadow-sm);
}
.review-stars {
  display: flex;
  gap: 0.125rem;
  color: hsl(45, 93%, 47%);
  font-size: 0.875rem;
}
.review-text {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  line-height: 1.6;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.review-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: hsla(258, 62%, 30%, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.review-author .name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}
.review-author .date {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.125rem;
}


/* ─── 10. PROGRAMME ────────────────────────────────────────────────────────── */
.programme-header {
  text-align: center;
}
.programme-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.programme-header p {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  max-width: 32rem;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}
.programme-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s;
  margin-top: 0.75rem;
}
.programme-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-sm);
}
/* Modules accordéon */
.module {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.15s;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.module.open {
  background: hsla(220, 14%, 96%, 0.4);
  box-shadow: var(--shadow-xs);
}
.module:not(.open):hover {
  background: hsla(220, 14%, 96%, 0.3);
}
.module-logiciel-title {
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.375rem;
  margin: 1.75rem 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.module-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem;
  text-align: left;
}
.module-num {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsla(258, 62%, 30%, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.module-title {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
}
.module-chevron {
  font-size: 1rem;
  color: var(--muted-fg);
  transition: transform 0.2s;
}
.module.open .module-chevron {
  transform: rotate(180deg);
}
.module-content {
  padding: 0 1rem 1rem 3.75rem;
  display: none;
}
.module.open .module-content {
  display: block;
}
.module-content li {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.module-content li:last-child { margin-bottom: 0; }
.module-content li .arrow {
  color: var(--accent);
  margin-top: 0.2rem;
  font-weight: 500;
  flex-shrink: 0;
}
.module-li-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.module-subtext {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-fg);
  line-height: 1.55;
}


/* ─── 11. CERTIFICATIONS ───────────────────────────────────────────────────── */
.certs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.cert-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
  transition: all 0.15s;
}
.cert-card:hover {
  border-color: hsla(258, 62%, 30%, 0.3);
  background: hsla(220, 14%, 96%, 0.5);
  box-shadow: var(--shadow-xs);
}
.cert-card .cert-title {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}
.cert-card:hover .cert-title {
  color: var(--primary);
}
.cert-card .cert-sub {
  font-size: 0.75rem;
  color: var(--muted-fg);
}


/* ─── 12. CONTENT ──────────────────────────────────────────────────────────── */
.content-text {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.75;
}
.content-text p {
  margin-bottom: 1.25rem;
}
.content-text p:last-child {
  margin-bottom: 0;
}
.content-text h2,
.content-text h3 {
  color: var(--fg);
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.content-text h2 { font-size: 1.25rem; font-weight: 700; }
.content-text h3 { font-size: 1.0625rem; font-weight: 600; }
.content-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-text a:hover { color: var(--primary); }

/* Image inclinée — légère rotation pour moderniser, sans impact layout */
.content-img {
  display: block;
  width: 100%;
  max-width: 32rem;
  height: auto;
  margin: 2rem auto;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px -4px rgb(0 0 0 / 0.10);
  transform: rotate(-1.2deg);
  will-change: transform;
}
@media (max-width: 640px) {
  .content-img { transform: none; max-width: 100%; }
}


/* ─── 13. CAROUSEL ─────────────────────────────────────────────────────────── */
.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.carousel-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.carousel-btns {
  display: flex;
  gap: 0.25rem;
}
.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: background 0.15s;
}
.carousel-btn:hover {
  background: var(--muted);
}
.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-card {
  min-width: 240px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  scroll-snap-align: start;
  transition: box-shadow 0.15s;
}
.carousel-card:hover {
  box-shadow: var(--shadow-sm);
}
.carousel-card .c-img {
  height: 10rem;
  overflow: hidden;
}
.carousel-card .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.carousel-card:hover .c-img img {
  transform: scale(1.05);
}
.carousel-card .c-body {
  padding: 1rem;
}
.carousel-card .c-body p {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}


/* ─── 14. FAQ ──────────────────────────────────────────────────────────────── */
.faq-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: all 0.15s;
}
.faq-item.open {
  background: hsla(220, 14%, 96%, 0.4);
  box-shadow: var(--shadow-xs);
}
.faq-item:not(.open):hover {
  background: hsla(220, 14%, 96%, 0.3);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  text-align: left;
}
.faq-btn .q {
  font-size: 0.875rem;
  font-weight: 600;
  padding-right: 1rem;
}
.faq-btn .plus {
  font-size: 1.25rem;
  color: var(--muted-fg);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-btn .plus {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  font-size: 0.8125rem;
  color: var(--muted-fg);
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  display: block;
}


/* ─── 15. INFO / COCON SÉMANTIQUE ──────────────────────────────────────────── */
.info-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.info-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.info-link {
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
  margin-bottom: 0.5rem;
  transition: all 0.15s;
}
.info-link:hover {
  border-color: hsla(160, 84%, 29%, 0.3);
  background: hsla(220, 14%, 96%, 0.4);
  box-shadow: var(--shadow-xs);
}
.info-link .il-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.info-link:hover .il-title {
  color: var(--accent);
}
.info-link .il-desc {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.6;
}


/* ─── 16. SIDEBAR ──────────────────────────────────────────────────────────── */
.sidebar-cta {
  border-radius: var(--radius);
  background: var(--primary);
  padding: 1.25rem;
  color: var(--primary-fg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-cta h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.sidebar-cta .des {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
}
.sidebar-cta .big-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.sidebar-cta .small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
}
.sidebar-cta .cpf-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}
.sidebar-cta .sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.15s;
  box-shadow: var(--shadow-xs);
}
.sidebar-cta .sidebar-btn:hover {
  background: var(--accent-hover);
}
.sidebar-cta .sidebar-sub {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.15s;
}
.sidebar-cta .sidebar-sub:hover {
  color: rgba(255, 255, 255, 1);
}
/* Card box générique sidebar */
.card-box {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
}
.card-box.warning {
  background: var(--warning-bg);
  border-color: var(--warning-bg);
}
.card-box.muted-bg {
  background: hsla(220, 14%, 96%, 0.5);
}
.card-box .cb-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.card-box .cb-title.warning-title {
  color: var(--warning-accent);
  text-align: center;
  margin-bottom: 0.75rem;
}
.card-box .cb-sub {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}
.card-box .cb-sub.center {
  text-align: center;
}
.card-box .logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.card-box .logos-row img {
  height: 2.5rem;
  object-fit: contain;
  transition: opacity 0.15s;
}
.card-box .logos-row img:hover {
  opacity: 0.8;
}
.card-box .cb-center {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.card-box .cb-accent-title {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
/* Pills villes / départements */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.15s;
  white-space: normal;
  line-height: 1.4;
}
.pill:hover {
  background: var(--muted);
  border-color: var(--accent);
}
/* Liens contact */
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.375rem;
}
.contact-link:hover {
  text-decoration: underline;
}
/* Liste autres formations */
.other-list a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--muted-fg);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.other-list a:last-child {
  border-bottom: none;
}
.other-list a:hover {
  color: var(--accent);
}
/* Paiement */
.payment-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.payment-row img {
  height: 1.75rem;
  width: auto;
  border-radius: 0.25rem;
}
.payment-row span {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
/* Formulaire rappel sidebar */
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.callback-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 100%;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s;
}
.callback-btn:hover {
  background: var(--accent-hover);
}


/* ─── 17. FOOTER ───────────────────────────────────────────────────────────── */
.site-footer-v2 {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 2rem 0;
  margin-top: 2rem;
}
.footer-inner-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-top-v2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact {
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.footer-contact strong {
  display: block;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.footer-bottom-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.footer-menu-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.footer-menu-v2 a {
  font-size: 0.75rem;
  color: var(--muted-fg);
  transition: color 0.15s;
}
.footer-menu-v2 a:hover {
  color: var(--fg);
}


/* ─── 18. MOBILE STICKY BAR ────────────────────────────────────────────────── */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-top: 1px solid var(--border);
  background: hsla(0, 0%, 99%, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 12px rgb(0 0 0 / 0.08);
}
.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  margin: 0 1rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s;
}
.mobile-sticky a:hover {
  background: var(--accent-hover);
}


/* ─── 19. UTILITIES & RESPONSIVE ───────────────────────────────────────────── */
.pb-lg {
  padding-bottom: 4rem;
}

/* sm : ≥ 640px */
@media (min-width: 640px) {
  .max-w                        { padding: 26px; }
  .pricing-grid                 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid                 { grid-template-columns: repeat(3, 1fr); }
  .certs-grid                   { grid-template-columns: repeat(2, 1fr); }
  .info-grid                    { grid-template-columns: repeat(2, 1fr); }
  .carousel-card                { min-width: 260px; }
  .cpf-form                     { flex-direction: row; }
  .bottom-cta                   { flex-direction: row; }
  .session-date,
  .session-price-desktop        { display: flex; align-items: center; gap: 0.375rem; }
  .session-mobile               { display: none !important; }
  .footer-top-v2                { flex-direction: row; justify-content: space-between; }
  .footer-bottom-v2             { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* md : ≥ 768px */
@media (min-width: 768px) {
  .header-nav                   { display: flex; }
  .mobile-menu-btn              { display: none; }
}

/* lg : ≥ 1024px */
@media (min-width: 1024px) {
  .page-grid                    { flex-direction: row; }
  .sidebar-col                  { width: 340px; }
  .sidebar-inner                { position: sticky; top: 9rem; }
  .hero-top                     { flex-direction: row; }
  .hero h1                      { font-size: 3rem; }
  .hero-img-wrap                { display: block; }
  .picto-grid                   { grid-template-columns: repeat(4, 1fr); }
  .mobile-sticky                { display: none; }
  .pb-lg                        { padding-bottom: 0; }
  .pricing-grid                 { grid-template-columns: repeat(4, 1fr); }
  .pricing-card                 { padding: 0.875rem; }
  .pricing-card .price          { font-size: 1.5rem; }
}

/* xl : ≥ 1280px */
@media (min-width: 1280px) {
  .pricing-grid                 { grid-template-columns: repeat(4, 1fr); }
}

/* sm hero h1 */
@media (min-width: 640px) {
  .hero h1                      { font-size: 2.25rem; }
}
