/* ══ BOUTONS ════════════════════════════════════════════════ */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff; border: none; border-radius: 8px;
  padding: 14px 30px; font-size: .95rem; font-weight: 700;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--brand-glow); color: #fff; opacity: .95; }

.btn-outline-brand {
  display: inline-block;
  background: transparent; color: #a78bfa;
  border: 1px solid var(--brand); border-radius: 8px;
  padding: 13px 28px; font-size: .95rem; font-weight: 600;
  transition: background .15s, color .15s, transform .15s;
}
.btn-outline-brand:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

.btn-primary-asiora {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6B46C1, #4F46E5);
  color: #fff; border-radius: 50px; font-weight: 600;
  font-size: .95rem; transition: opacity .2s, transform .15s;
}
.btn-primary-asiora:hover { opacity: .85; transform: translateY(-1px); color: #fff; }

.btn-outline-asiora {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid #6B46C1;
  color: #A78BFA; border-radius: 50px; font-weight: 600;
  font-size: .95rem; transition: all .2s;
}
.btn-outline-asiora:hover { background: rgba(107,70,193,.15); color: #F8F8FF; }

/* ══ SECTION LABEL ════════════════════════════════════════════ */
.section-label {
  display: inline-block; background: rgba(107,70,193,.15);
  border: 1px solid rgba(107,70,193,.3); color: #a78bfa;
  border-radius: 99px; padding: 4px 14px; font-size: .8rem; font-weight: 600; margin-bottom: 12px;
}

/* ══ PILLAR CARDS ════════════════════════════════════════════ */
.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pillar-card:hover {
  border-color: var(--brand); transform: translateY(-3px);
  box-shadow: 0 0 20px var(--brand-glow);
}
.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(107,70,193,.15); border: 1px solid rgba(107,70,193,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pillar-card h5 { font-size: 1rem; margin-bottom: 8px; }
.pillar-card p  { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.65; }

/* ══ STATS ════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-main); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 36px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.1rem; font-weight: 800; line-height: 1;
  background: linear-gradient(90deg, #a78bfa, #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .82rem; color: var(--muted); margin-top: 5px; }

.stats-hero {
  background: var(--bg-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-hero .stat-item { text-align: center; }
.stats-hero .stat-number {
  font-size: 2.2rem; font-weight: 800; line-height: 1;
  background: linear-gradient(90deg, #a78bfa, #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stats-hero .stat-label { font-size: .82rem; color: var(--muted); margin-top: 5px; }

/* ══ DIFFÉRENCIATEUR ══════════════════════════════════════════ */
.diff-card { border-radius: 20px; padding: 36px 32px; height: 100%; }
.diff-card.bad  { background: var(--bg-card); border: 1px solid rgba(248,113,113,.2); }
.diff-card.good {
  background: linear-gradient(160deg, #1A1035 0%, #13131F 100%);
  border: 1px solid var(--brand);
  box-shadow: 0 0 40px rgba(107,70,193,.15);
}
.diff-title { font-size: 1rem; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.diff-badge-bad  { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.3); color: var(--danger); border-radius: 8px; padding: 6px 10px; font-size: .9rem; }
.diff-badge-good { background: rgba(107,70,193,.2); border: 1px solid var(--brand); color: #a78bfa; border-radius: 8px; padding: 6px 10px; font-size: .9rem; }
.diff-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.diff-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; line-height: 1.5; }
.diff-list li .ico-bad  { color: var(--danger); flex-shrink: 0; margin-top: 1px; }
.diff-list li .ico-good { color: var(--success); flex-shrink: 0; margin-top: 1px; }

/* ══ PRICING ══════════════════════════════════════════════════ */
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px; height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pricing-card:hover {
  border-color: var(--brand); transform: translateY(-3px);
  box-shadow: 0 0 20px var(--brand-glow);
}
.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 30px var(--brand-glow);
  background: linear-gradient(160deg, #1A1035 0%, var(--bg-card) 100%);
}
.pricing-card.custom {
  background: linear-gradient(160deg, #0D0826 0%, var(--bg-card) 100%);
  border-color: rgba(79,70,229,.5);
}
.badge-popular {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff; border-radius: 99px; padding: 4px 14px; font-size: .75rem; font-weight: 700;
}
.price-setup { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
.price-setup span { font-size: .88rem; font-weight: 500; color: var(--muted); }
.price-monthly { font-size: .92rem; color: var(--muted); margin-top: 6px; }
.price-monthly strong { color: var(--text); }
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .88rem; color: var(--muted); }
.feature-list li i { color: var(--success); flex-shrink: 0; font-size: .95rem; margin-top: 2px; }
.btn-pricing {
  display: block; width: 100%; text-align: center; padding: 13px;
  border-radius: 8px; font-weight: 700; font-size: .9rem; font-family: inherit;
  border: 1px solid var(--brand); color: #a78bfa;
  transition: background .15s, color .15s, transform .1s;
}
.btn-pricing:hover { background: var(--brand); color: #fff; }
.pricing-card.featured .btn-pricing {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff; border: none;
}
.pricing-card.featured .btn-pricing:hover { opacity: .9; }
.btn-pricing-custom {
  display: block; width: 100%; text-align: center; padding: 13px;
  border-radius: 8px; font-weight: 700; font-size: .9rem; font-family: inherit;
  background: rgba(255,255,255,.07); color: var(--text); border: 1px solid rgba(255,255,255,.15);
  transition: background .15s;
}
.btn-pricing-custom:hover { background: rgba(255,255,255,.12); color: var(--text); }

/* ══ NICHE CARDS ══════════════════════════════════════════════ */
.niche-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px; height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.niche-card:hover {
  border-color: var(--brand); transform: translateY(-3px);
  box-shadow: 0 0 20px var(--brand-glow);
}
.niche-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.niche-icon.immo   { background: rgba(107,70,193,.15); }
.niche-icon.compta { background: rgba(74,222,128,.1); }
.niche-icon.resto  { background: rgba(251,146,60,.1); }
.niche-tag { display: inline-block; border-radius: 99px; padding: 3px 12px; font-size: .75rem; font-weight: 600; margin-bottom: 8px; }
.niche-tag.immo   { background: rgba(107,70,193,.15); color: #a78bfa; border: 1px solid rgba(107,70,193,.3); }
.niche-tag.compta { background: rgba(74,222,128,.1);  color: #4ade80; border: 1px solid rgba(74,222,128,.3); }
.niche-tag.resto  { background: rgba(251,146,60,.1);  color: #fb923c; border: 1px solid rgba(251,146,60,.3); }
.niche-card p, .niche-card li { color: var(--muted); }
.niche-demo-link { display: inline-flex; align-items: center; gap: 4px; font-size: .83rem; color: #a78bfa; font-weight: 600; text-decoration: none; transition: gap .2s; }
.niche-demo-link:hover { gap: 8px; color: #c4b5fd; }
.niche-demo-link .arrow { transition: transform .2s; display: inline-block; }
.niche-demo-link:hover .arrow { transform: translateX(3px); }
.niche-autre {
  text-align: center; margin-top: 32px; padding: 20px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; color: var(--muted); font-size: .92rem;
}
.niche-autre a { color: #a78bfa; font-weight: 600; }
.niche-autre a:hover { color: var(--text); }

/* ══ TÉMOIGNAGES ══════════════════════════════════════════════ */
.temoignage-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px; height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.temoignage-card:hover {
  border-color: var(--brand); transform: translateY(-3px);
  box-shadow: 0 0 20px var(--brand-glow);
}
.temoignage-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.temoignage-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 1px; margin: 14px 0 10px; }
.temoignage-texte { color: var(--muted); font-size: .9rem; line-height: 1.7; font-style: italic; }
.temoignage-badge {
  display: inline-block; margin-top: 16px; font-size: .72rem; color: #6b7280;
  border: 1px solid var(--border); border-radius: 99px; padding: 3px 10px;
}
