/* ==========================================================================
   Geduk — feuille de style commune
   Charte : violet profond #6A4C93 · rose poudré #FFD1DC · gris foncé #4A4A4A
   ========================================================================== */

:root {
  --violet:     #6A4C93;
  --violet-dk:  #513872;
  --violet-dp:  #3C2955;
  --violet-md:  #D9CDE9;
  --violet-lt:  #F4F0F9;

  --rose:       #FFD1DC;
  --rose-dk:    #F9B9CA;
  --rose-lt:    #FFF5F8;

  --ink:        #33303A;
  --ink-2:      #4A4A4A;
  --ink-3:      #857F8D;

  --green:      #3E9E6E;
  --green-lt:   #E9F6EF;
  --amber:      #B5791F;
  --amber-lt:   #FCF3E2;

  --bg:         #FAF8FC;
  --bg-card:    #FFFFFF;
  --border:     #E9E3F0;

  --shadow-sm:  0 2px 10px rgba(106, 76, 147, 0.07);
  --shadow-md:  0 10px 30px rgba(106, 76, 147, 0.11);
  --radius:     14px;
  --maxw:       1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.22;
  color: var(--ink);
}

img { max-width: 100%; }
a { color: var(--violet); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #fff; color: var(--violet); padding: 12px 20px;
  border-radius: 0 0 8px 0; font-weight: 700; z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; }

/* ── LOGO ───────────────────────────────────────────────────────────── */
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-img    { height: 34px; width: 102px; display: block; }
.logo-img-sm { height: 26px; width: 78px; display: block; }

/* ── NAV ────────────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--violet);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 0 5vw;
  height: 66px;
  box-shadow: 0 2px 14px rgba(60, 41, 85, 0.22);
}
.nav-links {
  display: flex; gap: 26px; align-items: center;
  font-size: 0.875rem; font-weight: 600;
  list-style: none; margin-left: auto;
}
.nav-links a {
  text-decoration: none; color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links .nav-only-mobile { display: none; }
.nav-links a.active { box-shadow: inset 0 -2px 0 var(--rose); padding-bottom: 3px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login {
  color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600;
  opacity: 0.85; white-space: nowrap; transition: opacity 0.15s;
}
.nav-login:hover { opacity: 1; }
.nav-cta {
  background: var(--rose); color: var(--violet-dk);
  padding: 9px 20px; border-radius: 7px;
  font-size: 0.85rem; font-weight: 800; text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); }

.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; color: #fff; line-height: 0;
}
.nav-burger svg { width: 24px; height: 24px; fill: currentColor; }

/* ── BOUTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none;
  padding: 13px 26px; border-radius: 8px;
  font-size: 0.94rem; font-weight: 800;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--violet); color: #fff; box-shadow: 0 4px 16px rgba(106, 76, 147, 0.28); }
.btn-primary:hover { background: var(--violet-dk); }
.btn-rose { background: var(--rose); color: var(--violet-dk); box-shadow: 0 4px 16px rgba(249, 185, 202, 0.5); }
.btn-rose:hover { background: var(--rose-dk); }
.btn-white { background: #fff; color: var(--violet); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14); }
.btn-ghost {
  background: transparent; color: var(--ink-2);
  border: 1.5px solid var(--border); font-weight: 700;
}
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ── SECTIONS ───────────────────────────────────────────────────────── */
.section { max-width: var(--maxw); margin: 0 auto; padding: 78px 5vw; }
.section-tight { padding-top: 0; }
.section-eyebrow {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--violet); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px;
}
.section-sub { font-size: 0.95rem; color: var(--ink-3); margin-bottom: 36px; max-width: 680px; }

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
  padding: 118px 5vw 64px;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 52px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose-lt); color: var(--violet-dk);
  border: 1px solid var(--rose); border-radius: 100px;
  padding: 6px 15px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}
