/* ═════════════════════════════════════════════════════════════════
   LOGARTI — site vitrine
   Palette : navy #0f172a · terre cuite #b3431f · vert #10b981
   ═════════════════════════════════════════════════════════════════ */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-accent: #b3431f;
  --color-accent-dark: #8d3517;
  --color-navy: #0f172a;
  --color-navy-soft: #1e293b;
  --color-success: #10b981;
  --color-border: #e2e8f0;
  --color-light-bg: #f1f5f9;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --container-width: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); line-height: 1.6; }
body { font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--color-navy); line-height: 1.2; margin: 0 0 0.5rem; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--color-muted); }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0 0 0 1.2rem; }
code { font-family: 'SFMono-Regular', Menlo, monospace; font-size: 0.85em; background: var(--color-light-bg); padding: 0.1em 0.4em; border-radius: 3px; }
em { font-style: italic; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name { display: block; font-weight: 700; color: var(--color-navy); font-size: 1.1rem; line-height: 1.1; }
.brand-tag { display: block; font-size: 0.72rem; color: var(--color-muted); letter-spacing: 0.02em; }
.brand-text { height: 48px; width: auto; display: block; }
.site-footer .brand-text { filter: brightness(0) invert(1); }

.nav-main { flex: 1; }
.nav-main ul { display: flex; list-style: none; gap: 0.5rem; padding: 0; margin: 0; justify-content: flex-end; }
.nav-main a {
  display: block; padding: 0.5rem 0.9rem;
  color: var(--color-navy); font-weight: 500; font-size: 0.92rem;
  border-radius: var(--radius-sm);
}
.nav-main a:hover { background: var(--color-light-bg); text-decoration: none; color: var(--color-accent); }

.header-cta {
  padding: 0.55rem 1rem;
  background: var(--color-accent); color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
  white-space: nowrap;
}
.header-cta:hover { background: var(--color-accent-dark); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none; border: none; padding: 0.5rem;
  cursor: pointer; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-navy); }

@media (max-width: 900px) {
  /* Site one-page : on cache la nav et le hamburger, seul le CTA reste */
  .nav-main, .nav-toggle { display: none !important; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-navy); border: 1.5px solid var(--color-border); }
.btn-ghost:hover { border-color: var(--color-navy); color: var(--color-navy); background: #fff; }
.btn-large { padding: 0.95rem 1.8rem; font-size: 1rem; }
.btn-small { padding: 0.5rem 0.9rem; font-size: 0.85rem; }

/* ─── Hero ─── */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(179, 67, 31, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; max-width: 860px; }
.hero-logo {
  display: block;
  height: 110px;
  width: auto;
  max-width: 90%;
  margin: 0 auto 1rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--color-muted); margin-bottom: 2rem; }
