/* ─────────────────────────────────────────────
   PUBLIC CSS  -  Fit 2 Start
   Pages publiques, landing page, SEO
   ───────────────────────────────────────────── */

:root {
  --ink:        #0A0C14;
  --ink2:       #12151F;
  --blue:       #2F52A0;
  --blue-light: #4068C8;
  --amber:      #F9B004;
  --amber2:     #FFCA40;
  --white:      #F4F5FA;
  --muted:      rgba(244,245,250,0.45);
  --border:     rgba(255,255,255,0.08);
}

*,*::before,*::after { box-sizing:border-box;margin:0;padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:'Plus Jakarta Sans',sans-serif;
  background:var(--ink);color:var(--white);
  overflow-x:hidden;line-height:1.65;
}

body::before {
  content:'';position:fixed;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events:none;z-index:1000;opacity:.5;
}

/* ─── NAVIGATION ─────────────────────────── */
.nav {
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(10,12,20,.82);
  backdrop-filter:blur(8px);
  transition:background .3s,backdrop-filter .3s,border-color .3s;
}
.nav-inner {
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 4rem;max-width:1280px;margin:0 auto;
}
.nav-scrolled {
  background:rgba(10,12,20,.97);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.logo-wrap { text-decoration:none;display:flex;flex-direction:column;gap:1px; }
.logo-name  { font-weight:800;font-size:1.35rem;color:var(--white);letter-spacing:-.02em; }
.logo-name .logo-2 { color: #F9B004; }
.logo-tagline { font-size:.62rem;color:#F4F5FA;font-style:normal; }
.nav-links { display:flex;gap:2rem; }
.nav-links a { color:var(--muted);text-decoration:none;font-size:.88rem;transition:color .2s; }
.nav-links a:hover,.nav-links a.active { color:var(--white); }
.nav-actions { display:flex;gap:.75rem;align-items:center; }
.btn-nav-ghost  { color:rgba(244,245,250,.6);text-decoration:none;font-size:.88rem;transition:color .2s; }
.btn-nav-ghost:hover { color:var(--white); }
.btn-nav-outline { color:var(--white);text-decoration:none;font-size:.85rem;padding:.45rem 1rem;border:1px solid var(--border);border-radius:7px;transition:all .2s; }
.btn-nav-outline:hover { border-color:rgba(255,255,255,.2); }
.btn-nav-cta { background:var(--amber);color:var(--ink);padding:.45rem 1.1rem;border-radius:7px;font-weight:700;font-size:.85rem;text-decoration:none;transition:all .2s; }
.btn-nav-cta:hover { background:var(--amber2);transform:translateY(-1px); }
.nav-burger { display:none;background:none;border:none;color:var(--muted);cursor:pointer;font-size:1.2rem;flex-direction:column;gap:4px;padding:.25rem; }
.nav-burger span { display:block;width:20px;height:2px;background:currentColor;border-radius:2px;transition:all .25s; }

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height:100vh;display:grid;place-items:center;
  padding:8rem 4rem 6rem;position:relative;overflow:hidden;
}
.blob { position:absolute;border-radius:50%;filter:blur(100px);pointer-events:none; }
.blob-1 { width:600px;height:600px;background:radial-gradient(circle,rgba(47,82,160,.35),transparent 70%);top:-10%;left:-10%;animation:float1 12s ease-in-out infinite; }
.blob-2 { width:400px;height:400px;background:radial-gradient(circle,rgba(249,176,4,.18),transparent 70%);bottom:10%;right:5%;animation:float2 10s ease-in-out infinite; }
.blob-3 { width:300px;height:300px;background:radial-gradient(circle,rgba(64,104,200,.22),transparent 70%);top:50%;left:50%;transform:translate(-50%,-50%);animation:float3 15s ease-in-out infinite; }
@keyframes float1{0%,100%{transform:translate(0,0)}50%{transform:translate(40px,-30px)}}
@keyframes float2{0%,100%{transform:translate(0,0)}50%{transform:translate(-30px,20px)}}
@keyframes float3{0%,100%{transform:translate(-50%,-50%)}50%{transform:translate(-45%,-55%)}}
.hero-grid { position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);background-size:80px 80px;mask-image:radial-gradient(ellipse 80% 60% at 50% 40%,black 40%,transparent 100%); }
.hero-inner { position:relative;text-align:center;max-width:900px;margin:0 auto; }
.hero-badge { display:inline-flex;align-items:center;gap:.5rem;background:rgba(249,176,4,.08);border:1px solid rgba(249,176,4,.25);color:var(--amber);padding:.4rem 1rem;border-radius:100px;font-size:.78rem;font-weight:500;margin-bottom:2rem;animation:fadeUp .6s both; }
.hero-badge::before { content:'';width:6px;height:6px;background:var(--amber);border-radius:50%;animation:pulse 2s ease-in-out infinite; }
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)}}
h1 { font-size:clamp(2.8rem,7vw,5.2rem);font-weight:800;line-height:1.1;letter-spacing:-.02em;margin-bottom:1.5rem;animation:fadeUp .6s .1s both; }
h1 em { font-style:normal;background:linear-gradient(135deg,var(--amber),var(--amber2));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.hero-sub { font-size:clamp(1rem,2.5vw,1.15rem);color:var(--muted);max-width:560px;margin:0 auto 2.5rem;font-weight:400;line-height:1.75;animation:fadeUp .6s .2s both; }
.hero-ctas { display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:4rem;animation:fadeUp .6s .3s both; }
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.stats-bar { display:flex;border:1px solid var(--border);border-radius:14px;overflow:hidden;background:rgba(255,255,255,.02); }
.stat { padding:1.1rem 2rem;border-right:1px solid var(--border);text-align:center;flex:1; }
.stat:last-child { border-right:none; }
.stat-num { display:block;font-family:'Plus Jakarta Sans',sans-serif;font-size:1.7rem;font-weight:800;color:var(--amber);letter-spacing:-.01em; }
.stat-label { font-size:.72rem;color:var(--muted); }

/* ─── SECTIONS ───────────────────────────── */
.section { padding:7rem 4rem;max-width:1280px;margin:0 auto; }
.section-label { font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--amber);display:block;margin-bottom:.75rem; }
h2 { font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;letter-spacing:-.02em;line-height:1.15;margin-bottom:1rem; }
.lead { font-size:1.05rem;color:var(--muted);line-height:1.75;font-weight:400;max-width:560px; }

/* ─── FEATURES ───────────────────────────── */
.features-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;background:var(--border);border:1px solid var(--border);border-radius:16px;overflow:hidden;margin-top:3rem; }
.feature-card { background:var(--ink2);padding:2.25rem;transition:background .3s; }
.feature-card:hover { background:rgba(47,82,160,.06); }
.feature-icon { font-size:1.6rem;margin-bottom:1rem;display:block; }
.feature-card h3 { font-size:1rem;font-weight:700;margin-bottom:.5rem;letter-spacing:-.01em; }
.feature-card p { font-size:.875rem;color:var(--muted);line-height:1.7; }
.feature-tag { display:inline-block;margin-top:.9rem;background:rgba(249,176,4,.08);border:1px solid rgba(249,176,4,.2);color:var(--amber);font-size:.68rem;font-weight:600;padding:.2rem .6rem;border-radius:4px;letter-spacing:.04em;text-transform:uppercase; }

/* ─── INTERLUDE CITATION ─────────────────── */
.quote-section { text-align:center;padding:7rem 4rem;background:linear-gradient(180deg,var(--ink) 0%,rgba(47,82,160,.06) 50%,var(--ink) 100%); }
.quote-text { font-size:clamp(1.4rem,3.5vw,2.3rem);font-weight:800;letter-spacing:-.015em;max-width:720px;margin:0 auto 1.5rem;line-height:1.3; }
.quote-text em { font-style:normal;color:var(--amber); }
.quote-sub { color:var(--muted);font-size:.88rem; }

/* ─── CTA SECTION ────────────────────────── */
.cta-section { padding:7rem 4rem;text-align:center;background:linear-gradient(180deg,var(--ink) 0%,rgba(47,82,160,.08) 50%,var(--ink) 100%); }
.cta-inner { max-width:640px;margin:0 auto; }
.cta-inner h2 { margin-bottom:1rem; }
.cta-inner p { color:var(--muted);margin-bottom:2rem;line-height:1.75; }

/* ─── FAQ ────────────────────────────────── */
/* FAQ avec balises <details> (home, SEO pages) */
.faq-section { background:var(--ink2);border-top:1px solid var(--border); }
.faq-list { display:flex;flex-direction:column;gap:.5rem;margin-top:2.5rem; }
.faq-list .faq-item { background:rgba(255,255,255,.03);border:1px solid var(--border);border-radius:10px;transition:border-color .2s; }
.faq-list .faq-item:hover { border-color:rgba(64,104,200,.3); }
.faq-list .faq-item summary { padding:1.1rem 1.25rem;cursor:pointer;font-weight:600;font-size:.9rem;list-style:none;display:flex;justify-content:space-between;align-items:center; }
.faq-list .faq-item summary::after { content:'＋';color:var(--muted);font-size:1rem;transition:transform .3s; }
.faq-list .faq-item[open] summary::after { transform:rotate(45deg); }
.faq-list .faq-item p { padding:.25rem 1.25rem 1.1rem;font-size:.875rem;color:var(--muted);line-height:1.7; }

