/* ═══════════════════════════════════════════════════════════
   PANDAGRO — Design System partagé
   ressources.pandagro-svt.fr
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --pdg-blue:       #2A4BFF;
  --pdg-blue-dk:    #1d4ed8;
  --pdg-sky:        #47B8FF;
  --pdg-yellow:     #FFD300;
  --pdg-dark:       #0f172a;
  --pdg-text:       #1e293b;
  --pdg-muted:      #64748b;
  --pdg-bg:         #f8f9ff;
  --pdg-bg-blue:    #eef2ff;
  --pdg-bg2:        #eff6ff;
  --pdg-border:     rgba(42,75,255,.12);
  --pdg-border-lt:  #dce8ff;
  --pdg-white:      #ffffff;
  --pdg-green:      #00b67a;
  --pdg-gradient:   linear-gradient(135deg, #2A4BFF 0%, #47B8FF 100%);
  --pdg-shadow:     0 4px 20px rgba(42,75,255,.08);
  --pdg-shadow-lg:  0 20px 50px rgba(42,75,255,.16);
  --pdg-radius:     14px;
  --pdg-radius-lg:  22px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--pdg-text);
  background: var(--pdg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4 {
  font-family: 'Nunito', 'Quicksand', sans-serif;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--pdg-dark);
}

/* ── LAYOUT ── */
.pdg-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.pdg-container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.pdg-section { padding: 72px 0; }
.pdg-section-alt { background: var(--pdg-bg); }
.pdg-divider { border: none; border-top: 1px solid var(--pdg-border); }
.pdg-center { text-align: center; }

/* ── ANIMATIONS ── */
@keyframes pdg-gradient-shift {
  0%  { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}
@keyframes pdg-shimmer {
  0%      { left: -100%; }
  40%,100%{ left: 150%;  }
}
@keyframes pdg-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pdg-reveal { transition: opacity .6s ease, transform .6s ease; }
.pdg-reveal.pdg-hidden  { opacity: 0; transform: translateY(24px); }
.pdg-reveal.pdg-visible { opacity: 1 !important; transform: translateY(0) !important; }
.pdg-d1 { transition-delay: .1s; }
.pdg-d2 { transition-delay: .2s; }
.pdg-d3 { transition-delay: .3s; }
.pdg-d4 { transition-delay: .4s; }

/* ═══════════════════════════
   HEADER
   ═══════════════════════════ */
.pdg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pdg-white);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: 14px 0;
}
.pdg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.pdg-logo { display: flex; align-items: center; gap: 10px; }
.pdg-logo img { height: 34px; width: auto; }
.pdg-logo-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0fdf4; border: 1.5px solid #bbf7d0; color: #16a34a;
  font-size: 11px; font-weight: 800; padding: 4px 9px;
  border-radius: 999px; white-space: nowrap;
}
.pdg-logo-badge svg { fill: #16a34a; }

.pdg-nav { display: flex; align-items: center; gap: 8px; }
.pdg-nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 11px;
  font-family: 'Quicksand', sans-serif; font-size: 14px; font-weight: 700;
  line-height: 1; white-space: nowrap; cursor: pointer; border: none;
  transition: all .2s;
}
.pdg-nav-btn-ghost  { background: transparent; color: var(--pdg-muted); border: 1.5px solid transparent; }
.pdg-nav-btn-ghost:hover { color: var(--pdg-blue); background: var(--pdg-bg-blue); }
.pdg-nav-btn-yellow { background: #fffbeb; color: #d97706; border: 1.5px solid #fde68a; }
.pdg-nav-btn-yellow:hover { background: #fef3c7; transform: translateY(-2px); }
.pdg-nav-btn-blue   { background: var(--pdg-gradient); color: #fff; border: 1.5px solid transparent; box-shadow: 0 4px 15px rgba(42,75,255,.22); }
.pdg-nav-btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42,75,255,.35); }

.pdg-burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.pdg-burger span { width: 24px; height: 3px; background: var(--pdg-text); border-radius: 2px; transition: all .3s; display: block; }

.pdg-mobile-nav {
  display: none; flex-direction: column; gap: 8px; padding: 16px 24px;
  background: var(--pdg-white); border-top: 1px solid var(--pdg-border);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.pdg-mobile-nav.pdg-open { display: flex; }

@media (max-width: 820px) {
  .pdg-nav { display: none; }
  .pdg-burger { display: flex; }
}
@media (max-width: 480px) {
  .pdg-header-inner { padding: 0 16px; }
  .pdg-logo img { height: 28px; }
}

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.pdg-footer {
  background: var(--pdg-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 24px 32px;
  margin-top: 0;
}
.pdg-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.pdg-footer-brand h3 {
  color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em;
}
.pdg-footer-brand p { font-size: 13.5px; line-height: 1.65; max-width: 260px; }
.pdg-footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.pdg-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.pdg-footer-col a { font-size: 13.5px; transition: color .2s; }
.pdg-footer-col a:hover { color: var(--pdg-sky); }
.pdg-footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
}
.pdg-footer-tp {
  display: flex; align-items: center; gap: 6px;
  color: var(--pdg-green); font-weight: 700; font-size: 13px;
}
.pdg-footer-tp span { font-size: 16px; letter-spacing: 1px; }

/* ═══════════════════════════
   HERO (pages ressources / annales)
   ═══════════════════════════ */
.pdg-hero {
  position: relative; overflow: hidden;
  padding: 64px 24px 72px;
  background: var(--pdg-white);
  text-align: center;
}
.pdg-hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(42,75,255,.08) 0%, transparent 65%);
}
.pdg-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.pdg-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
  font-size: 12.5px; font-weight: 700; color: var(--pdg-muted); margin-bottom: 20px;
}
.pdg-breadcrumb a { color: var(--pdg-blue); }
.pdg-breadcrumb a:hover { text-decoration: underline; }
.pdg-breadcrumb span { opacity: .5; }