.hero-actions { display: inline-flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.hero-subline { font-size: 0.88rem; color: var(--color-muted); }

/* Formulaire d'accès dans le hero */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hero-access {
  display: flex;
  gap: 0.5rem;
  max-width: 560px;
  margin: 1.25rem auto 0.6rem;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-access:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(179, 67, 31, 0.15);
}
.hero-access input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-navy);
  outline: none;
  min-width: 0;
}
.hero-access input::placeholder { color: #94a3b8; }
.hero-access .btn {
  flex-shrink: 0;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
}
@media (max-width: 540px) {
  .hero-access { flex-direction: column; padding: 0.75rem; }
  .hero-access input { padding: 0.75rem 0.6rem; }
}
.hero-access-error {
  color: #dc2626;
  font-size: 0.88rem;
  margin: 0.4rem 0 0;
  font-weight: 600;
}
.hero-access-hint {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 0.4rem 0 1rem;
}
.hero-access-hint a { color: var(--color-accent); font-weight: 600; }

/* ─── Trust strip ─── */
.trust-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}
.trust-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 700px) { .trust-strip .container { grid-template-columns: repeat(2, 1fr); } }
.kpi { display: flex; flex-direction: column; gap: 0.2rem; }
.kpi .num { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--color-navy); line-height: 1; }
.kpi .lbl { font-size: 0.82rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ─── Block (section générique) ─── */
.block { padding: 5rem 0; }
.block.alt { background: var(--color-bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.section-head h2 { margin-bottom: 0.7rem; }
.section-head p { font-size: 1.05rem; color: var(--color-muted); }

/* ─── Métiers grid ─── */
.metiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.metier-card {
  background: #fff;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.15s ease;
}
.metier-card:hover {
  text-decoration: none;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.metier-icon { font-size: 2rem; display: block; margin-bottom: 0.6rem; }
.metier-card h3 { color: var(--color-navy); margin-bottom: 0.35rem; font-size: 1rem; }
.metier-card p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }
.metiers-note { text-align: center; color: var(--color-muted); font-size: 0.92rem; }

/* ─── Feature list (legacy, conservé) ─── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: rgba(179, 67, 31, 0.1);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.feature h3 { color: var(--color-navy); margin-bottom: 0.4rem; }
.feature p { font-size: 0.92rem; }

/* ═════ CE QUI EST INCLUS — Piliers ═════ */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }

.pillar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pillar-site { border-top: 4px solid var(--color-accent); }
.pillar-admin { border-top: 4px solid var(--color-navy); }

.pillar-head {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  list-style: none; /* retire la flèche native <summary> */
}
.pillar-head::-webkit-details-marker { display: none; }
.pillar-head-text { flex: 1; }
/* Chevron caché sur desktop, visible uniquement sur mobile (media query plus bas) */
.pillar-chevron {
  display: none;
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform 0.2s ease;
  margin-top: 0.6rem;
}
.pillar-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(179, 67, 31, 0.12), rgba(179, 67, 31, 0.04));
  border-radius: var(--radius-md);
}
.pillar-admin .pillar-icon {
  color: var(--color-navy);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.04));
}
.pillar-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.pillar-head h3 {
  font-size: 1.35rem; color: var(--color-navy);
  margin: 0 0 0.3rem;
}
.pillar-tagline {
  color: var(--color-muted); font-size: 0.92rem; font-style: italic;
  margin: 0;
}
.pillar-features {
  list-style: none; padding: 0; margin: 0;
}
.pillar-features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.93rem;
  color: var(--color-text);
  line-height: 1.5;
}
.pillar-features li::before {
  content: '✓';
  position: absolute; left: 0; top: 0.55rem;
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.95rem;
}
.pillar-features li:last-child { border-bottom: none; }
.pillar-features strong { color: var(--color-navy); font-weight: 700; }

/* Bonus / support inclus */
.includes-bonus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--color-border);
}
.bonus-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.5rem 0;
}
.bonus-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  background: var(--color-light-bg);
  border-radius: var(--radius-sm);
}
.bonus-item h4 { margin: 0 0 0.2rem; color: var(--color-navy); }
.bonus-item p { margin: 0; font-size: 0.85rem; line-height: 1.5; }

/* ═════ COMMENT ÇA MARCHE — Timeline verticale avec badges ═════ */
.process-flow {
  position: relative;
  max-width: 880px;
  margin: 0 auto 2rem;
  padding-left: 3.5rem;
}
/* Ligne verticale continue qui relie tous les badges */
.process-flow::before {
  content: '';
  position: absolute;
  top: 28px; bottom: 28px; left: 27px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-accent) 66%, #f59e0b 66%, #f59e0b 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
.process-step:last-child { margin-bottom: 0; }