/* ─── FOOTER ─────────────────────────────── */
.footer { background:var(--ink2);border-top:1px solid var(--border); }
.footer-inner { max-width:1280px;margin:0 auto;padding:3.5rem 4rem 2.5rem;display:flex;gap:4rem;flex-wrap:wrap; }
.footer-brand { flex:0 0 240px; }
.footer-logo  { font-weight:800;font-size:1.05rem;margin-bottom:.25rem; }
.footer-tagline { font-size:.72rem;color:#F4F5FA;font-style:normal; }
.footer-links { display:flex;gap:4rem;flex:1;flex-wrap:wrap; }
.footer-col { display:flex;flex-direction:column;gap:.5rem; }
.footer-col-title { font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:rgba(244,245,250,.3);margin-bottom:.25rem; }
.footer-col a { font-size:.82rem;color:var(--muted);text-decoration:none;transition:color .2s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { max-width:1280px;margin:0 auto;padding:.75rem 4rem 1.25rem;border-top:1px solid var(--border);font-size:.72rem;color:rgba(244,245,250,.2); }

/* ─── BOUTONS ────────────────────────────── */
.btn-primary { background:var(--amber);color:var(--ink);padding:.85rem 1.9rem;border-radius:10px;font-weight:700;font-size:.95rem;text-decoration:none;display:inline-flex;align-items:center;gap:.4rem;transition:all .25s;box-shadow:0 0 40px rgba(249,176,4,.2); }
.btn-primary:hover { background:var(--amber2);transform:translateY(-2px);box-shadow:0 8px 40px rgba(249,176,4,.35); }
.btn-secondary { background:transparent;color:var(--white);padding:.85rem 1.9rem;border-radius:10px;font-weight:500;font-size:.95rem;text-decoration:none;display:inline-flex;align-items:center;gap:.4rem;border:1px solid var(--border);transition:all .25s; }
.btn-secondary:hover { border-color:rgba(255,255,255,.25);background:rgba(255,255,255,.04);transform:translateY(-2px); }

/* ─── FLASH ──────────────────────────────── */
.flash-container { position:fixed;top:5rem;right:2rem;z-index:200;display:flex;flex-direction:column;gap:.5rem; }
.flash { padding:.75rem 1.25rem;border-radius:8px;font-size:.85rem;max-width:340px;box-shadow:0 8px 24px rgba(0,0,0,.3); }
.flash-success { background:#12151F;border:1px solid rgba(74,222,128,.3);color:#4ADE80; }
.flash-error   { background:#12151F;border:1px solid rgba(248,113,113,.3);color:#F87171; }
.flash-info    { background:#12151F;border:1px solid rgba(64,104,200,.3);color:#82A4F8; }

/* ─── REVEAL ─────────────────────────────── */
.reveal { opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1;transform:translateY(0); }

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1024px) {
  .nav-inner { padding:1rem 2rem; }
  .nav-links,.nav-actions .btn-nav-ghost { display:none; }
  .nav-burger { display:flex; }
  .nav-links.open,.nav-actions.open { display:flex;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:rgba(10,12,20,.97);padding:1.5rem 2rem;gap:.75rem;border-bottom:1px solid var(--border); }
  .section,.cta-section,.quote-section,.faq-section { padding:5rem 2rem; }
  .features-grid { grid-template-columns:1fr 1fr; }
  .footer-inner { padding:2.5rem 2rem;gap:2rem; }
  .hero { padding:7rem 2rem 4rem; }
}
@media(max-width:640px) {
  .features-grid { grid-template-columns:1fr; }
  .stats-bar { flex-wrap:wrap; }
  .stat { min-width:140px; }
  .footer-links { gap:2rem; }
}

/* ─── PAGES LÉGALES ─────────────────────────────── */
.legal-page { max-width:800px;margin:0 auto;padding:3rem 1.5rem; }
.lp-header  { margin-bottom:2.5rem; }
.lp-header h1 { font-size:1.8rem;font-weight:800;letter-spacing:-.02em;margin-bottom:.6rem; }
.lp-header p  { color:rgba(244,245,250,.45);font-size:.9rem;line-height:1.65; }
.lp-sections  { display:flex;flex-direction:column;gap:2rem; }
.lp-section   { padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,.07); }
.lp-section:last-of-type { border-bottom:none; }
.lp-section h2 { font-size:1rem;font-weight:700;margin-bottom:.9rem; }
.lp-section p  { font-size:.88rem;line-height:1.75;color:rgba(244,245,250,.6);margin-bottom:.75rem; }
.lp-section a  { color:#4068C8;text-decoration:none; }
.lp-section a:hover { text-decoration:underline; }
.lp-table { width:100%;border-collapse:collapse;font-size:.82rem;margin:.5rem 0; }
.lp-table th { text-align:left;padding:.45rem .6rem;color:rgba(244,245,250,.3);font-weight:600;font-size:.68rem;text-transform:uppercase;letter-spacing:.05em;border-bottom:1px solid rgba(255,255,255,.08); }
.lp-table td { padding:.45rem .6rem;color:rgba(244,245,250,.6);border-top:1px solid rgba(255,255,255,.04); }
.lp-update { font-size:.72rem;color:rgba(244,245,250,.2);font-family:'DM Mono',monospace; }
.lp-nav    { display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.07); }
.lp-nav a  { font-size:.85rem;color:rgba(244,245,250,.4);text-decoration:none;transition:color .2s; }
.lp-nav a:hover { color:#F4F5FA; }

/* ─── PAGE CONTACT ─────────────────────────────── */
.contact-layout { max-width:640px;margin:0 auto;padding:3rem 1.5rem; }
.contact-layout h1 { font-size:1.5rem;font-weight:800;margin-bottom:.5rem; }
.contact-layout p  { color:rgba(244,245,250,.45);font-size:.88rem;margin-bottom:2rem; }

/* ─── ANIMATIONS REVEAL (Intersection Observer) ─────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal            { transform: translateY(24px); }
.reveal-left       { transform: translateX(-32px); }
.reveal-right      { transform: translateX(32px); }
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed { opacity: 1; transform: translate(0); }

/* ─── PAGES ABOUT / JOURNAL / FINANCING ─────────────── */
.about-text,.fin-steps,.pp-features { opacity:1;transform:none;transition:all .6s ease; }
.in-view .about-text,.in-view .fin-steps,.in-view .pp-features { opacity:1;transform:none; }

/* ─── PRICING TABLE AMÉLIORÉE ─────────────────────────── */
.pricing-card { position:relative;overflow:hidden; }
.pricing-card::before {
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(47,82,160,.06),transparent);
  opacity:0;transition:opacity .3s;
}
.pricing-card:hover::before { opacity:1; }
.pricing-card.featured-card {
  border-color:rgba(249,176,4,.4);
  box-shadow:0 0 40px rgba(249,176,4,.08);
}
.plan-badge-tag {
  position:absolute;top:0;right:0;
  background:#F9B004;color:#0A0C14;
  font-size:.62rem;font-weight:800;
  padding:.2rem .6rem;border-radius:0 12px 0 8px;
  text-transform:uppercase;letter-spacing:.05em;
}

/* ─── FORMULAIRE CONTACT AMÉLIRÉ ──────────────────────── */
.contact-form .form-group { margin-bottom:1.25rem; }
.contact-form label { display:block;font-size:.85rem;font-weight:600;margin-bottom:.4rem; }
.contact-form input,
.contact-form textarea {
  width:100%;background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);border-radius:10px;
  padding:.75rem 1rem;color:#F4F5FA;
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.9rem;
  transition:border-color .2s,background .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline:none;border-color:#4068C8;background:rgba(64,104,200,.06); }
.contact-form textarea { resize:vertical;min-height:120px;line-height:1.65; }
.contact-form .btn-submit-contact {
  width:100%;background:#F9B004;color:#0A0C14;
  border:none;border-radius:10px;padding:.85rem;
  font-weight:800;font-size:.95rem;cursor:pointer;
  font-family:'Plus Jakarta Sans',sans-serif;
  transition:all .2s;
}
.contact-form .btn-submit-contact:hover { background:#FFCA40;transform:translateY(-1px); }

/* ─── STATS BAR LANDING ──────────────────────────────── */
.stats-bar {
  display:flex;justify-content:center;gap:2rem;
  padding:1.5rem 0 0;flex-wrap:wrap;
}
.stat { text-align:center; }
.stat-num {
  display:block;font-size:1.5rem;font-weight:800;
  letter-spacing:-.02em;color:#F9B004;line-height:1.2;
}
.stat-label { font-size:.75rem;color:rgba(244,245,250,.4); }

/* ─── FAQ ACCORDÉON (boutons JS) ─────────────────────── */
/* Utilisé sur /tarifs, /secteur/*, /programme/* */
.faq-item {
  border-bottom:1px solid rgba(255,255,255,.07);
  padding:.75rem 0;
}
.faq-q {
  width:100%;background:none;border:none;color:#F4F5FA;
  text-align:left;font-family:'Plus Jakarta Sans',sans-serif;
  font-size:.95rem;font-weight:600;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  padding:.25rem 0;
  appearance:none;-webkit-appearance:none;
}
.faq-q:focus { outline:none; }
.faq-icon { font-size:1.1rem;line-height:1;flex-shrink:0;margin-left:.5rem;transition:transform .3s; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a {
  max-height:0;overflow:hidden;
  transition:max-height .4s ease;
  font-size:.88rem;color:rgba(244,245,250,.6);line-height:1.75;
}
.faq-item.open .faq-a { max-height:600px; }
.faq-a p { padding:.5rem 0 .75rem; margin:0; }

/* FAQ details natif sans conteneur .faq-list (pages SEO) */
details.faq-item {
  border-bottom:1px solid rgba(255,255,255,.07);
  padding:.75rem 0;
  background:transparent;
  border-radius:0;
}
details.faq-item summary {
  cursor:pointer;font-weight:600;font-size:.92rem;
  color:#F4F5FA;list-style:none;padding:.25rem 0;
  display:flex;justify-content:space-between;align-items:center;
}
details.faq-item summary::-webkit-details-marker { display:none; }
details.faq-item summary::after { content:'+';font-size:1.1rem;flex-shrink:0;margin-left:.5rem;transition:transform .3s; }
details.faq-item[open] summary::after { transform:rotate(45deg); content:'×'; }
details.faq-item p { font-size:.87rem;color:rgba(244,245,250,.6);line-height:1.75;padding:.5rem 0 .25rem;margin:0; }

/* ─── TÉMOIGNAGES ────────────────────────────────────── */
.testimonials-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1rem; }
.testi-card {
  background:#12151F;border:1px solid rgba(255,255,255,.08);
  border-radius:14px;padding:1.5rem;
}
.testi-stars { color:#F9B004;font-size:.85rem;margin-bottom:.75rem; }
.testi-text { font-size:.88rem;color:rgba(244,245,250,.7);line-height:1.7;margin-bottom:1rem; }
.testi-author { display:flex;align-items:center;gap:.65rem; }
.testi-avatar {
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(135deg,#2F52A0,#4068C8);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.78rem;flex-shrink:0;
}
.testi-name { font-size:.83rem;font-weight:700; }
.testi-role { font-size:.72rem;color:rgba(244,245,250,.35); }

/* ─── RESPONSIVE GLOBAL ──────────────────────────────── */
@media(max-width:768px) {
  .testimonials-grid { grid-template-columns:1fr; }
  .stats-bar { gap:1.25rem; }
}

/* ─── PRICING PAGE ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: #12151F;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.pricing-card.featured {
  border-color: rgba(249,176,4,.4);
  background: linear-gradient(160deg, rgba(249,176,4,.06), rgba(12,14,20,1) 60%);
}
.plan-name  { font-size: 1.1rem; font-weight: 800; }
.plan-desc  { font-size: .82rem; color: rgba(244,245,250,.45); }
.plan-price { display: flex; align-items: baseline; gap: .3rem; flex-wrap: wrap; }
.plan-price-main { font-size: 2rem; font-weight: 800; letter-spacing: -.025em; }
.plan-price-period { font-size: .78rem; color: rgba(244,245,250,.4); }
.plan-features { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.plan-features li { font-size: .83rem; color: rgba(244,245,250,.65); padding-left: 1.2rem; position: relative; line-height: 1.4; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: #4ADE80; font-weight: 700; }
.plan-btn { display: block; text-align: center; padding: .8rem; border-radius: 9px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: all .2s; margin-top: .25rem; }
.plan-btn.solid { background: #F9B004; color: #0A0C14; }
.plan-btn.solid:hover { background: #FFCA40; }
.plan-btn.outline { border: 1px solid rgba(255,255,255,.15); color: rgba(244,245,250,.7); }
.plan-btn.outline:hover { border-color: rgba(255,255,255,.3); color: #F4F5FA; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   ONE-PAGE CRM  -  /crm-startup  -  Sprint 11
   ═══════════════════════════════════════════════════════════════ */

.seo-hero-crm {
  background: linear-gradient(135deg, #0A0C14 0%, #0D1229 60%, #0A0C14 100%);
  padding: 6rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* Demo preview */
.crm-demo-preview {
  background: #0D1220;
  border: 1px solid rgba(47,82,160,.25);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cdp-header {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(244,245,250,.4);
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cdp-dot { width: 8px; height: 8px; border-radius: 50%; }
.cdp-stage { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .75rem; }
.cdp-stage-top { display: flex; align-items: center; gap: .5rem; }
.cdp-stage-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cdp-stage-label { font-size: .78rem; color: rgba(244,245,250,.7); flex: 1; }
.cdp-stage-count { font-size: .75rem; font-weight: 700; font-family: 'DM Mono', monospace; }
.cdp-bar-track { height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; }
.cdp-bar-fill { height: 100%; border-radius: 3px; }
.cdp-amount { font-size: .7rem; color: rgba(244,245,250,.35); font-family: 'DM Mono', monospace; }

/* Problems grid */
.crm-problems-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
.crm-problem-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 1.5rem;
}
.crm-pc-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }

/* Features grid */
.crm-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: 2rem;
}
.crm-feature-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 1.25rem;
  transition: border-color .2s, background .2s;
}
.crm-feature-card:hover {
  border-color: rgba(47,82,160,.35);
  background: rgba(47,82,160,.04);
}
.cfc-icon { font-size: 1.5rem; margin-bottom: .75rem; display: block; }
.cfc-title { font-size: .88rem; font-weight: 700; margin-bottom: .4rem; }
.cfc-desc { font-size: .78rem; line-height: 1.65; color: rgba(244,245,250,.5); }

/* Workflow */
.crm-workflow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.crm-step {
  text-align: center; padding: 1.25rem .75rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; position: relative;
}
.crm-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(47,82,160,.2); color: #4068C8;
  font-size: .8rem; font-weight: 800;
  margin: 0 auto .5rem; font-family: 'DM Mono', monospace;
}
.crm-step-icon { font-size: 1.4rem; display: block; margin-bottom: .5rem; }
.crm-step h3 { font-size: .82rem; font-weight: 700; margin-bottom: .4rem; }
.crm-step p { font-size: .73rem; color: rgba(244,245,250,.5); line-height: 1.6; }

/* SIRET Demo */
.crm-siret-demo {
  background: #0D1220;
  border: 1px solid rgba(47,82,160,.3);
  border-radius: 14px; padding: 1.25rem;
}
.csd-header {
  font-size: .82rem; font-weight: 700; color: rgba(244,245,250,.7);
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.csd-field {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .78rem;
}
.csd-label { width: 120px; color: rgba(244,245,250,.35); flex-shrink: 0; font-size: .72rem; }
.csd-val { color: rgba(244,245,250,.85); font-weight: 500; }
.csd-enriched { font-size: .7rem; color: #4ADE80; margin-top: .75rem; padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.04); }

/* News demo */
.crm-news-demo {
  background: #0D1220;
  border: 1px solid rgba(47,82,160,.25);
  border-radius: 14px; padding: 1.25rem;
  max-width: 600px; margin: 2rem auto 0;
}
.cnd-contact { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.cnd-avatar { width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(135deg, #2F52A0, #4068C8); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; flex-shrink: 0; }
.cnd-name { font-weight: 700; font-size: .88rem; }
.cnd-type { font-size: .72rem; color: rgba(244,245,250,.4); }
.cnd-news-badge { margin-left: auto; font-size: .68rem; background: rgba(249,176,4,.15); color: #F9B004; padding: .2rem .55rem; border-radius: 4px; font-weight: 700; }
.cnd-snippet { font-size: .82rem; line-height: 1.65; color: rgba(244,245,250,.7); margin-bottom: .75rem; padding: .75rem; background: rgba(255,255,255,.03); border-radius: 8px; }
.cnd-news-icon { margin-right: .4rem; }
.cnd-source { color: #4068C8; text-decoration: none; font-weight: 600; }
.cnd-date { font-size: .72rem; color: rgba(244,245,250,.3); }

/* Two-col layout for section seo */
.seo-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.seo-col-text, .seo-col-visual { }
.seo-check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .4rem; }
.seo-check-list li { font-size: .85rem; color: rgba(244,245,250,.7); line-height: 1.6; }

/* Responsive one-page CRM */
@media (max-width: 1100px) {
  .seo-hero-crm { grid-template-columns: 1fr; }
  .crm-demo-preview { max-width: 480px; }
  .crm-features-grid { grid-template-columns: 1fr 1fr; }
  .crm-workflow { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .seo-hero-crm { padding: 3rem 1.25rem 2rem; }
  .crm-problems-grid { grid-template-columns: 1fr; }
  .crm-features-grid { grid-template-columns: 1fr; }
  .crm-workflow { grid-template-columns: 1fr 1fr; }
  .seo-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .crm-workflow { grid-template-columns: 1fr; }
}

/* ═══ SECTION SOLITUDE  -  HOME PAGE ══════════════════════════════════════ */
.sol-home-section {
  background: linear-gradient(160deg, #0A0C14 0%, #0D1229 60%, #0A0C14 100%);
  padding: 5rem 2rem;
}
.sol-home-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 480px; gap: 5rem; align-items: center;
}
.sol-home-left .section-label { margin-bottom: 1rem; display: block; }
.sol-home-left h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; line-height: 1.2; }
.sol-home-left p { font-size: .9rem; line-height: 1.75; color: rgba(244,245,250,.7); margin-bottom: .75rem; }
.sol-home-stats { display: flex; gap: 1.25rem; margin: 1.5rem 0; flex-wrap: wrap; }
.sol-home-stat { display: flex; flex-direction: column; gap: .15rem; }
.sol-home-stat span:first-child { font-size: 1.6rem; font-weight: 900; color: #F9B004; letter-spacing: -.02em; }
.sol-home-stat { font-size: .72rem; color: rgba(244,245,250,.5); line-height: 1.4; }
.sol-home-cta { margin-top: .5rem; display: inline-flex; align-items: center; font-size: .88rem; }

/* Aria demo card */
.sol-home-aria-card {
  background: #0D1220; border: 1px solid rgba(47,82,160,.3);
  border-radius: 16px; padding: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.sol-aria-header { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(244,245,250,.4); padding-bottom: .875rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 1rem; }
.sol-aria-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; flex-shrink: 0; animation: pulse 2s infinite; }
.sol-aria-name { font-weight: 600; color: rgba(244,245,250,.7); }
.sol-aria-msg { border-radius: 10px; padding: .75rem 1rem; font-size: .82rem; line-height: 1.7; margin-bottom: .6rem; }
.sol-aria-user { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); color: rgba(244,245,250,.75); font-style: italic; }
.sol-aria-ai { background: rgba(47,82,160,.12); border: 1px solid rgba(47,82,160,.2); color: rgba(244,245,250,.8); }
.sol-aria-ai strong { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: #4068C8; margin-bottom: .3rem; }
.sol-aria-input { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: .6rem .875rem; font-size: .8rem; color: rgba(244,245,250,.3); margin-top: .75rem; }
.sol-aria-send { background: #2F52A0; color: #fff; border-radius: 6px; padding: .25rem .5rem; font-size: .72rem; cursor: pointer; }

@media (max-width: 960px) { .sol-home-inner { grid-template-columns: 1fr; gap: 2.5rem; } .sol-home-right { order: -1; } }
@media (max-width: 600px) { .sol-home-section { padding: 3rem 1.25rem; } .sol-home-stats { gap: 1rem; } }

/* ═══════════════════════════════════════════════════════════════════════════
   SPRINT 16  -  Enrichissement pages investisseurs.php et juridique.php
   + Classes communes nouvelles one-pages SEO
   ═══════════════════════════════════════════════════════════════════════════ */

/* Grille profils investisseurs */
.inv-profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: 1.4rem 0;
}
.inv-profile-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1rem;
}
.ipc-emoji { font-size: 1.6rem; margin-bottom: .4rem; }
.ipc-type  { font-size: .92rem; font-weight: 700; margin-bottom: .6rem;
             padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.ipc-row   { display: flex; flex-direction: column; padding: .25rem 0;
             border-top: 1px solid rgba(255,255,255,.04); font-size: .78rem; }
.ipc-row span   { color: rgba(244,245,250,.35); font-size: .68rem;
                  text-transform: uppercase; letter-spacing: .05em; }
.ipc-row strong { color: rgba(244,245,250,.85); margin-top: 1px; }

/* Badge sur les cartes juridiques */
.lgc-badge {
  font-size: .75rem;
  float: right;
  margin-top: 1px;
}
/* Grille juridique étendue (5 lignes au lieu de 4) */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.lg-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1rem;
}
.lgc-form {
  font-size: 1rem; font-weight: 800;
  margin-bottom: .75rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lgc-row {
  display: flex; flex-direction: column;
  padding: .3rem 0; border-top: 1px solid rgba(255,255,255,.04);
  font-size: .78rem;
}
.lgc-row span   { color: rgba(244,245,250,.35); font-size: .68rem;
                  text-transform: uppercase; letter-spacing: .05em; }
.lgc-row strong { color: rgba(244,245,250,.85); margin-top: 1px; }

/* CTA block dans les SEO pages */
.seo-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.seo-cta-sub {
  font-size: .8rem;
  color: rgba(244,245,250,.35);
  margin-top: .8rem;
  text-align: center;
}
.seo-section-cta {
  text-align: center;
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 3.5rem;
}

/* Tableau seo-table (utilisé dans data-room.php) */
.seo-table-wrap { overflow-x: auto; margin: 1.2rem 0 1.5rem; }
.seo-table {
  width: 100%; border-collapse: collapse; font-size: .88rem;
}
.seo-table th {
  text-align: left; font-weight: 600; padding: .6rem .9rem;
  background: rgba(108,99,255,.08);
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.seo-table td {
  padding: .55rem .9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
.seo-table tr:last-child td { border-bottom: none; }
.seo-table tr:hover td { background: rgba(255,255,255,.02); }

/* Étapes numérotées communes (levée-de-fonds, juridique…) */
.seo-steps-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.seo-steps-list li {
  counter-increment: step;
  padding: 1rem 1.2rem 1rem 3.2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  font-size: .9rem;
  color: rgba(244,245,250,.75);
  line-height: 1.65;
  position: relative;
}
.seo-steps-list li::before {
  content: counter(step);
  position: absolute;
  left: .9rem;
  top: 1rem;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #2F52A0, #4ADE80);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #fff;
}
.seo-steps-list li strong { color: rgba(244,245,250,.95); }

/* Boîte highlight (fond légèrement coloré) */
.seo-highlight-box {
  background: rgba(108,99,255,.07);
  border: 1px solid rgba(108,99,255,.2);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  margin: 1.4rem 0;
}
.seo-highlight-box h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .8rem;
  color: rgba(244,245,250,.9);
}
.seo-highlight-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.seo-highlight-box li {
  font-size: .85rem;
  color: rgba(244,245,250,.65);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}
.seo-highlight-box li::before {
  content: '·';
  position: absolute; left: 0;
  color: #6C63FF; font-weight: 900; font-size: 1.1rem; top: -.05rem;
}

/* pitch-checks (partagé entre plusieurs pages SEO) */
.pitch-checks {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: .5rem;
}
.pc-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}
.pci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.pci-title { display: block; font-size: .92rem; font-weight: 700; margin-bottom: .25rem; }
.pci-desc  { font-size: .82rem; color: rgba(244,245,250,.55); line-height: 1.65; margin: 0; }

/* Responsive Sprint 16 */
@media (max-width: 860px) {
  .inv-profiles { grid-template-columns: repeat(2, 1fr); }
  .legal-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .inv-profiles { grid-template-columns: 1fr; }
  .legal-grid   { grid-template-columns: 1fr; }
}

/* ─── FALLBACK REVEAL  -  Sprint 24 correctif ──────────────────────────────
   Si le JS met trop de temps à charger ou échoue, les sections reveal
   restent visibles au bout de 600ms via l'animation CSS directe.
   Le JS ajoutera .visible/.revealed normalement si tout se passe bien. */

.reveal,
.reveal-left,
.reveal-right {
  animation: revealFallback 0s 0.6s forwards;
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

/* Une fois que le JS a pris la main, on désactive le fallback */
.reveal.visible,
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  animation: none;
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STYLES COMMUNS DES ONE-PAGES SEO  -  Sprint 24 correctif
   Centralise ici les classes partagées par toutes les pages /seo/*.php
   au lieu de les dupliquer en <style> inline dans chaque vue.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero SEO de base ─────────────────────────────────────────────────── */
.seo-hero {
  background: linear-gradient(135deg, rgba(47,82,160,.15) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 4rem 2rem 3rem;
}
.seo-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.seo-hero h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.seo-lead {
  font-size: 1.05rem;
  color: rgba(244,245,250,.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 680px;
}
.seo-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Boutons grands formats ───────────────────────────────────────────── */
.btn-primary-lg {
  display: inline-block;
  background: #F9B004;
  color: #0A0C14;
  padding: .85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
}
.btn-primary-lg:hover {
  background: #FFCA40;
  transform: translateY(-2px);
}
.btn-outline-lg {
  display: inline-block;
  background: transparent;
  color: rgba(244,245,250,.8);
  padding: .85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
}
.btn-outline-lg:hover {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

/* ─── Sections SEO ─────────────────────────────────────────────────────── */
.seo-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.seo-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.seo-section p {
  font-size: .95rem;
  color: rgba(244,245,250,.65);
  line-height: 1.8;
  margin-bottom: .85rem;
}
.seo-section-lead {
  font-size: 1rem;
  color: rgba(244,245,250,.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.seo-inner-800 {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.seo-inner-1100 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Breadcrumb ───────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(244,245,250,.4);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(244,245,250,.5);
  text-decoration: none;
}
.breadcrumb a:hover { color: rgba(244,245,250,.85); }

/* ─── CTA de bas de page ───────────────────────────────────────────────── */
.seo-cta {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.seo-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .6rem;
}
.seo-cta p {
  color: rgba(244,245,250,.45);
  margin-bottom: 1.5rem;
}
.seo-cta-sub {
  font-size: .8rem;
  color: rgba(244,245,250,.3);
  margin-top: 1rem;
}

/* ─── FAQ section ──────────────────────────────────────────────────────── */
.seo-faq { background: rgba(10,12,24,.4); }

/* ─── Tips / conseils ──────────────────────────────────────────────────── */
.narrative-tips {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.tip {
  font-size: .82rem;
  padding: .65rem 1rem;
  border-radius: 8px;
  border-left: 3px solid;
  line-height: 1.6;
}
.tip-advice {
  background: rgba(64,104,200,.08);
  border-color: var(--blue-light, #6898F8);
  color: rgba(244,245,250,.8);
}
.tip-warning {
  background: rgba(249,176,4,.08);
  border-color: var(--amber, #F9B004);
  color: rgba(244,245,250,.8);
}
.tip-encouragement {
  background: rgba(74,222,128,.08);
  border-color: var(--success, #4ADE80);
  color: rgba(244,245,250,.8);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .seo-hero { padding: 2.5rem 1rem 2rem; }
  .seo-hero-inner, .seo-section, .seo-cta { padding: 0 1rem; }
  .seo-section { margin: 2rem auto; }
  .seo-hero h1 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .seo-hero-ctas, .seo-cta-btns { flex-direction: column; align-items: flex-start; }
  .btn-primary-lg, .btn-outline-lg { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .seo-lead { font-size: .95rem; }
  .seo-section h2 { font-size: 1.2rem; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   STYLES PAGES PUBLIQUES - Centralisés depuis les <style> inline Sprint 24
   ═══════════════════════════════════════════════════════════════════════════ */
/* ═══════════ FEATURES ═══════════ */
.features-hero{padding:8rem 4rem 4rem;text-align:center;background:linear-gradient(180deg,rgba(47,82,160,.06),transparent);}
.features-hero-inner{max-width:640px;margin:0 auto;}
.features-hero h1{font-size:clamp(2rem,5vw,3rem);font-weight:800;letter-spacing:-.02em;margin:.75rem 0 1rem;}
.features-hero p{color:rgba(244,245,250,.5);font-size:1.05rem;}
.features-list{max-width:1100px;margin:0 auto;padding:4rem;}
.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;padding:3rem 0;border-bottom:1px solid rgba(255,255,255,.06);}
.feature-row:last-child{border:none;}
.feature-row-reverse .feature-visual{order:2;}
.feature-visual{display:flex;align-items:center;justify-content:center;}
.feature-icon-big{font-size:6rem;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);border-radius:24px;width:160px;height:160px;display:flex;align-items:center;justify-content:center;}
.feature-tag-pill{display:inline-block;background:rgba(249,176,4,.1);border:1px solid rgba(249,176,4,.25);color:#F9B004;font-size:.72rem;font-weight:600;padding:.25rem .75rem;border-radius:20px;margin-bottom:.75rem;}
.feature-text h2{font-size:1.5rem;font-weight:800;letter-spacing:-.02em;margin-bottom:.75rem;}
.feature-text p{color:rgba(244,245,250,.5);line-height:1.75;margin-bottom:1.25rem;}
.btn-amber{background:#F9B004;color:#0A0C14;padding:.7rem 1.5rem;border-radius:8px;font-weight:700;font-size:.9rem;text-decoration:none;display:inline-block;transition:all .2s;}
.btn-amber:hover{background:#FFCA40;transform:translateY(-1px);}
.btn-lg{font-size:1rem;padding:.9rem 2rem;}
.features-cta{text-align:center;padding:6rem 4rem;background:linear-gradient(180deg,transparent,rgba(47,82,160,.08));}
.features-cta h2{font-size:2rem;font-weight:800;letter-spacing:-.02em;margin-bottom:.75rem;}
.features-cta p{color:rgba(244,245,250,.45);margin-bottom:2rem;}
@media(max-width:768px){.feature-row,.feature-row-reverse .feature-visual{grid-template-columns:1fr;}.feature-row-reverse .feature-visual{order:0;}.feature-icon-big{width:100px;height:100px;font-size:4rem;}.features-hero,.features-list,.features-cta{padding:4rem 2rem;}}

/* ═══════════ PRICING ═══════════ */
.billing-toggle{display:flex;gap:.35rem;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:.3rem;width:fit-content;margin:0 auto;}
.bt-btn{background:none;border:none;color:rgba(244,245,250,.5);padding:.4rem .9rem;border-radius:6px;font-family:inherit;font-size:.85rem;cursor:pointer;transition:all .2s;}
.bt-btn.active{background:rgba(255,255,255,.08);color:#F4F5FA;font-weight:600;}
.bt-saving{background:rgba(74,222,128,.15);color:#4ADE80;font-size:.65rem;padding:.1rem .35rem;border-radius:3px;margin-left:.3rem;}
.plan-credits{font-size:.82rem;color:rgba(244,245,250,.5);margin:.5rem 0;text-align:center;}
.plan-badge-tag{position:absolute;top:0;right:0;background:#F9B004;color:#0A0C14;font-size:.62rem;font-weight:800;padding:.2rem .6rem;border-radius:0 12px 0 8px;text-transform:uppercase;letter-spacing:.05em;}
.pricing-card{position:relative;overflow:hidden;}
.plan-price-period small{font-size:.7rem;color:rgba(244,245,250,.3);}
@media(max-width:768px){.pricing-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.pricing-grid{grid-template-columns:1fr;}}

/* ═══════════ CONTACT ═══════════ */
.contact-wrap{padding:8rem 4rem 6rem;}
.contact-inner{max-width:960px;margin:0 auto;display:grid;grid-template-columns:1fr 1.2fr;gap:5rem;align-items:start;}
.contact-info h1{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:800;letter-spacing:-.02em;margin:.75rem 0 1rem;}
.contact-info p{color:rgba(244,245,250,.5);line-height:1.75;margin-bottom:2rem;}
.contact-links{display:flex;flex-direction:column;gap:.75rem;}
.cl-item{display:flex;align-items:center;gap:.75rem;font-size:.9rem;color:rgba(244,245,250,.6);}
.cl-item span{font-size:1.1rem;}
.contact-form-card{background:#12151F;border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:2rem;}
.form-group{margin-bottom:1.1rem;}
.form-label{display:block;font-size:.82rem;font-weight:600;margin-bottom:.4rem;}
.form-input,.form-textarea{width:100%;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:.65rem .9rem;color:#F4F5FA;font-family:'Plus Jakarta Sans',sans-serif;font-size:.9rem;transition:border-color .2s;}
.form-input:focus,.form-textarea:focus{outline:none;border-color:#4068C8;}
.form-textarea{resize:vertical;line-height:1.6;}
.has-error .form-input,.has-error .form-textarea{border-color:#F87171;}
.form-error{font-size:.74rem;color:#F87171;display:block;margin-top:.3rem;}
.contact-submit{width:100%;background:#F9B004;color:#0A0C14;border:none;border-radius:10px;padding:.85rem;font-weight:700;font-size:.95rem;cursor:pointer;font-family:'Plus Jakarta Sans',sans-serif;transition:all .2s;margin-top:.25rem;}
.contact-submit:hover{background:#FFCA40;transform:translateY(-1px);}
@media(max-width:768px){.contact-wrap{padding:6rem 2rem 4rem;}.contact-inner{grid-template-columns:1fr;gap:2rem;}}

/* ═══════════ FINANCING ═══════════ */
.pp-hero{background:linear-gradient(135deg,rgba(47,82,160,.12),transparent 60%);border-bottom:1px solid rgba(255,255,255,.07);padding:5rem 2rem 4rem;}
.pp-inner{max-width:860px;margin:0 auto;padding:0 1rem;}
.breadcrumb{display:flex;gap:.5rem;font-size:.78rem;color:rgba(244,245,250,.35);margin-bottom:1.5rem;}
.breadcrumb a{color:rgba(244,245,250,.35);text-decoration:none;}
.pp-hero h1{font-size:clamp(1.6rem,4vw,2.2rem);font-weight:800;line-height:1.25;margin-bottom:1.25rem;}
.pp-lead{font-size:1.05rem;color:rgba(244,245,250,.65);line-height:1.75;margin-bottom:2rem;max-width:650px;}
.btn-primary-cta{display:inline-block;background:#F9B004;color:#0A0C14;padding:.85rem 2rem;border-radius:10px;font-weight:700;text-decoration:none;}
.btn-primary-cta:hover{background:#FFCA40;}
.pp-section{padding:4rem 2rem;}
.fin-steps{display:flex;flex-direction:column;gap:1.25rem;margin-bottom:2.5rem;}
.fin-step{display:flex;gap:1.25rem;align-items:flex-start;}
.fs-num{width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,#2F52A0,#4068C8);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.85rem;flex-shrink:0;margin-top:2px;}
.fin-step h3{font-size:.95rem;font-weight:700;margin-bottom:.3rem;}
.fin-step p{font-size:.85rem;color:rgba(244,245,250,.55);line-height:1.65;margin:0;}
.fin-programs{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;}
.fp-card{background:#12151F;border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:1.25rem;}
.fp-level{font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;padding:.18rem .5rem;border-radius:4px;margin-bottom:.6rem;align-self:flex-start;display:inline-block;}
.fp-national .fp-level{background:rgba(47,82,160,.2);color:#4068C8;}
.fp-regional .fp-level{background:rgba(74,222,128,.1);color:#4ADE80;}
.fp-european .fp-level{background:rgba(249,176,4,.1);color:#F9B004;}
.fp-card h3{font-size:.9rem;font-weight:700;margin-bottom:.35rem;}
.fp-card p{font-size:.78rem;color:rgba(244,245,250,.45);line-height:1.55;margin:0;}
.pp-cta{padding:5rem 2rem;border-top:1px solid rgba(255,255,255,.07);}
.pp-cta h2{font-size:1.5rem;font-weight:800;margin-bottom:.5rem;}
.pp-cta p{color:rgba(244,245,250,.45);}
@media(max-width:700px){.fin-programs{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.fin-programs{grid-template-columns:1fr;}}

/* ═══════════ PROGRAM ═══════════ */
/* ─── HERO ──────────────────────────────────── */
.prog-hero{background:linear-gradient(160deg,rgba(47,82,160,.15) 0%,transparent 55%),#0A0C14;border-bottom:1px solid rgba(255,255,255,.07);padding:3rem 1.5rem 2.5rem;}
.prog-hero-inner,.prog-inner{max-width:980px;margin:0 auto;}
.breadcrumb{display:flex;align-items:center;gap:.4rem;font-size:.75rem;color:rgba(244,245,250,.3);margin-bottom:1.25rem;flex-wrap:wrap;}
.breadcrumb a{color:rgba(244,245,250,.3);text-decoration:none;transition:color .2s;}
.breadcrumb a:hover{color:#F4F5FA;}
.prog-badges{display:flex;gap:.4rem;flex-wrap:wrap;margin-bottom:.85rem;}
.prog-badge{font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:.2rem .65rem;border-radius:5px;}
.prog-badge-region{background:rgba(255,255,255,.06);color:rgba(244,245,250,.5);border:1px solid rgba(255,255,255,.08);}
.prog-badge-rec{background:rgba(255,255,255,.04);color:rgba(244,245,250,.4);border:1px solid rgba(255,255,255,.07);}
.prog-badge-version{background:rgba(249,176,4,.1);color:#F9B004;border:1px solid rgba(249,176,4,.2);}
.prog-hero-content{display:grid;grid-template-columns:1fr auto;gap:2rem;align-items:start;}
.prog-title{font-size:clamp(1.4rem,3.5vw,2rem);font-weight:800;letter-spacing:-.02em;line-height:1.25;margin-bottom:.3rem;}
.prog-organism{font-size:.85rem;color:rgba(244,245,250,.5);margin-bottom:.75rem;}
.prog-headline{font-size:.95rem;color:rgba(244,245,250,.65);line-height:1.7;margin-bottom:1.25rem;max-width:600px;}
.prog-ctas{display:flex;gap:.75rem;flex-wrap:wrap;}
.prog-cta-primary{display:inline-block;background:#F9B004;color:#0A0C14;padding:.8rem 1.75rem;border-radius:10px;font-weight:800;font-size:.9rem;text-decoration:none;transition:all .2s;}
.prog-cta-primary:hover{background:#FFCA40;transform:translateY(-2px);}
.prog-cta-secondary{display:inline-block;border:1px solid rgba(255,255,255,.15);color:rgba(244,245,250,.65);padding:.8rem 1.5rem;border-radius:10px;font-size:.9rem;text-decoration:none;transition:all .2s;}
.prog-cta-secondary:hover{border-color:rgba(255,255,255,.3);color:#F4F5FA;}

/* ─── AMOUNT CARD ────────────────────────────── */
.prog-amount-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:1.5rem;min-width:200px;text-align:center;}
.pac-label{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:rgba(244,245,250,.3);margin-bottom:.75rem;}
.pac-range{display:flex;align-items:baseline;gap:.4rem;justify-content:center;flex-wrap:wrap;}
.pac-min{font-size:1.1rem;font-weight:800;color:rgba(244,245,250,.5);}
.pac-sep{font-size:.75rem;color:rgba(244,245,250,.25);}
.pac-max{font-size:1.5rem;font-weight:800;color:#4ADE80;letter-spacing:-.02em;}
.pac-max-only{font-size:1rem;color:rgba(244,245,250,.5);line-height:1.4;}
.pac-max-only strong{display:block;font-size:1.6rem;color:#4ADE80;letter-spacing:-.02em;}
.pac-variable{font-size:1.1rem;color:rgba(244,245,250,.4);}
.pac-free{font-size:1.6rem;font-weight:800;color:#4ADE80;}
.pac-timeline{font-size:.72rem;color:rgba(244,245,250,.35);margin-top:.75rem;padding-top:.6rem;border-top:1px solid rgba(255,255,255,.07);}
.pac-rate{font-size:.7rem;color:rgba(244,245,250,.3);margin-top:.35rem;line-height:1.4;}
.pac-confidence{margin-top:.75rem;padding-top:.6rem;border-top:1px solid rgba(255,255,255,.07);font-size:.65rem;color:rgba(244,245,250,.35);}

/* ─── STATS BAR ─────────────────────────────── */
.prog-stats-bar{background:#12151F;border-bottom:1px solid rgba(255,255,255,.07);padding:1.25rem 1.5rem;}
.prog-stats-bar .prog-inner{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;}
.prog-stat{display:flex;align-items:center;gap:.65rem;flex:1;min-width:150px;}
.ps-icon{font-size:1.2rem;flex-shrink:0;}
.ps-val{font-size:.85rem;font-weight:600;line-height:1.3;}
.ps-label{font-size:.68rem;color:rgba(244,245,250,.35);text-transform:uppercase;letter-spacing:.05em;}
.prog-stat-sep{width:1px;height:32px;background:rgba(255,255,255,.08);flex-shrink:0;}

/* ─── BODY LAYOUT ───────────────────────────── */
.prog-body{padding:3rem 1.5rem;}
.prog-layout{display:grid;grid-template-columns:1fr 300px;gap:2.5rem;align-items:start;}

/* ─── MAIN SECTIONS ─────────────────────────── */
.prog-section{margin-bottom:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.06);}
.prog-section:last-child{border-bottom:none;}
.prog-section h2{font-size:1.1rem;font-weight:800;letter-spacing:-.01em;margin-bottom:1rem;}
.prog-section p{font-size:.9rem;color:rgba(244,245,250,.7);line-height:1.8;margin-bottom:.75rem;}

.prog-eligibility-box{display:flex;flex-direction:column;gap:.5rem;}
.prog-elig-item{display:flex;gap:.65rem;align-items:flex-start;font-size:.87rem;color:rgba(244,245,250,.7);line-height:1.6;}
.prog-elig-check{color:#4ADE80;font-weight:700;flex-shrink:0;margin-top:.05rem;}

.prog-tips-grid{display:grid;grid-template-columns:1fr 1fr;gap:.85rem;}
.prog-tip{display:flex;gap:.75rem;align-items:flex-start;background:#12151F;border:1px solid rgba(255,255,255,.07);border-radius:10px;padding:.85rem 1rem;}
.prog-tip-num{width:24px;height:24px;border-radius:50%;background:linear-gradient(135deg,#2F52A0,#4068C8);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.72rem;flex-shrink:0;}
.prog-tip p{font-size:.82rem;color:rgba(244,245,250,.65);line-height:1.6;margin:0;}

.prog-mistakes{display:flex;flex-direction:column;gap:.6rem;}
.prog-mistake{display:flex;gap:.75rem;align-items:flex-start;font-size:.85rem;color:rgba(244,245,250,.65);line-height:1.6;padding:.6rem .85rem;background:rgba(248,113,113,.04);border:1px solid rgba(248,113,113,.1);border-radius:8px;}
.prog-mistake p{margin:0;}

/* ─── FAQ ───────────────────────────────────── */
.prog-faq .faq-item{border-bottom:1px solid rgba(255,255,255,.06);padding:.65rem 0;}
.prog-faq .faq-q{width:100%;background:none;border:none;color:#F4F5FA;text-align:left;font-family:inherit;font-size:.88rem;font-weight:600;cursor:pointer;display:flex;justify-content:space-between;align-items:center;padding:.2rem 0;}
.prog-faq .faq-icon{font-size:1.1rem;transition:transform .3s;}
.prog-faq .faq-item.open .faq-icon{transform:rotate(45deg);}
.prog-faq .faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.prog-faq .faq-item.open .faq-a{max-height:300px;}
.prog-faq .faq-a p{font-size:.85rem;color:rgba(244,245,250,.6);line-height:1.7;padding:.5rem 0;}

/* ─── VERSIONS ──────────────────────────────── */
.prog-versions{display:flex;flex-direction:column;gap:.65rem;}
.prog-version-row{display:flex;gap:.75rem;align-items:flex-start;padding:.7rem .85rem;background:#12151F;border:1px solid rgba(255,255,255,.07);border-radius:9px;}
.pvr-icon{font-size:1rem;flex-shrink:0;margin-top:.1rem;}
.pvr-meta{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;margin-bottom:.2rem;}
.pvr-label{font-size:.75rem;font-weight:700;color:rgba(244,245,250,.6);}
.pvr-date{font-size:.68rem;color:rgba(244,245,250,.3);font-family:'DM Mono',monospace;}
.pvr-num{font-size:.65rem;background:rgba(255,255,255,.05);padding:.1rem .4rem;border-radius:3px;color:rgba(244,245,250,.3);font-family:'DM Mono',monospace;}
.pvr-summary{font-size:.8rem;color:rgba(244,245,250,.5);line-height:1.5;margin:0;}

/* ─── SIDEBAR ───────────────────────────────── */
.prog-sidebar{display:flex;flex-direction:column;gap:1rem;position:sticky;top:1.5rem;}
.prog-sidebar-cta{background:linear-gradient(135deg,rgba(47,82,160,.15),rgba(249,176,4,.05));border:1px solid rgba(47,82,160,.25);border-radius:14px;padding:1.5rem;}
.prog-sidebar-cta h3{font-size:.95rem;font-weight:800;margin-bottom:.5rem;}
.prog-sidebar-cta p{font-size:.8rem;color:rgba(244,245,250,.55);line-height:1.6;margin-bottom:1rem;}
.prog-info-card{background:#12151F;border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:1.1rem;}
.prog-info-title{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:rgba(244,245,250,.3);margin-bottom:.75rem;}
.prog-info-table{width:100%;border-collapse:collapse;font-size:.78rem;}
.prog-info-table th{text-align:left;color:rgba(244,245,250,.35);font-weight:500;padding:.3rem 0;width:40%;}
.prog-info-table td{color:rgba(244,245,250,.75);padding:.3rem 0;border-top:1px solid rgba(255,255,255,.04);}
.prog-official-link{display:inline-block;font-size:.8rem;color:#4068C8;text-decoration:none;border:1px solid rgba(64,104,200,.2);border-radius:6px;padding:.3rem .7rem;transition:all .2s;}
.prog-official-link:hover{background:rgba(64,104,200,.1);color:#6488E8;}

/* ─── RELATED ───────────────────────────────── */
.prog-related{padding:2.5rem 1.5rem;background:#12151F;border-top:1px solid rgba(255,255,255,.07);}
.prog-related-title{font-size:1.1rem;font-weight:800;margin-bottom:1.25rem;}
.prog-related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.85rem;}
.prog-related-card{background:#0A0C14;border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:1rem;text-decoration:none;color:#F4F5FA;transition:all .2s;display:flex;flex-direction:column;gap:.4rem;}
.prog-related-card:hover{border-color:rgba(64,104,200,.3);transform:translateY(-2px);}
.prc-name{font-size:.85rem;font-weight:700;line-height:1.3;}
.prc-org{font-size:.72rem;color:rgba(244,245,250,.35);}
.prc-amount{font-size:.75rem;color:#4ADE80;font-family:'DM Mono',monospace;font-weight:600;}

/* ─── CTA SECTION ───────────────────────────── */
.prog-cta-section{padding:4rem 1.5rem;background:linear-gradient(to bottom,#0A0C14,rgba(47,82,160,.08));border-top:1px solid rgba(255,255,255,.06);}
.prog-cta-section h2{font-size:1.4rem;font-weight:800;margin-bottom:.6rem;}
.prog-cta-section p{color:rgba(244,245,250,.5);font-size:.92rem;margin-bottom:1.5rem;max-width:580px;margin-left:auto;margin-right:auto;}
.prog-cta-btns{display:flex;justify-content:center;gap:.75rem;flex-wrap:wrap;}

/* ─── RESPONSIVE ────────────────────────────── */
@media(max-width:900px) {
  .prog-hero-content { grid-template-columns:1fr; }
  .prog-amount-card { min-width:unset;text-align:left; }
  .pac-range { justify-content:flex-start; }
  .prog-layout { grid-template-columns:1fr; }
  .prog-sidebar { position:static; }
  .prog-related-grid { grid-template-columns:1fr 1fr; }
  .prog-tips-grid { grid-template-columns:1fr; }
}
@media(max-width:600px) {
  .prog-hero { padding:2rem 1rem 1.5rem; }
  .prog-body,.prog-related,.prog-cta-section { padding:2rem 1rem; }
  .prog-stats-bar { padding:.85rem 1rem; }
  .prog-stats-bar .prog-inner { gap:.75rem; }
  .prog-stat-sep { display:none; }
  .prog-related-grid { grid-template-columns:1fr; }
}

/* ═══════════ SECTOR ═══════════ */
/* ─── HERO ──────────────────────────────────── */
.sec-hero{background:linear-gradient(160deg,color-mix(in srgb,var(--sec-color) 12%,transparent) 0%,transparent 60%);border-bottom:1px solid rgba(255,255,255,.07);padding:4rem 1.5rem 3rem;}
.sec-inner{max-width:1060px;margin:0 auto;}
.breadcrumb{display:flex;align-items:center;gap:.4rem;font-size:.75rem;color:rgba(244,245,250,.3);margin-bottom:1.5rem;flex-wrap:wrap;}
.breadcrumb a{color:rgba(244,245,250,.3);text-decoration:none;transition:color .15s;}
.breadcrumb a:hover{color:#F4F5FA;}
.sec-hero-layout{display:grid;grid-template-columns:1fr 300px;gap:3rem;align-items:start;}
.sec-emoji{font-size:3.5rem;margin-bottom:.75rem;line-height:1;}
.sec-title{font-size:clamp(1.5rem,3.5vw,2.2rem);font-weight:800;letter-spacing:-.02em;line-height:1.2;margin-bottom:1rem;}
.sec-lead{font-size:.95rem;color:rgba(244,245,250,.65);line-height:1.8;margin-bottom:1.5rem;max-width:560px;}
.sec-ctas{display:flex;gap:.75rem;flex-wrap:wrap;}
.sec-cta-primary{display:inline-block;background:#F9B004;color:#0A0C14;padding:.8rem 1.75rem;border-radius:10px;font-weight:800;font-size:.9rem;text-decoration:none;transition:all .2s;}
.sec-cta-primary:hover{background:#FFCA40;transform:translateY(-2px);}
.sec-cta-secondary{display:inline-block;border:1px solid rgba(255,255,255,.15);color:rgba(244,245,250,.65);padding:.8rem 1.5rem;border-radius:10px;font-size:.9rem;text-decoration:none;transition:all .2s;}
.sec-cta-secondary:hover{border-color:rgba(255,255,255,.3);color:#F4F5FA;}
.sec-cta-outline{display:inline-block;border:1px solid rgba(255,255,255,.12);color:rgba(244,245,250,.5);padding:.7rem 1.25rem;border-radius:8px;font-size:.85rem;text-decoration:none;transition:all .2s;}
.sec-cta-outline:hover{border-color:rgba(255,255,255,.25);color:#F4F5FA;}

/* ─── STATS CARD ────────────────────────────── */
.sec-stats-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:1.5rem;display:flex;flex-direction:column;gap:1.25rem;}
.ssc-stat{border-bottom:1px solid rgba(255,255,255,.06);padding-bottom:1.1rem;}
.ssc-stat:last-child{border-bottom:none;padding-bottom:0;}
.ssc-val{font-size:1.6rem;font-weight:800;letter-spacing:-.02em;line-height:1.1;}
.ssc-label{font-size:.72rem;color:rgba(244,245,250,.4);margin-top:.2rem;line-height:1.35;}

/* ─── PAIN POINTS ───────────────────────────── */
.sec-pains{padding:3.5rem 1.5rem;background:#12151F;border-bottom:1px solid rgba(255,255,255,.07);}
.sec-pains h2{font-size:1.2rem;font-weight:800;margin-bottom:1.5rem;}
.sec-pains-grid{display:grid;grid-template-columns:1fr 1fr;gap:.85rem;}
.sec-pain{display:flex;gap:.85rem;align-items:flex-start;padding:1rem 1.1rem;background:#0A0C14;border:1px solid;border-radius:12px;}
.sp-num{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.82rem;flex-shrink:0;}
.sec-pain p{font-size:.85rem;color:rgba(244,245,250,.65);line-height:1.65;margin:0;padding-top:.1rem;}

/* ─── PROGRAMMES ────────────────────────────── */
.sec-programs{padding:3.5rem 1.5rem;}
.sec-section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;flex-wrap:wrap;gap:.5rem;}
.sec-section-header h2{font-size:1.2rem;font-weight:800;}
.sec-see-all{font-size:.82rem;color:rgba(244,245,250,.35);text-decoration:none;transition:color .2s;}
.sec-see-all:hover{color:#F4F5FA;}
.sec-level-group{margin-bottom:1.75rem;}
.sec-level-label{margin-bottom:.75rem;}
.sec-prog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;}
.sec-prog-card{background:#12151F;border:1px solid rgba(255,255,255,.07);border-top:2px solid var(--lvl-c,#4068C8);border-radius:0 0 12px 12px;padding:1rem;text-decoration:none;color:#F4F5FA;display:flex;flex-direction:column;gap:.35rem;transition:all .2s;}
.sec-prog-card:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(0,0,0,.3);}
.spc-org{font-size:.68rem;color:rgba(244,245,250,.35);text-transform:uppercase;letter-spacing:.05em;}
.spc-name{font-size:.87rem;font-weight:700;line-height:1.35;flex:1;}
.spc-amount{font-size:.78rem;font-weight:700;font-family:'DM Mono',monospace;}
.spc-rec{font-size:.68rem;color:rgba(244,245,250,.3);}

/* ─── TOP PROGRAMMES ────────────────────────── */
.sec-top-progs{padding:3.5rem 1.5rem;background:#12151F;border-top:1px solid rgba(255,255,255,.07);border-bottom:1px solid rgba(255,255,255,.07);}
.sec-top-progs h2{font-size:1.2rem;font-weight:800;margin-bottom:1.25rem;}
.sec-top-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:.65rem;}
.sec-top-card{background:#0A0C14;border:1px solid rgba(255,255,255,.07);border-radius:10px;padding:.85rem;display:flex;flex-direction:column;gap:.5rem;transition:all .2s;}
.sec-top-card:first-child{border-color:color-mix(in srgb,var(--top-color,#4068C8) 40%,transparent);background:color-mix(in srgb,var(--top-color,#4068C8) 5%,transparent);}
.stc-rank{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:800;color:#F4F5FA;flex-shrink:0;}
.stc-name{font-size:.8rem;font-weight:700;line-height:1.35;flex:1;}
.stc-link{font-size:.7rem;color:rgba(244,245,250,.35);text-decoration:none;transition:color .2s;}
.stc-link:hover{color:#F4F5FA;}

/* ─── WHY FIT2START ─────────────────────────── */
.sec-why{padding:3.5rem 1.5rem;}
.sec-why-layout{display:grid;grid-template-columns:1fr 300px;gap:3rem;align-items:start;}
.sec-why h2{font-size:1.2rem;font-weight:800;margin-bottom:.85rem;}
.sec-why > div > p{font-size:.9rem;color:rgba(244,245,250,.65);line-height:1.75;margin-bottom:1.25rem;}
.sec-why-feats{display:flex;flex-direction:column;gap:1rem;}
.swf{display:flex;gap:.85rem;align-items:flex-start;}
.swf-icon{width:36px;height:36px;border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;}
.swf strong{display:block;font-size:.9rem;font-weight:700;margin-bottom:.2rem;}
.swf p{font-size:.8rem;color:rgba(244,245,250,.5);line-height:1.6;margin:0;}
.sec-why-cta-card{background:#12151F;border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:1.75rem;text-align:center;position:sticky;top:1.5rem;}
.swc-emoji{font-size:2.5rem;margin-bottom:.75rem;}
.sec-why-cta-card h3{font-size:.95rem;font-weight:800;margin-bottom:.35rem;}
.sec-why-cta-card p{font-size:.8rem;color:rgba(244,245,250,.45);margin-bottom:1rem;line-height:1.55;}

/* ─── FAQ ───────────────────────────────────── */
.sec-faq{padding:3.5rem 1.5rem;background:#12151F;border-top:1px solid rgba(255,255,255,.07);}
.sec-faq h2{font-size:1.2rem;font-weight:800;margin-bottom:1.25rem;}
.sec-faq-list .faq-item{border-bottom:1px solid rgba(255,255,255,.06);padding:.7rem 0;}
.sec-faq-list .faq-q{width:100%;background:none;border:none;color:#F4F5FA;text-align:left;font-family:inherit;font-size:.9rem;font-weight:600;cursor:pointer;display:flex;justify-content:space-between;align-items:center;padding:.2rem 0;}
.sec-faq-list .faq-icon{font-size:1.1rem;transition:transform .3s;}
.sec-faq-list .faq-item.open .faq-icon{transform:rotate(45deg);}
.sec-faq-list .faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.sec-faq-list .faq-item.open .faq-a{max-height:300px;}
.sec-faq-list .faq-a p{font-size:.87rem;color:rgba(244,245,250,.6);line-height:1.75;padding:.5rem 0;}

/* ─── AUTRES SECTEURS ───────────────────────── */
.sec-others{padding:3rem 1.5rem;border-top:1px solid rgba(255,255,255,.07);}
.sec-others h2{font-size:1.1rem;font-weight:800;margin-bottom:1rem;}
.sec-others-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:.6rem;}
.sec-other-card{display:flex;align-items:center;gap:.5rem;padding:.65rem .85rem;background:#12151F;border:1px solid rgba(255,255,255,.07);border-radius:9px;text-decoration:none;color:rgba(244,245,250,.6);font-size:.8rem;transition:all .2s;}
.sec-other-card:hover{border-color:rgba(255,255,255,.18);color:#F4F5FA;transform:translateY(-1px);}
.soc-emoji{font-size:1rem;flex-shrink:0;}
.soc-name{font-weight:600;font-size:.78rem;}

/* ─── CTA FINALE ────────────────────────────── */
.sec-final-cta{padding:4rem 1.5rem;background:linear-gradient(to bottom,#12151F,rgba(47,82,160,.08));border-top:1px solid rgba(255,255,255,.07);}
.sec-final-cta h2{font-size:1.4rem;font-weight:800;margin-bottom:.6rem;}
.sec-final-cta p{color:rgba(244,245,250,.5);font-size:.92rem;margin-bottom:1.5rem;max-width:560px;margin-left:auto;margin-right:auto;}
.sec-cta-group{display:flex;justify-content:center;gap:.75rem;flex-wrap:wrap;}

/* ─── RESPONSIVE ────────────────────────────── */
@media(max-width:1000px){
  .sec-top-grid{grid-template-columns:repeat(3,1fr);}
  .sec-others-grid{grid-template-columns:repeat(4,1fr);}
}
@media(max-width:800px){
  .sec-hero-layout,.sec-why-layout{grid-template-columns:1fr;}
  .sec-stats-card{flex-direction:row;flex-wrap:wrap;gap:.75rem;}
  .ssc-stat{border-bottom:none;border-right:1px solid rgba(255,255,255,.06);padding:0 .85rem 0 0;flex:1;min-width:100px;}
  .ssc-stat:last-child{border-right:none;padding:0;}
  .sec-pains-grid{grid-template-columns:1fr;}
  .sec-prog-grid{grid-template-columns:1fr 1fr;}
  .sec-top-grid{grid-template-columns:1fr 1fr;}
  .sec-others-grid{grid-template-columns:repeat(3,1fr);}
  .sec-why-cta-card{position:static;}
}
@media(max-width:500px){
  .sec-prog-grid{grid-template-columns:1fr;}
  .sec-top-grid{grid-template-columns:1fr;}
  .sec-others-grid{grid-template-columns:1fr 1fr;}
  .sec-hero{padding:2.5rem 1rem 2rem;}
  .sec-pains,.sec-programs,.sec-top-progs,.sec-why,.sec-faq,.sec-others,.sec-final-cta{padding:2.5rem 1rem;}
}

/* ═══════════ STATUS ═══════════ */
.status-page { padding-top: 2rem; padding-bottom: 4rem; }
@media (max-width: 768px) {
  .status-banner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CORRECTIONS MANQUANTES - Sprint 24 audit
   ═══════════════════════════════════════════════════════════════════════════ */

/* sol-home-left : conteneur gauche de la section solitude sur home.php */
.sol-home-left {
  display: flex;
  flex-direction: column;
}
.sol-home-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* legal/gdpr.php */
.lp-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.lp-layout h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: .5rem;
}
.lp-layout h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 .6rem;
  color: rgba(244,245,250,.9);
}
.lp-layout p, .lp-layout li {
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(244,245,250,.65);
}
.lp-layout ul {
  padding-left: 1.25rem;
  margin: .5rem 0 1rem;
}

/* status.php : container et dot */
.status-dot-large {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* sol-home responsive */
@media (max-width: 900px) {
  .sol-home-inner {
    grid-template-columns: 1fr !important;
  }
  .sol-home-right {
    display: none;
  }
}

/* .container - classe utilitaire générique utilisée dans status.php */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* .btn-outline - bouton secondaire utilisé dans juridique.php */
.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(244,245,250,.8);
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* ===================================================================
   CORRECTIFS CSS  -  Session post-déploiement
   Classes manquantes identifiées après audit pages publiques
   =================================================================== */

/* --- Tarifs : toggle prix mensuel/annuel --- */
.plan-price-monthly { display: flex; }
.plan-price-yearly  { display: none; }

/* --- Logo : agrandissement et "2" en orange --- */
.logo-name {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-name .logo-2 {
  color: #F9B004;
}

/* --- CRM one-page : hero deux colonnes --- */
.seo-hero-crm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
.seo-hero-crm .seo-hero-inner { padding: 0; }
.seo-hero-badge {
  display: inline-block;
  background: rgba(74,222,128,.12);
  color: #4ADE80;
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .28rem .85rem;
  margin-bottom: 1rem;
}
.seo-hero-btns {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.seo-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #F9B004;
  margin-bottom: .75rem;
}
.seo-intro {
  font-size: .95rem;
  color: rgba(244,245,250,.6);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 680px;
}
.seo-section-inner {
  max-width: 860px;
  margin: 0 auto;
}
.seo-section-alt {
  background: rgba(10,12,24,.5);
  padding: 3rem 2rem;
}
.seo-section-alt .seo-section-inner { max-width: 1100px; margin: 0 auto; }

/* CRM demo preview */
.crm-demo-preview {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.25rem;
  width: 100%;
  max-width: 360px;
}
.cdp-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(244,245,250,.4);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cdp-dot { width: 10px; height: 10px; border-radius: 50%; }
.cdp-stage { margin-bottom: .9rem; }
.cdp-stage-top {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
}
.cdp-stage-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cdp-stage-label { font-size: .8rem; font-weight: 600; flex: 1; }
.cdp-stage-count {
  font-size: .72rem;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: .1rem .4rem;
  color: rgba(244,245,250,.5);
}
.cdp-bar-track {
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: .3rem;
}
.cdp-bar-fill { height: 100%; border-radius: 3px; transition: width .4s; }
.cdp-amount { font-size: .72rem; color: rgba(244,245,250,.4); }

/* CRM grilles */
.crm-problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.crm-problem-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 1.5rem;
}
.crm-pc-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.crm-problem-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.crm-problem-card p { font-size: .83rem; line-height: 1.7; color: rgba(244,245,250,.6); margin: 0; }

.crm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.crm-feature-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 1.4rem;
}
.crm-step { display: flex; flex-direction: column; gap: .4rem; }
.crm-step-icon { font-size: 1.3rem; margin-bottom: .4rem; display: block; }
.crm-step-num {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(244,245,250,.3);
}
.crm-workflow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* CRM news demo */
.crm-news-demo {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1rem;
}
.cnd-contact { font-size: .78rem; font-weight: 700; margin-bottom: .75rem; }
.cnd-news-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(249,176,4,.1);
  color: #F9B004;
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 4px;
  margin-bottom: .5rem;
}
.cnd-news-icon { font-size: .8rem; }
.cnd-name { font-size: .82rem; font-weight: 600; }
.cnd-snippet { font-size: .75rem; color: rgba(244,245,250,.5); line-height: 1.5; }
.cnd-source { font-size: .7rem; color: rgba(244,245,250,.3); margin-top: .3rem; }
.cnd-date { font-size: .7rem; color: rgba(244,245,250,.3); }
.cnd-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(64,104,200,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}
.cnd-type { font-size: .7rem; color: rgba(244,245,250,.35); }

/* CRM siret demo */
.crm-siret-demo {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1rem;
}
.csd-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.csd-enriched {
  font-size: .65rem;
  background: rgba(74,222,128,.12);
  color: #4ADE80;
  padding: .15rem .5rem;
  border-radius: 4px;
}
.csd-field { display: flex; gap: .5rem; margin-bottom: .4rem; font-size: .78rem; }
.csd-label { color: rgba(244,245,250,.4); min-width: 80px; flex-shrink: 0; }
.csd-val { color: rgba(244,245,250,.85); font-weight: 500; }

/* --- Badge générique hero (salons, eic, etc.) --- */
.pitch-hero-badge {
  display: inline-block;
  background: rgba(249,176,4,.1);
  color: #F9B004;
  border: 1px solid rgba(249,176,4,.25);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .28rem .85rem;
  margin-bottom: 1rem;
}

/* --- Investisseurs steps --- */
.inv-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.invs-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.invss-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(47,82,160,.2);
  border: 1px solid rgba(64,104,200,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: #4068C8;
  flex-shrink: 0;
}

/* --- Financement : catégories programmes --- */
.fp-national, .fp-regional, .fp-european {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.fp-national { border-left: 3px solid #4068C8; }
.fp-regional { border-left: 3px solid #F9B004; }
.fp-european { border-left: 3px solid #4ADE80; }

/* --- EIC Accelerator : changements --- */
.cir-changes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.cir-change {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1rem;
  font-size: .83rem;
}
.ccc-icon { font-size: 1.2rem; margin-bottom: .5rem; display: block; }

/* --- Levée de fonds --- */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.fin-program-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.25rem;
}

/* --- Juridique : btn-outline --- */
.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(244,245,250,.8);
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.4); color: #fff; }

/* --- Solitude dirigeant : blocs spécifiques --- */
.sol-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(244,245,250,.7);
  margin-bottom: 1.5rem;
}
.sol-consequences { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.sol-faq { margin-top: 2rem; }
.sol-cta-left { display: flex; flex-direction: column; gap: .75rem; }
.sol-pf-body { flex: 1; }
.sol-transform { margin-top: 1.5rem; }

/* --- Auth inscription : centrage amélioré --- */
.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  min-height: 100vh;
}

/* --- Responsive général --- */
@media (max-width: 900px) {
  .seo-hero-crm {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .seo-hero-visual { display: none; }
  .crm-features-grid { grid-template-columns: 1fr 1fr; }
  .financing-grid { grid-template-columns: 1fr 1fr; }
  .cir-changes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .crm-problems-grid { grid-template-columns: 1fr; }
  .crm-features-grid { grid-template-columns: 1fr; }
  .financing-grid { grid-template-columns: 1fr; }
}