.pdg-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--pdg-blue); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  background: var(--pdg-bg2); padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(42,75,255,.2); margin-bottom: 16px;
}
.pdg-h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900; letter-spacing: -.03em; margin-bottom: 16px; color: var(--pdg-dark);
}
.pdg-h1 em {
  font-style: normal;
  background: var(--pdg-gradient); background-size: 200%;
  animation: pdg-gradient-shift 4s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pdg-hero-sub {
  font-size: 16px; color: var(--pdg-muted); line-height: 1.7;
  max-width: 640px; margin: 0 auto 28px;
}
.pdg-hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 760px; margin: 0 auto 28px;
}
.pdg-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--pdg-bg2); border: 1.5px solid #bfdbfe;
  color: var(--pdg-text); font-size: 14px; font-weight: 700; line-height: 1;
  transition: all .2s;
}
.pdg-hero-badge:hover { transform: translateY(-2px); color: var(--pdg-blue); border-color: rgba(42,75,255,.25); }

/* ═══════════════════════════
   BOUTONS CTA
   ═══════════════════════════ */
.pdg-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--pdg-radius); border: none;
  background: var(--pdg-blue); color: #fff;
  font-family: 'Quicksand', sans-serif; font-size: 16px; font-weight: 800;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 24px rgba(42,75,255,.35);
  transition: background .25s, transform .2s, box-shadow .2s;
}
.pdg-btn::after {
  content: "";
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  animation: pdg-shimmer 3s ease-in-out infinite;
}
.pdg-btn:hover { background: var(--pdg-blue-dk); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(42,75,255,.45); color: #fff; }

.pdg-btn-yellow {
  background: linear-gradient(135deg, #FFD300, #FFB300);
  color: var(--pdg-dark);
  box-shadow: 0 8px 24px rgba(255,211,0,.35);
}
.pdg-btn-yellow:hover { background: linear-gradient(135deg, #FFDC33, #FFC233); box-shadow: 0 14px 36px rgba(255,211,0,.5); color: var(--pdg-dark); }

.pdg-btn-outline {
  background: transparent; color: var(--pdg-blue);
  border: 2px solid rgba(42,75,255,.3);
  box-shadow: none;
}
.pdg-btn-outline:hover { background: var(--pdg-bg2); box-shadow: none; color: var(--pdg-blue); }

.pdg-btn-white {
  background: #fff; color: var(--pdg-blue);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.pdg-btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.25); color: var(--pdg-blue); }

/* ── Spécifique SIO popup (ne modifie pas le JS sio) ── */
.pdg-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--pdg-radius); border: none;
  background: var(--pdg-blue); color: #fff;
  font-family: 'Quicksand', sans-serif; font-size: 16px; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(42,75,255,.35);
  transition: background .25s, transform .2s, box-shadow .2s;
}
.pdg-cta:hover { background: var(--pdg-blue-dk); transform: translateY(-2px); }

/* ═══════════════════════════
   BADGE "satisfait ou remboursé"
   ═══════════════════════════ */
.pdg-badge-circle {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--pdg-gradient);
  box-shadow: 0 4px 14px rgba(42,75,255,.30);
  text-align: center; padding: 6px; flex-shrink: 0;
}
.pdg-badge-circle .top  { font-size: .52rem; font-weight: 800; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .04em; line-height: 1.2; }
.pdg-badge-circle .main { font-size: .7rem; font-weight: 900; color: #fff; line-height: 1.1; margin: 2px 0 1px; }
.pdg-badge-circle .sub  { font-size: .48rem; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .03em; line-height: 1.2; }

/* ═══════════════════════════
   CARDS
   ═══════════════════════════ */
.pdg-card {
  background: var(--pdg-white);
  border: 1.5px solid var(--pdg-border-lt);
  border-radius: var(--pdg-radius);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--pdg-text);
  box-shadow: var(--pdg-shadow);
  transition: border-color .18s, box-shadow .18s, transform .15s;
}
.pdg-card:hover {
  border-color: var(--pdg-sky);
  box-shadow: 0 6px 20px rgba(42,75,255,.16);
  transform: translateY(-2px);
}
.pdg-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--pdg-bg-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.pdg-card-body { flex: 1; min-width: 0; }
.pdg-card-title { font-size: .9rem; font-weight: 700; line-height: 1.3; }
.pdg-card-sub   { font-size: .75rem; color: var(--pdg-muted); margin-top: 2px; }
.pdg-card-arrow { flex-shrink: 0; color: var(--pdg-muted); transition: transform .18s, color .18s; }
.pdg-card:hover .pdg-card-arrow { transform: translateX(3px); color: var(--pdg-blue); }

/* ── Publication card (jaune) ── */
.pdg-pub-card {
  display: block; text-decoration: none;
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 3px solid #FFD300;
  box-shadow: 0 4px 24px rgba(255,211,0,.25);
  transition: transform .18s, box-shadow .18s;
}
.pdg-pub-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,211,0,.35); }
.pdg-pub-card img { width: 100%; max-height: 280px; object-fit: contain; background: #f0f5fc; display: block; }
.pdg-pub-card-body {
  padding: 14px 16px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pdg-pub-eyebrow { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pdg-blue); margin-bottom: 3px; }
.pdg-pub-title   { font-size: 1rem; font-weight: 800; color: var(--pdg-text); line-height: 1.2; }
.pdg-pub-slogan  { font-size: .72rem; color: #94a3b8; font-style: italic; margin: 4px 0 6px; }
.pdg-pub-cta     { display: flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700; color: var(--pdg-blue); }

/* ── Section label ── */
.pdg-section-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pdg-blue); margin-bottom: 10px;
}
.pdg-section-label::before {
  content: ''; width: 4px; height: 14px;
  background: var(--pdg-blue); border-radius: 2px; flex-shrink: 0;
}