.hero h1 {
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  font-weight: 800; letter-spacing: -0.025em;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero h1 .accent { color: var(--violet); }
.hero h1 .underlined {
  background-image: linear-gradient(var(--rose), var(--rose));
  background-size: 100% 0.28em; background-repeat: no-repeat;
  background-position: 0 88%;
}
.hero-sub {
  margin-top: 18px; font-size: 1.02rem; line-height: 1.75;
  animation: fadeUp 0.5s 0.16s ease both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px;
  animation: fadeUp 0.5s 0.24s ease both;
}
.hero-trust {
  display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: var(--ink-3); font-weight: 700;
}
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── PAGE HEADER (pages internes) ───────────────────────────────────── */
.page-header {
  background: var(--violet);
  padding: 118px 5vw 64px;
  text-align: center; color: #fff;
}
.page-header .page-header-eyebrow {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--rose); margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.025em; margin-bottom: 16px; color: #fff;
}
.page-header > p { font-size: 1.03rem; opacity: 0.9; max-width: 620px; margin: 0 auto; }
.page-header .btn { margin-top: 28px; }

/* ── CARTES ─────────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--violet-md); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--violet-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 14px;
}
.card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.card p { font-size: 0.875rem; color: var(--ink-3); line-height: 1.7; }

/* ── BANDEAU FONCTIONNALITÉS ────────────────────────────────────────── */
.features-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 5vw;
}
.features-strip-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; gap: 26px; flex-wrap: wrap; justify-content: center;
}
.feat-item { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 700; color: var(--ink-2); }
.feat-icon {
  width: 30px; height: 30px; border-radius: 9px; background: var(--violet-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

/* ── TABLEAU COMPARATIF ─────────────────────────────────────────────── */
.table-scroll { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 620px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
}
.compare-table thead tr { background: var(--violet); color: #fff; }
.compare-table th {
  padding: 16px 20px; text-align: left;
  font-family: 'Nunito', sans-serif; font-size: 0.875rem; font-weight: 700;
}
.compare-table th:first-child { width: 40%; }
.compare-table th.us-col { background: var(--violet-dk); vertical-align: middle; }
.compare-table th.us-col .th-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.compare-table th.us-col .rec-badge {
  background: var(--rose); color: var(--violet-dk);
  font-size: 0.62rem; font-weight: 800; padding: 3px 10px;
  border-radius: 100px; letter-spacing: 0.06em; white-space: nowrap;
}
.compare-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.12s; }
.compare-table tbody tr:hover { background: var(--violet-lt); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td { padding: 13px 20px; font-size: 0.86rem; }
.compare-table td:first-child { font-weight: 700; color: var(--ink); }
.compare-table td.us-col { background: var(--violet-lt); font-weight: 700; color: var(--violet-dk); }

.check { color: var(--green); font-weight: 800; }
.cross  { color: #C9C4D0; font-weight: 800; }
.warn   { color: var(--amber); font-size: 0.82rem; font-weight: 700; }

/* ── OFFRES / TARIFS ────────────────────────────────────────────────── */
.plan-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px; align-items: stretch;
}
.plan {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 26px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured { border-color: var(--violet); box-shadow: var(--shadow-md); position: relative; }
.plan.featured::before {
  content: 'Le plus choisi';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--violet-dk);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.plan-price {
  font-family: 'Nunito', sans-serif; font-size: 2.3rem; font-weight: 800;
  color: var(--violet); letter-spacing: -0.03em; line-height: 1.1; margin-top: 6px;
}
.plan-price small { font-size: 0.85rem; font-weight: 700; color: var(--ink-3); letter-spacing: 0; }
.plan-limits { font-size: 0.85rem; color: var(--ink-2); margin: 10px 0 4px; }
.plan-limits strong { color: var(--ink); }
.plan ul { list-style: none; margin: 12px 0 18px; display: grid; gap: 7px; }
.plan ul li { font-size: 0.82rem; color: var(--ink-3); display: flex; gap: 8px; align-items: baseline; }
.plan ul li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.plan .btn { margin-top: auto; text-align: center; padding: 11px 18px; font-size: 0.87rem; }

/* Cartes formules « dédié » */
.formula-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 22px; }
.formula-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: 18px; overflow: hidden; display: flex; flex-direction: column;
}
.formula-card.featured { border-color: var(--violet); box-shadow: var(--shadow-md); }
.formula-header { padding: 26px 26px 20px; border-bottom: 1px solid var(--border); }
.formula-card.featured .formula-header { background: var(--violet); border-bottom-color: transparent; }
.formula-card.featured .formula-header .formula-name { color: #fff; }
.formula-card.featured .formula-subtitle { color: rgba(255, 255, 255, 0.8); }
.formula-badge {
  display: inline-block; background: var(--rose); color: var(--violet-dk);
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 11px; border-radius: 100px; margin-bottom: 10px;
}
.formula-name { font-family: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.formula-subtitle { font-size: 0.81rem; color: var(--ink-3); line-height: 1.55; }
.formula-install {
  padding: 15px 26px; background: var(--violet-lt);
  font-size: 0.82rem; color: var(--violet-dk);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.formula-body { flex: 1; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table tr { border-bottom: 1px solid var(--border); }
.pricing-table tr:last-child { border-bottom: none; }
.pricing-table td { padding: 12px 26px; font-size: 0.86rem; }
.pricing-table td:first-child { color: var(--ink-2); }
.pricing-table td:last-child {
  text-align: right; font-family: 'Nunito', sans-serif;
  font-weight: 800; color: var(--violet); white-space: nowrap;
}
.pricing-table .devis { color: var(--amber); font-style: italic; font-size: 0.82rem; }
.formula-footer { padding: 18px 26px; border-top: 1px solid var(--border); font-size: 0.77rem; color: var(--ink-3); line-height: 1.6; }
.formula-cta {
  display: block; text-align: center; background: var(--violet); color: #fff;
  padding: 13px; font-size: 0.9rem; font-weight: 800; text-decoration: none;
  transition: background 0.15s;
}
.formula-cta:hover { background: var(--violet-dk); }
.formula-card.featured .formula-cta { background: var(--violet-dk); }

/* ── ENCART / CALLOUT ───────────────────────────────────────────────── */
.callout { border-radius: 12px; padding: 20px 24px; margin: 26px 0; display: flex; gap: 14px; }
.callout.info { background: var(--violet-lt); border-left: 3px solid var(--violet); }
.callout.warn { background: var(--amber-lt); border-left: 3px solid var(--amber); }
.callout.good { background: var(--green-lt); border-left: 3px solid var(--green); }
.callout.rose { background: var(--rose-lt); border-left: 3px solid var(--rose-dk); }
.callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.callout p { margin: 0; font-size: 0.9rem; color: var(--ink-2); }

/* ── BANDEAU VIOLET (à propos, chiffres) ────────────────────────────── */
.band { background: var(--violet); color: #fff; padding: 74px 5vw; }
.band-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band h2, .band h3 { color: #fff; }
.band .section-eyebrow { color: var(--rose); }
.band-lead {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 700; line-height: 1.45;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 12px; padding: 20px; }
.stat-value { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-value.rose { color: var(--rose); }
.stat-label { font-size: 0.78rem; opacity: 0.72; margin-top: 6px; line-height: 1.45; }

/* ── FONDATEUR ──────────────────────────────────────────────────────── */
.founder-card {
  display: flex; align-items: center; gap: 38px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 38px;
}
.founder-photo {
  width: 140px; height: 140px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; border: 3px solid var(--violet-md);
}
.founder-name { font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; }
.founder-title { font-size: 0.86rem; color: var(--ink-3); font-weight: 700; margin-bottom: 16px; }
.founder-bio { font-size: 0.9rem; line-height: 1.75; margin-bottom: 14px; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0A66C2; color: #fff; padding: 9px 18px; border-radius: 7px;
  font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: opacity 0.15s;
}
.linkedin-btn:hover { opacity: 0.88; }
.linkedin-btn svg { width: 16px; height: 16px; fill: #fff; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  padding: 17px 20px; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.92rem; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 14px; width: 100%; text-align: left;
  background: none; border: 0; line-height: 1.4;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--violet); font-weight: 300; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 0.88rem; line-height: 1.75; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 20px 18px; }
.faq-a a { font-weight: 700; }

/* ── CTA FINALE ─────────────────────────────────────────────────────── */
.cta-wrap {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dk) 62%, var(--violet-dp) 100%);
  border-radius: 20px; padding: 62px 5%; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-wrap::after {
  content: ''; position: absolute; top: -90px; right: -90px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 220, 0.3) 0%, transparent 70%);
}
.cta-wrap h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: #fff; position: relative; z-index: 1; }
.cta-wrap > p { font-size: 1rem; opacity: 0.88; margin-bottom: 30px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-sub { margin-top: 18px; font-size: 0.78rem; opacity: 0.6; position: relative; z-index: 1; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
footer.site-footer { background: var(--violet); color: rgba(255, 255, 255, 0.72); padding: 48px 5vw 26px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 0.85rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-about { font-size: 0.84rem; line-height: 1.7; margin: 14px 0 16px; max-width: 320px; }
.footer-bottom {
  max-width: var(--maxw); margin: 34px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255, 255, 255, 0.55);
}
.footer-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255, 255, 255, 0.72); text-decoration: none;
  font-size: 0.82rem; font-weight: 700; transition: color 0.15s;
}
.footer-linkedin:hover { color: #fff; }
.footer-linkedin svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ── BLOG ───────────────────────────────────────────────────────────── */
.blog-filters { max-width: var(--maxw); margin: 0 auto; padding: 34px 5vw 0; display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 18px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; font-family: inherit;
  border: 1.5px solid var(--border); background: var(--bg-card); color: var(--ink-2);
  cursor: pointer; transition: all 0.15s;
}
.filter-btn.active, .filter-btn:hover { background: var(--violet); color: #fff; border-color: var(--violet); }

.blog-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 30px 5vw 76px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--violet-md); }
.blog-card-cover { height: 152px; display: flex; align-items: center; justify-content: center; font-size: 3.3rem; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tag {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  padding: 3px 10px; border-radius: 100px; background: var(--violet-lt); color: var(--violet);
}
.tag.rose  { background: var(--rose-lt);  color: #A8386A; }
.tag.green { background: var(--green-lt); color: #2C7A53; }
.tag.amber { background: var(--amber-lt); color: var(--amber); }
.blog-card h2, .blog-card h3 { font-size: 1.05rem; font-weight: 800; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.86rem; color: var(--ink-3); line-height: 1.7; flex: 1; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 8px; font-size: 0.77rem; color: var(--ink-3); }
.blog-card-read { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 800; color: var(--violet); }
.blog-card-read::after { content: '→'; transition: transform 0.15s; }
.blog-card:hover .blog-card-read::after { transform: translateX(3px); }

/* ── ARTICLE ────────────────────────────────────────────────────────── */
.article-header { background: var(--violet); padding: 106px 5vw 54px; color: #fff; }
.article-header-inner { max-width: 760px; margin: 0 auto; }
.article-breadcrumb { font-size: 0.78rem; opacity: 0.72; margin-bottom: 18px; }
.article-breadcrumb a { color: inherit; text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.a-tag {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  padding: 4px 12px; border-radius: 100px; background: rgba(255, 255, 255, 0.16); color: #fff;
}
.a-tag.rose { background: var(--rose); color: var(--violet-dk); }
.article-header h1 { font-size: clamp(1.65rem, 3.8vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; color: #fff; }
.article-meta { font-size: 0.82rem; opacity: 0.68; display: flex; gap: 20px; flex-wrap: wrap; }

.article-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 46px; padding: 0 5vw; }
.article-body { max-width: 760px; min-width: 0; padding: 50px 0 76px; font-size: 1.03rem; line-height: 1.78; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; margin: 46px 0 16px; }
.article-body h3 { font-size: 1.12rem; font-weight: 800; margin: 28px 0 10px; color: var(--violet-dk); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { font-weight: 700; }
.article-body a:hover { color: var(--violet-dk); }
.article-body .table-scroll { margin-bottom: 22px; }
.article-body .compare-table { min-width: 520px; font-size: 0.9rem; }

.checklist { list-style: none; margin: 0 0 18px !important; }
.checklist li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; display: flex; gap: 10px; align-items: baseline; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

.cta-inline {
  background: var(--violet); color: #fff; border-radius: 14px;
  padding: 30px; margin: 40px 0; text-align: center;
}
.cta-inline h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.cta-inline p { opacity: 0.88; font-size: 0.9rem; margin-bottom: 18px; }

.toc {
  position: sticky; top: 84px; align-self: start; margin-top: 50px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; font-size: 0.82rem;
}
.toc-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--ink); margin-bottom: 12px; }
.toc ol { margin-left: 16px; color: var(--ink-3); }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--violet); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

.related-articles { margin-top: 46px; padding-top: 38px; border-top: 2px solid var(--border); }
.related-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.related-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px; text-decoration: none; display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.related-card:hover { border-color: var(--violet-md); box-shadow: var(--shadow-sm); }
.related-tag { font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--violet); }
.related-card-title { font-family: 'Nunito', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--ink); line-height: 1.4; flex: 1; }
.related-arrow { font-size: 0.8rem; color: var(--violet); font-weight: 700; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .article-wrap { grid-template-columns: minmax(0, 1fr); }
  .toc { display: none; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 104px; }
  .band-inner { grid-template-columns: 1fr; gap: 34px; }
  .founder-card { flex-direction: column; text-align: center; padding: 30px 24px; }
  .founder-photo { width: 116px; height: 116px; }

  .nav-burger { display: block; order: 3; }
  .nav-actions .nav-login { display: none; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--violet-dk);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 5vw 18px;
    margin: 0;
    box-shadow: 0 12px 24px rgba(60, 41, 85, 0.3);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 13px 2px; font-size: 0.95rem; }
  .nav-links a.active { box-shadow: none; color: var(--rose); }
  .nav-links .nav-only-mobile { display: block; }
}
@media (max-width: 640px) {
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
  .section { padding: 56px 5vw; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .cta-wrap { padding: 44px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-body { font-size: 1rem; }
}

/* ==========================================================================
   Composants utilisés dans le corps des articles
   ========================================================================== */

/* Tableaux de données (prix, budget, comparaison SCORM…) */
.data-table, .price-table, .scorm-table, .budget-table, .total-table {
  width: 100%; border-collapse: collapse;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
  margin: 26px 0; font-size: 0.9rem; min-width: 520px;
}
.data-table thead tr, .price-table thead tr, .scorm-table thead tr,
.budget-table thead tr, .total-table thead tr { background: var(--violet); color: #fff; }
.data-table th, .price-table th, .scorm-table th, .budget-table th, .total-table th {
  padding: 13px 18px; text-align: left;
  font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 700;
}
.data-table td, .price-table td, .scorm-table td, .budget-table td, .total-table td {
  padding: 12px 18px; color: var(--ink-2);
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.data-table tr:last-child td, .price-table tr:last-child td,
.scorm-table tr:last-child td, .total-table tr:last-child td { border-bottom: none; }
.price-table td:first-child, .scorm-table td:first-child { font-weight: 700; color: var(--ink); }
.budget-table tr:last-child td { border-bottom: none; font-weight: 700; color: var(--ink); }
.budget-table tr:last-child td:last-child { color: var(--green); }
.total-table tr:last-child td { font-weight: 700; color: var(--ink); }
.total-table .total-row td,
.price-table .geduk-row td,
.scorm-table .recommended td {
  background: var(--violet-lt); color: var(--violet-dk);
  font-weight: 800; font-family: 'Nunito', sans-serif;
}
.price-table .geduk-row td:first-child { color: var(--violet-dk); }
.badge-best {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 0.65rem; font-weight: 800; padding: 2px 8px;
  border-radius: 100px; margin-left: 6px; vertical-align: middle; letter-spacing: 0.06em;
}
.ok      { color: var(--green); font-weight: 700; }
.ko      { color: var(--amber); font-weight: 700; }
.partial { color: var(--amber); font-weight: 700; }

/* Cartes de coût */
.cost-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin: 28px 0; }
.cost-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.cost-card-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin-bottom: 8px; }
.cost-card-range { font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--violet); }
.cost-card-detail { font-size: 0.78rem; color: var(--ink-3); margin-top: 4px; line-height: 1.5; }
.cost-card.geduk { border-color: var(--violet-md); background: var(--violet-lt); }
.cost-card.geduk .cost-card-range { color: var(--green); }

/* Listes d'étapes numérotées */
.step-list { list-style: none; margin: 0 0 28px !important; display: grid; gap: 16px; }
.step-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  background: var(--violet); color: #fff; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.step-content h4 { font-family: 'Nunito', sans-serif; font-size: 0.98rem; font-weight: 800; margin-bottom: 5px; color: var(--ink); }
.step-content p { font-size: 0.88rem; color: var(--ink-3); margin: 0; line-height: 1.65; }

.article-body .compare-table { margin: 26px 0; }
.article-body code {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 0.88em; background: var(--violet-lt);
  color: var(--violet-dk); padding: 1px 6px; border-radius: 4px;
}

@media (max-width: 640px) {
  .cost-grid { grid-template-columns: 1fr 1fr; }
}
