/* ============================================================
   CSS commun aux hubs promos.html + guide.html (#5 audit)
   Seules les règles STRICTEMENT identiques vivent ici ; les
   variantes propres à chaque page restent inline dans la page.
   ============================================================ */
.float-header{position:absolute}
html,body{overflow-x:hidden}
.hero-section{
  position:relative;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  padding:160px 32px 48px;
  overflow:visible;
  min-height:400px;
}
@keyframes heroFadeUp{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-badge{animation-delay:.1s}
.hero-title{animation-delay:.22s}
.hero-desc{animation-delay:.34s}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-mono);font-size:11px;font-weight:500;
  color:var(--accent);letter-spacing:1.5px;text-transform:uppercase;
  background:var(--accent-muted);
  border:1px solid rgba(160,175,200,0.12);
  padding:6px 16px;border-radius:999px;
  margin-bottom:24px;
  position:relative;z-index:1;
}
.hero-badge-dot{
  width:5px;height:5px;border-radius:50%;background:var(--accent);
}
.hero-title{
  font-family:var(--font-display);
  font-size:clamp(2.4rem,5.5vw,4.2rem);
  font-weight:900;
  line-height:1.12;
  letter-spacing:-0.02em;
  color:var(--text);
  margin-bottom:20px;
  position:relative;z-index:1;
}
.hero-title .gradient-text{
  background:linear-gradient(135deg,var(--accent-alt) 0%,var(--accent) 50%,var(--text-muted) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-desc{
  font-size:15px;line-height:1.7;
  color:var(--text-muted);
  max-width:600px;
  margin:0 auto;
  position:relative;z-index:1;
}
.sort-count{
  font-family:var(--font-mono);font-size:11px;
  color:var(--text-muted);
  background:rgba(160,175,200,0.06);
  padding:7px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,0.04);
  margin-left:4px;
}
.propfirms-section{
  position:relative;
  max-width:1280px;
  margin:0 auto;
  padding:48px 32px 80px;
}
.bento{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
  gap:14px;
}
.tile{display:flex;flex-direction:column}
.tile{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  text-decoration:none;
  cursor:pointer;
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}
.tile::before{
  content:'';position:absolute;top:0;left:22px;right:22px;height:3px;
  border-radius:0 0 3px 3px;
  background:linear-gradient(90deg,var(--accent),var(--accent-alt));
  opacity:0;transition:opacity .25s;pointer-events:none;
}
.tile:hover{
  border-color:var(--border-hover);
  transform:translateY(-2px);
  box-shadow:0 12px 40px rgba(0,0,0,0.35),0 0 0 1px rgba(160,175,200,0.04) inset;
}
.tile:hover::before{opacity:1}
.tile:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
@keyframes tileIn{
  from{opacity:0;transform:translateY(16px) scale(0.97)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
.tile{animation:tileIn .4s ease both}
.t-top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:16px}
.t-identity{display:flex;align-items:center;gap:14px}
.t-logo{
  width:48px;height:48px;border-radius:12px;
  background:var(--surface-light);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;flex-shrink:0;
  transition:border-color .25s;
}
.tile:hover .t-logo{border-color:rgba(160,175,200,0.15)}
.t-logo img{width:32px;height:32px;object-fit:contain}
.t-logo .init{font-size:0.7rem;font-weight:800;color:var(--text-muted)}
.t-firm-name{font-size:1rem;font-weight:700;line-height:1.2;color:var(--text)}
.t-tags{display:flex;gap:4px;margin-top:5px;flex-wrap:wrap}
.t-tag{
  font-size:0.5625rem;font-weight:600;
  padding:2px 8px;border-radius:999px;
  background:rgba(255,255,255,0.04);color:var(--text-dim);
}
.t-tag .fi{font-size:0.6rem}
.t-tag.type{background:rgba(160,175,200,0.1);color:var(--accent)}
.t-rating{display:flex;flex-direction:column;align-items:center;gap:2px;flex-shrink:0}
.t-rating-num{
  font-family:var(--font-mono);font-size:1.5rem;font-weight:800;line-height:1;
}
.t-r-label{font-size:0.5rem;text-transform:uppercase;letter-spacing:0.08em;color:var(--text-muted)}
.t-price-row{
  display:flex;align-items:baseline;gap:8px;
  margin-bottom:14px;padding-bottom:14px;
  border-bottom:1px solid var(--border);
}
.t-price-big{font-family:var(--font-mono);font-size:1.5rem;font-weight:800;color:var(--accent-light)}
.t-metrics{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:1px;background:var(--border);
  border-radius:10px;overflow:hidden;
  margin-bottom:14px;
}
.t-m{
  background:var(--surface-light);padding:12px 10px;
  display:flex;flex-direction:column;gap:3px;
}
.t-m-label{font-size:0.5rem;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--text-muted)}
.t-m-val{font-family:var(--font-mono);font-size:0.8125rem;font-weight:600;color:var(--text)}
.t-m-val.green{color:var(--green)}
.t-cta{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 16px;
  border-radius:10px;
  background:var(--accent);
  border:1px solid var(--accent);
  margin-top:auto;
  transition:all .25s;
}
.tile:hover .t-cta{
  background:var(--accent-light);border-color:var(--accent-light);
  box-shadow:0 0 20px rgba(160,175,200,0.15);
  transform:translateY(-1px);
}
.t-cta-text{
  font-size:0.75rem;font-weight:700;
  color:var(--bg);text-transform:uppercase;letter-spacing:0.05em;
  transition:color .25s;
}
.tile:hover .t-cta-text{color:var(--bg)}
.t-cta-arrow{
  width:20px;height:20px;
  display:flex;align-items:center;justify-content:center;
  color:var(--bg);
  transition:all .25s;
}
.tile:hover .t-cta-arrow{
  transform:translateX(3px);
}
.skeleton-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
  gap:14px;
}
.skeleton-tile{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:22px;
  min-height:260px;
}
@keyframes shimmerPulse{0%{opacity:.3}50%{opacity:.5}100%{opacity:.3}}
.sk-bar{
  border-radius:6px;background:rgba(160,175,200,0.08);
  animation:shimmerPulse 1.5s ease-in-out infinite;
}
.sk-bar.w100{width:100%;height:10px;margin-bottom:10px}
.sk-bar.w60{width:60%;height:12px;margin-bottom:16px}
.sk-bar.w40{width:40%;height:8px}
.sk-row{display:flex;gap:10px;margin-bottom:12px}
.sk-circle{width:48px;height:48px;border-radius:12px;background:rgba(160,175,200,0.06);flex-shrink:0}
@media (max-width:768px) {
  .hero-section{padding:130px 20px 36px;min-height:360px}
  .hero-title{font-size:clamp(1.8rem,7vw,2.6rem)}
  .hero-desc{font-size:14px}
  .propfirms-section{padding:0 16px 60px}
  .bento,.skeleton-grid{grid-template-columns:1fr;gap:12px}
  .tile{aspect-ratio:auto}
  .tile{padding:18px 16px}
  .t-logo{width:42px;height:42px}
  .t-logo img{width:28px;height:28px}
  .t-firm-name{font-size:0.9375rem}
  .t-price-big{font-size:1.25rem}
}
@media (max-width:420px) {
  .t-metrics{grid-template-columns:1fr 1fr !important}
}
.seo-block{margin-bottom:56px}
.seo-block:last-child{margin-bottom:0}
.seo-block p:last-child{margin-bottom:0}
.seo-block strong{color:var(--text);font-weight:600}
.faq-list{display:flex;flex-direction:column;gap:8px;margin-top:18px}
.faq-item[open]{border-color:var(--border-hover)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{background:rgba(160,175,200,0.04)}
.faq-item[open] summary::after{transform:rotate(45deg)}
@media (max-width:768px) {
  .seo-block{margin-bottom:40px}
}