/* ── Tag eyebrow ── */
.pdg-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--pdg-blue); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  background: var(--pdg-bg2); padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(42,75,255,.2); margin-bottom: 14px;
}

/* ═══════════════════════════
   STATS ROW
   ═══════════════════════════ */
.pdg-stats-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 32px; }
.pdg-stat {
  background: var(--pdg-white); border: 1.5px solid var(--pdg-border);
  border-radius: 16px; padding: 18px 24px; text-align: center;
  box-shadow: var(--pdg-shadow); min-width: 140px;
}
.pdg-stat-num {
  display: block;
  font-family: 'Nunito', sans-serif; font-size: clamp(22px,4vw,32px); font-weight: 900; line-height: 1;
  background: var(--pdg-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pdg-stat-label { font-size: 12px; color: var(--pdg-muted); margin-top: 5px; font-weight: 600; }

/* ═══════════════════════════
   CTA BOX
   ═══════════════════════════ */
.pdg-cta-box {
  background: var(--pdg-gradient); background-size: 200% 200%;
  animation: pdg-gradient-shift 6s ease infinite;
  border-radius: 28px; padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px rgba(42,75,255,.28);
}
.pdg-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.pdg-cta-box h2 { font-size: clamp(22px,4vw,40px); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; }
.pdg-cta-box p  { font-size: 16px; color: #eff6ff; margin: 0 auto 32px; max-width: 500px; position: relative; }

/* ═══════════════════════════
   HERO "mini" (pages simples)
   ═══════════════════════════ */
.pdg-hero-sm {
  background: var(--pdg-gradient); padding: 40px 24px 32px;
  text-align: center; color: #fff;
}
.pdg-hero-sm-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: #fff; border: 3px solid rgba(255,255,255,.6);
  box-shadow: 0 0 0 5px rgba(255,255,255,.15), 0 8px 24px rgba(0,0,0,.25);
  overflow: hidden; margin: 0 auto 14px;
}
.pdg-hero-sm-avatar img { width: 100%; height: 100%; object-fit: contain; }
.pdg-hero-sm h1 { font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.15; }
.pdg-hero-sm h1 span { color: #93c5fd; }
.pdg-hero-sm p   { font-size: .85rem; color: rgba(255,255,255,.78); max-width: 360px; margin: 10px auto 0; line-height: 1.65; }
.pdg-hero-sm .pdg-tp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
  padding: 5px 12px; text-decoration: none;
}
.pdg-hero-sm .pdg-tp-badge .stars { font-size: .75rem; color: #fff; letter-spacing: 2px; }
.pdg-hero-sm .pdg-tp-badge .label { font-size: .62rem; font-weight: 800; color: rgba(255,255,255,.85); letter-spacing: .06em; text-transform: uppercase; }

/* ═══════════════════════════
   PAGE MERCI
   ═══════════════════════════ */
.pdg-merci-hero {
  background: var(--pdg-bg); padding: 48px 24px 32px; text-align: center;
}
.pdg-merci-icon {
  width: 64px; height: 64px; background: var(--pdg-gradient);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(42,75,255,.3); font-size: 28px;
}
.pdg-merci-hero h1 {
  font-size: clamp(22px,5vw,32px); font-weight: 900; color: var(--pdg-dark);
  line-height: 1.2; margin-bottom: 10px;
}
.pdg-merci-hero h1 em {
  font-style: normal;
  background: var(--pdg-gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.pdg-merci-box {
  background: #fff; border: 2px solid rgba(42,75,255,.12);
  border-radius: 20px; padding: 24px 22px; margin-bottom: 20px;
  box-shadow: var(--pdg-shadow);
}

/* ═══════════════════════════
   BLOG
   ═══════════════════════════ */
.pdg-article { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.pdg-article-header { padding: 40px 0 32px; }
.pdg-article-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; font-size: 13px; color: var(--pdg-muted); font-weight: 600; }
.pdg-article h1 { font-size: clamp(26px,5vw,44px); font-weight: 900; color: var(--pdg-dark); line-height: 1.12; margin-bottom: 16px; }
.pdg-article-intro { font-size: 17px; color: var(--pdg-muted); line-height: 1.75; margin-bottom: 32px; }
.pdg-article h2 { font-size: clamp(20px,3.5vw,30px); font-weight: 800; color: var(--pdg-dark); margin: 40px 0 16px; padding-top: 8px; border-top: 2px solid var(--pdg-border); }
.pdg-article h3 { font-size: 18px; font-weight: 700; color: var(--pdg-blue); margin: 28px 0 10px; }
.pdg-article p  { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--pdg-text); }
.pdg-article ul { padding-left: 0; margin-bottom: 16px; }
.pdg-article ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; line-height: 1.7; margin-bottom: 8px; }
.pdg-article ul li::before { content: "✓"; color: var(--pdg-blue); font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.pdg-article-callout {
  background: var(--pdg-bg2); border-left: 4px solid var(--pdg-blue);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 24px 0;
  font-size: 15px; line-height: 1.7; color: var(--pdg-text);
}

/* ── Tableau de bord blog ── */
.pdg-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.pdg-blog-card {
  background: var(--pdg-white); border: 1.5px solid var(--pdg-border);
  border-radius: var(--pdg-radius-lg); overflow: hidden;
  box-shadow: var(--pdg-shadow); transition: all .25s; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.pdg-blog-card:hover { transform: translateY(-4px); box-shadow: var(--pdg-shadow-lg); border-color: rgba(42,75,255,.28); }
.pdg-blog-card-body { padding: 20px; flex: 1; }
.pdg-blog-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--pdg-blue); margin-bottom: 8px; }
.pdg-blog-card-title { font-size: 17px; font-weight: 800; color: var(--pdg-dark); line-height: 1.25; margin-bottom: 10px; }
.pdg-blog-card-sub { font-size: 13.5px; color: var(--pdg-muted); line-height: 1.6; }
.pdg-blog-card-footer { padding: 12px 20px; border-top: 1px solid var(--pdg-border); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--pdg-muted); font-weight: 600; }

/* ═══════════════════════════
   ACCORDÉON (annales)
   ═══════════════════════════ */
.pdg-acc-wrap { margin-bottom: 12px; background: var(--pdg-white); border: 1.5px solid var(--pdg-border); border-radius: 18px; box-shadow: var(--pdg-shadow); transition: all .25s; overflow: hidden; }
.pdg-acc-wrap:hover { border-color: rgba(42,75,255,.25); box-shadow: var(--pdg-shadow-lg); }
.pdg-acc-toggle { display: none; }
.pdg-acc-label {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; user-select: none; gap: 14px;
}
.pdg-acc-title-wrap { display: flex; align-items: center; gap: 12px; }
.pdg-acc-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; box-shadow: 0 4px 10px rgba(0,0,0,.1); }
.pdg-acc-title { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 800; color: var(--pdg-dark); }
.pdg-acc-chevron { color: var(--pdg-muted); font-size: 16px; transition: transform .3s; flex-shrink: 0; }
.pdg-acc-toggle:checked ~ .pdg-acc-label .pdg-acc-chevron { transform: rotate(180deg); }
.pdg-acc-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(0,1,0,1); }
.pdg-acc-toggle:checked ~ .pdg-acc-body { max-height: 8000px; transition: max-height 1s ease-in-out; }
.pdg-acc-inner { padding: 20px 22px 24px; border-top: 1px solid var(--pdg-border); }