/* Badge circulaire numéroté, positionné sur la ligne verticale */
.process-step .process-num {
  position: absolute;
  top: 1.4rem;
  left: -3.5rem;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.25rem; font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #fff, 0 0 0 6px var(--color-accent);
  z-index: 2;
}
.process-step-warn .process-num {
  background: #f59e0b;
  box-shadow: 0 0 0 5px #fef9ee, 0 0 0 6px #f59e0b;
}
.process-step-warn {
  background: linear-gradient(180deg, #fff 0%, #fef9ee 100%);
  border-color: #fcd34d;
}

.process-step .process-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem; color: var(--color-navy);
  padding-right: 1rem;
}
.process-step .process-body p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.process-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.32rem 0.85rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success);
  font-size: 0.78rem; font-weight: 600;
  border-radius: 999px;
  line-height: 1.3;
}
.process-tag-warn {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.process-note {
  max-width: 780px; margin: 2.5rem auto 0;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border-left: 3px solid var(--color-navy);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}
.process-note p { margin: 0; color: var(--color-text); }
.process-note strong { color: var(--color-navy); }

@media (max-width: 700px) {
  .process-flow { padding-left: 0; }
  .process-flow::before { display: none; }
  .process-step { padding-top: 4.5rem; }
  .process-step .process-num {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    width: 48px; height: 48px;
    font-size: 1.1rem;
    box-shadow: none;
  }
  .process-step-warn .process-num { box-shadow: none; }
}

/* ─── Process grid ─── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  background: #fff;
  padding: 1.6rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.process-card { position: relative; padding-top: 2.5rem; }
.process-num {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 1.8rem; font-weight: 800;
  color: rgba(179, 67, 31, 0.2);
  letter-spacing: -0.02em;
}
.process-duration {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.25rem 0.7rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  font-size: 0.78rem; font-weight: 600;
  border-radius: 999px;
}

/* ─── Pricing (tabs + panels) ─── */
.pricing-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 880px;
  margin: 2rem auto 2.5rem;
  padding: 0.6rem;
  background: #f1f5f9;
  border-radius: var(--radius-lg);
}
.pricing-tab {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem;
  padding: 1.1rem 0.9rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: calc(var(--radius-lg) - 0.3rem);
  cursor: pointer;
  font-family: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align: center;
}
.pricing-tab:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.06); }
.pricing-tab:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.pricing-tab .tab-label {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-muted);
}
.pricing-tab .tab-price {
  font-size: 1.35rem; font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.pricing-tab .tab-price small {
  display: block;
  font-size: 0.72rem; font-weight: 500;
  color: var(--color-muted);
  margin-top: 0.1rem;
}
.pricing-tab[aria-selected="true"] {
  border-color: var(--color-accent);
  box-shadow: 0 8px 22px rgba(179, 67, 31, 0.18);
}
.pricing-tab[aria-selected="true"] .tab-label { color: var(--color-accent); }
.pricing-tab-featured .tab-badge {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  padding: 0.22rem 0.75rem;
  background: var(--color-accent); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-panels {
  max-width: 640px;
  margin: 0 auto 3rem;
}
.pricing-panel {
  background: #fff;
  padding: 2rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  animation: panelFadeIn 0.22s ease;
}
.pricing-panel[hidden] { display: none; }
.pricing-panel-featured {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, #fff 0%, #fff9f6 100%);
  box-shadow: 0 12px 32px rgba(179, 67, 31, 0.12);
}
.pricing-panel h3 { margin: 0 0 0.4rem; color: var(--color-navy); font-size: 1.3rem; }
.panel-setup { font-size: 0.9rem; color: var(--color-muted); margin: 0 0 1.2rem; font-style: italic; }

.pricing-list { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; }
.pricing-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); color: var(--color-text); }
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li.pricing-excluded { color: #94a3b8; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .pricing-tabs { grid-template-columns: 1fr; gap: 0.45rem; }
  .pricing-tab { flex-direction: row; justify-content: space-between; padding: 0.85rem 1rem; }
  .pricing-tab .tab-price { font-size: 1.15rem; }
  .pricing-tab .tab-price small { display: inline; margin-left: 0.3rem; }
  .pricing-tab-featured { padding-top: 1.4rem; }
  .pricing-panel { padding: 1.5rem; }
}