/* ── Table ── */
.pdg-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pdg-table th { background: var(--pdg-bg); padding: 10px 14px; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--pdg-muted); text-align: left; }
.pdg-table td { padding: 11px 14px; border-bottom: 1px solid var(--pdg-border); line-height: 1.5; }
.pdg-table tr:last-child td { border-bottom: none; }
.pdg-table a { color: var(--pdg-blue); font-weight: 600; }
.pdg-table a:hover { text-decoration: underline; }

/* ── Iframe ── */
.pdg-ratio { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; }
.pdg-ratio iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ═══════════════════════════
   BOUTIQUE
   ═══════════════════════════ */
.pdg-pack-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.pdg-pack-card {
  background: var(--pdg-white); border: 2px solid var(--pdg-border);
  border-radius: 20px; overflow: hidden; box-shadow: var(--pdg-shadow);
  transition: all .25s; display: flex; flex-direction: column;
}
.pdg-pack-card:hover { transform: translateY(-4px); box-shadow: var(--pdg-shadow-lg); border-color: rgba(42,75,255,.3); }
.pdg-pack-visual { background: var(--pdg-bg); padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 180px; }
.pdg-pack-visual img { max-height: 160px; object-fit: contain; }
.pdg-pack-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pdg-pack-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.pdg-pack-body p  { font-size: 13.5px; color: var(--pdg-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.pdg-pack-stats { display: flex; gap: 0; border: 1px solid var(--pdg-border); border-radius: 10px; overflow: hidden; margin-bottom: 16px; font-size: 12px; }
.pdg-pack-stat { flex: 1; text-align: center; padding: 10px 6px; }
.pdg-pack-stat:not(:last-child) { border-right: 1px solid var(--pdg-border); }
.pdg-pack-stat strong { display: block; font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 800; background: var(--pdg-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pdg-pack-stat span   { color: var(--pdg-muted); font-size: 11px; }

/* ═══════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════ */
.pdg-video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.pdg-video-card {
  background: var(--pdg-white); border: 1.5px solid var(--pdg-border);
  border-radius: 22px; overflow: hidden; box-shadow: var(--pdg-shadow); transition: all .25s;
}
.pdg-video-card:hover { transform: translateY(-4px); box-shadow: var(--pdg-shadow-lg); border-color: rgba(42,75,255,.28); }
.pdg-video-info { display: flex; align-items: center; gap: 12px; padding: 16px 16px 10px; }
.pdg-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(42,75,255,.2); flex-shrink: 0; }
.pdg-video-name { font-family: 'Nunito',sans-serif; font-size: 14px; font-weight: 800; color: var(--pdg-dark); }
.pdg-video-rank { font-size: 11.5px; color: var(--pdg-blue); font-weight: 600; margin-top: 2px; }
.pdg-video-quote { padding: 0 16px 12px; font-size: 13px; color: var(--pdg-muted); line-height: 1.65; font-style: italic; }

/* ═══════════════════════════
   TRUSTPILOT STRIP
   ═══════════════════════════ */
.pdg-trust-strip {
  background: var(--pdg-bg2); border-top: 1px solid var(--pdg-border); border-bottom: 1px solid var(--pdg-border);
  padding: 24px;
}
.pdg-trust-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.pdg-trust-tp {
  display: flex; align-items: center; gap: 10px;
  background: var(--pdg-white); border: 1.5px solid rgba(42,75,255,.15);
  border-radius: 12px; padding: 10px 18px; box-shadow: var(--pdg-shadow);
}
.pdg-trust-stars { color: var(--pdg-green); font-size: 18px; letter-spacing: 2px; }
.pdg-trust-score { font-family: 'Nunito',sans-serif; font-weight: 900; font-size: 20px; color: var(--pdg-green); }
.pdg-trust-score-sub { font-size: 11px; color: var(--pdg-muted); font-weight: 600; }

/* ═══════════════════════════
   RESPONSIVE GLOBAL
   ═══════════════════════════ */
@media (max-width: 640px) {
  .pdg-section { padding: 52px 0; }
  .pdg-hero { padding: 48px 20px 56px; }
  .pdg-cta-box { padding: 44px 24px; }
  .pdg-stats-row { gap: 10px; }
  .pdg-stat { min-width: 120px; padding: 14px 16px; }
  .pdg-video-grid { grid-template-columns: 1fr; }
  .pdg-blog-grid { grid-template-columns: 1fr; }
  .pdg-pack-grid { grid-template-columns: 1fr; }
  .pdg-footer-inner { flex-direction: column; gap: 28px; }
  .pdg-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .pdg-hero-badges { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; max-width: 340px; margin-left: auto; margin-right: auto; }
  .pdg-hero-badge { width: 100%; min-height: 46px; padding: 9px 12px; border-radius: 12px; font-size: 13px; justify-content: flex-start; }
  .pdg-btn { width: 100%; max-width: 360px; justify-content: center; }
}

/* ═══════════════════════════
   PAGE D'ACCUEIL (home)
   ═══════════════════════════ */
.pdg-hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 16px; color: var(--pdg-dark);
}
.pdg-hero-title em {
  font-style: normal;
  background: var(--pdg-gradient); background-size: 200%;
  animation: pdg-gradient-shift 4s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pdg-hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin: 28px auto 32px;
}
.pdg-hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  margin-top: 8px;
}
.pdg-hero-stats span {
  display: flex; flex-direction: column; align-items: center;
  font-size: 13px; color: var(--pdg-muted); font-weight: 600;
}
.pdg-hero-stats strong {
  font-family: 'Nunito', sans-serif; font-size: clamp(20px,4vw,28px); font-weight: 900; line-height: 1;
  background: var(--pdg-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Titres de section ── */
.pdg-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 4vw, 38px); font-weight: 900;
  letter-spacing: -.02em; line-height: 1.15; color: var(--pdg-dark);
  margin-bottom: 12px;
}
.pdg-section-sub {
  font-size: 16px; color: var(--pdg-muted); line-height: 1.7;
  max-width: 620px; margin-bottom: 40px;
}
.pdg-center .pdg-section-sub, .pdg-section-sub.pdg-center { margin-left: auto; margin-right: auto; }

/* ── Grilles ── */
.pdg-grid { display: grid; gap: 20px; }
.pdg-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.pdg-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

/* ── Cartes fonctionnalité ── */
.pdg-feature-card {
  background: var(--pdg-white);
  border: 1.5px solid var(--pdg-border-lt);
  border-radius: var(--pdg-radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--pdg-text);
  box-shadow: var(--pdg-shadow);
  transition: border-color .18s, box-shadow .18s, transform .15s;
}
.pdg-feature-card:hover {
  border-color: var(--pdg-sky);
  box-shadow: var(--pdg-shadow-lg);
  transform: translateY(-4px);
}
.pdg-feature-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--pdg-bg-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px; flex-shrink: 0;
}
.pdg-feature-title {
  font-family: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 800;
  color: var(--pdg-dark); line-height: 1.25; margin-bottom: 8px;
}
.pdg-feature-sub {
  font-size: .9rem; color: var(--pdg-muted); line-height: 1.6; flex: 1;
}
.pdg-feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: .85rem; font-weight: 800; color: var(--pdg-blue);
  transition: gap .18s;
}
.pdg-feature-card:hover .pdg-feature-link { gap: 10px; }

/* ── CTA box (contenu supplémentaire) ── */
.pdg-cta-box-label {
  display: inline-block; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.9); margin-bottom: 14px; position: relative;
}
.pdg-cta-box-title {
  font-family: 'Nunito', sans-serif; font-size: clamp(22px,4vw,40px);
  font-weight: 900; color: #fff; margin-bottom: 14px; position: relative;
}
.pdg-cta-box-sub {
  font-size: 16px; color: #eff6ff; margin: 0 auto 28px; max-width: 520px; position: relative;
}
.pdg-cta-checklist {
  list-style: none; margin: 0 auto 32px; padding: 0; max-width: 440px;
  display: grid; gap: 10px; text-align: left; position: relative;
}
.pdg-cta-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #fff; font-size: 15px; font-weight: 600;
}
.pdg-cta-checklist li::before {
  content: "✓"; flex-shrink: 0; font-weight: 900; color: var(--pdg-yellow);
}

/* ── Boutons manquants ── */
.pdg-btn-primary { background: var(--pdg-blue); color: #fff; }
.pdg-btn-primary:hover { background: var(--pdg-blue-dk); color: #fff; }
.pdg-btn-ghost {
  background: transparent; color: var(--pdg-blue);
  box-shadow: none; border: none;
}
.pdg-btn-ghost::after { display: none; }
.pdg-btn-ghost:hover { background: var(--pdg-bg2); color: var(--pdg-blue-dk); box-shadow: none; }

/* ── CTA final ── */
.pdg-cta-final { text-align: center; max-width: 680px; margin: 0 auto; }
.pdg-cta-final h2 {
  font-family: 'Nunito', sans-serif; font-size: clamp(24px,4vw,40px);
  font-weight: 900; color: var(--pdg-dark); margin-bottom: 14px; line-height: 1.15;
}
.pdg-cta-final p {
  font-size: 16px; color: var(--pdg-muted); line-height: 1.7; margin-bottom: 28px;
}
.pdg-cta-final .pdg-btn { margin: 6px; }

/* ── Bandeau Trustpilot ── */
.pdg-tp-strip {
  background: var(--pdg-bg2);
  border-top: 1px solid var(--pdg-border-lt);
  border-bottom: 1px solid var(--pdg-border-lt);
  padding: 20px 24px;
}
.pdg-tp-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; max-width: 1100px; margin: 0 auto;
  font-size: 15px; color: var(--pdg-text);
}
.pdg-tp-stars { color: var(--pdg-green); font-size: 18px; letter-spacing: 2px; }
.pdg-tp-score { font-family: 'Nunito', sans-serif; font-weight: 900; color: var(--pdg-green); }
.pdg-tp-sep { color: var(--pdg-border-lt); }
.pdg-tp-count { color: var(--pdg-muted); font-weight: 600; }
.pdg-tp-link { color: var(--pdg-blue); font-weight: 700; text-decoration: none; }
.pdg-tp-link:hover { text-decoration: underline; }

/* ── Formulaire de capture (embedded sio) ── */
.pdg-capture {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 420px; margin: 0 auto;
}
.pdg-capture-field {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--pdg-border-lt); border-radius: var(--pdg-radius);
  font-family: 'Quicksand', sans-serif; font-size: 15px; color: var(--pdg-text);
  background: #fff; transition: border-color .18s, box-shadow .18s;
}
.pdg-capture-field::placeholder { color: var(--pdg-muted); }
.pdg-capture-field:focus {
  outline: none; border-color: var(--pdg-blue);
  box-shadow: 0 0 0 3px rgba(42,75,255,.12);
}
.pdg-capture-btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ── Popup modal de capture ── */
.pdg-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity .25s ease;
}
.pdg-modal-open { opacity: 1; visibility: visible; }
.pdg-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.6);
}
.pdg-modal-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--pdg-radius-lg);
  padding: 40px 32px 26px; max-width: 440px; width: 100%;
  text-align: center; box-shadow: var(--pdg-shadow-lg);
  transform: translateY(16px) scale(.98); transition: transform .25s ease;
}
.pdg-modal-open .pdg-modal-card { transform: translateY(0) scale(1); }
.pdg-modal-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; font-size: 28px; line-height: 1;
  color: var(--pdg-muted); cursor: pointer; padding: 4px;
}
.pdg-modal-close:hover { color: var(--pdg-dark); }
.pdg-modal-emoji { font-size: 2.4rem; margin-bottom: 8px; }
.pdg-modal-title {
  font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 900;
  color: var(--pdg-dark); margin-bottom: 10px; line-height: 1.15;
}
.pdg-modal-sub {
  font-size: 14px; color: var(--pdg-muted); line-height: 1.6; margin-bottom: 22px;
}
.pdg-modal-note { font-size: 12px; color: var(--pdg-muted); margin-top: 14px; }

/* ── Responsive home ── */
@media (max-width: 860px) {
  .pdg-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .pdg-grid-2, .pdg-grid-3 { grid-template-columns: 1fr; }
  .pdg-hero-stats { gap: 20px; }
}

/* ── Info rows (acces-gratuit, whatsapp) ── */
.pdg-info-row { display: flex; gap: 14px; align-items: flex-start; }
.pdg-info-icon {
  flex: 0 0 auto; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; background: #eef1ff; border-radius: 12px;
}
.pdg-info-row strong { display: block; color: var(--pdg-text); font-weight: 700; }

/* ── Numbered steps (acces-gratuit, formation) ── */
.pdg-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pdg-steps li { display: flex; gap: 14px; align-items: flex-start; }
.pdg-step-num {
  flex: 0 0 auto; width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 16px;
  color: #fff; background: var(--pdg-blue); border-radius: 50%;
}

/* ── Disabled placeholder CTA (ressources-gratuit non configurés) ── */
.pdg-cta-placeholder { pointer-events: none; }