.pricing-compare h3 {
  text-align: center; color: var(--color-navy); margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.option-card {
  background: #fff;
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.option-card h4 { color: var(--color-navy); margin: 0; }
.option-card p { font-size: 0.85rem; margin: 0; flex: 1; }
.option-price {
  font-size: 0.92rem; font-weight: 700; color: var(--color-accent);
  margin-top: auto;
}

/* Options supplémentaires — bloc après les pricing cards */
.options-block {
  max-width: 1080px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.options-group { }
.options-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.options-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  background: rgba(179, 67, 31, 0.1);
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.options-eyebrow-specific {
  color: var(--color-navy);
  background: rgba(15, 23, 42, 0.08);
}
.options-head h3 {
  font-size: 1.35rem;
  color: var(--color-navy);
  margin: 0 0 0.4rem;
}
.options-head p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.options-grid-half {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 720px;
  margin: 0 auto;
}
.option-card {
  background: #fff;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: all 0.15s ease;
}
.option-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.option-icon {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}
.option-card h4 {
  color: var(--color-navy);
  margin: 0;
  font-size: 1rem;
}
.option-card p {
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.option-card .option-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--color-border);
}
.option-card .option-price em {
  font-style: normal;
  font-weight: 500;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.options-group-specific .option-card {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.options-group-specific .option-card:hover {
  border-color: var(--color-navy);
}

/* ─── Demos ─── */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.demo-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.demo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.demo-icon { font-size: 1.8rem; }
.demo-card h3 { margin: 0; color: var(--color-navy); }
.demo-meta { font-size: 0.82rem; color: var(--color-muted); margin: 0; }
.demo-actions { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.demo-creds {
  font-size: 0.72rem;
  background: var(--color-light-bg);
  color: var(--color-muted);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  word-break: break-all;
  margin-top: auto;
}
.demos-note {
  max-width: 780px; margin: 2.5rem auto 0;
  padding: 1.2rem 1.5rem;
  background: #fff7ed;
  border-left: 3px solid #f59e0b;
  border-radius: var(--radius-sm);
  font-size: 0.88rem; color: #78350f;
}
.demos-note p { margin: 0; color: inherit; }

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1rem 1.5rem;
  max-width: 960px; margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0;
  margin-bottom: 0.8rem;
  transition: border-color 0.15s ease;
}
.faq-item[open] { border-color: var(--color-accent); }
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--color-navy);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* ─── Contact form ─── */
.contact-form {
  max-width: 780px; margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
@media (max-width: 700px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--color-navy); }
.field .req { color: var(--color-accent); }
.field input, .field select, .field textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -1px;
  border-color: transparent;
}
.field textarea { resize: vertical; min-height: 90px; }
.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
  font-style: italic;
}
.form-actions {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.form-note { font-size: 0.82rem; color: var(--color-muted); }
.contact-thanks {
  max-width: 780px; margin: 0 auto;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}
.contact-thanks h3 { color: #065f46; margin-bottom: 0.5rem; }
.contact-thanks p { color: #047857; margin: 0; }

/* ─── Footer ─── */
.site-footer {
  background: var(--color-navy);
  color: #cbd5e1;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about { font-size: 0.9rem; color: #94a3b8; line-height: 1.6; }
.site-footer h4 { color: #fff; margin-bottom: 0.8rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: 0.4rem 0; font-size: 0.9rem; }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem; color: #94a3b8;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* Smooth scroll */
html { scroll-behavior: smooth; scroll-padding-top: 70px; }

/* ═════════════════════════════════════════════════════════════════ */
/* Mobile-only header des panels pricing (accordion) — caché desktop */
.panel-mobile-header { display: none; }

/* ═════════════════════════════════════════════════════════════════ */
/* RESPONSIVE MOBILE — rework complet des sections < 640px             */
/* ═════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── Pillars (Ce qui est inclus) : accordion via <details> ─────── */
  .pillar { padding: 1.2rem 1.3rem; }
  .pillar-head { gap: 0.8rem; padding-bottom: 0; margin-bottom: 0; border-bottom: none; cursor: pointer; }
  .pillar[open] .pillar-head { padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
  .pillar-chevron { display: block; }
  .pillar[open] .pillar-chevron { transform: rotate(180deg); }
  .pillar-icon { width: 42px; height: 42px; }
  .pillar-icon svg { width: 22px; height: 22px; }
  .pillar-head h3 { font-size: 1.05rem; margin: 0; }
  .pillar-tagline { font-size: 0.82rem; margin-top: 0.2rem; display: block; }
  .pillar-label { font-size: 0.65rem; margin-bottom: 0.15rem; }
  .pillar:hover { transform: none; }

  /* ── Bonus icons : légèrement réduits ───────────────────────────── */
  .bonus-icon { width: 34px; height: 34px; }
  .bonus-icon svg { width: 18px; height: 18px; }
  .bonus-item h4 { font-size: 0.95rem; }
  .bonus-item p { font-size: 0.8rem; }
  .includes-bonus { gap: 0.8rem; padding-top: 1.5rem; }

  /* ── Comment ça marche : slider horizontal ──────────────────────── */
  .process-flow {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.9rem;
    padding: 0.5rem 1rem 1.5rem;
    margin-left: -1rem; margin-right: -1rem;
    scroll-padding-left: 1rem;
    padding-left: 0;
  }
  .process-flow::-webkit-scrollbar { height: 4px; }
  .process-flow::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }
  .process-step {
    flex: 0 0 85%;
    margin: 0;
    scroll-snap-align: center;
    padding: 3.5rem 1.25rem 1.25rem;
    min-height: 220px;
  }
  .process-step:first-child { margin-left: 1rem; }
  .process-step:last-child { margin-right: 1rem; }
  .process-step:hover { transform: none; }
  .process-step .process-num {
    top: 1rem; left: 1rem;
    width: 40px; height: 40px;
    font-size: 0.95rem;
  }
  .process-step .process-body h3 { font-size: 1rem; }
  .process-step .process-body p { font-size: 0.85rem; margin-bottom: 0.6rem; }

  /* ── Pricing : tabs cachés, panels en accordion ─────────────────── */
  .pricing-tabs { display: none; }
  .pricing-panels { max-width: 100%; margin: 0 auto 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .pricing-panel { padding: 0; border-radius: var(--radius-md); overflow: hidden; }
  .pricing-panel[hidden] { display: block; }              /* override: tous visibles */
  .pricing-panel .panel-body { display: none; padding: 0 1.2rem 1.2rem; }
  .pricing-panel[aria-expanded-panel="true"] .panel-body { display: block; }

  .panel-mobile-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 1.2rem;
    background: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    position: relative;
    color: var(--color-text);
  }
  .panel-mobile-header .pmh-name {
    font-size: 0.92rem; font-weight: 700;
    color: var(--color-navy);
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .panel-mobile-header .pmh-price {
    margin-left: auto;
    font-size: 1.05rem; font-weight: 800;
    color: var(--color-navy);
  }
  .panel-mobile-header .pmh-price small { font-size: 0.7rem; font-weight: 500; color: var(--color-muted); margin-left: 0.2rem; }
  .pmh-chevron { color: var(--color-muted); transition: transform 0.2s; flex-shrink: 0; }
  .pricing-panel[aria-expanded-panel="true"] .pmh-chevron { transform: rotate(180deg); }
  .pricing-panel-featured .panel-mobile-header { padding-top: 1.6rem; }
  .pmh-badge {
    position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
    padding: 0.15rem 0.6rem;
    background: var(--color-accent); color: #fff;
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    border-radius: 999px;
    white-space: nowrap;
  }
  .pricing-panel h3 { margin-top: 0; font-size: 1.1rem; }
  .panel-setup { font-size: 0.82rem; }

  /* ── Footer : plus compact ───────────────────────────────────────── */
  .site-footer { padding: 2rem 0 1.2rem; margin-top: 2.5rem; }
  .footer-grid { gap: 1.2rem; padding-bottom: 1.2rem; }
  .site-footer h4 { font-size: 0.75rem; margin-bottom: 0.5rem; }
  .site-footer ul li { font-size: 0.82rem; margin: 0.25rem 0; }
  .footer-about { font-size: 0.82rem; }
  .footer-bottom { padding-top: 1rem; font-size: 0.72rem; }
}
