/* From Human – marketing.css (v2 ) */

/* Thème */
:root{
  --bg:#0f172a;           /* slate-900 */
  --panel:#111827ee;      /* gray-900 */
  --text:#e5e7eb;         /* gray-200 */
  --muted:#94a3b8;        /* slate-400 */
  --brand:#22c55e;        /* green-500 */
  --brand-2:#a78bfa;      /* violet-400 */
  --danger:#ef4444;
  --card:#0b1224;
  --ring:#334155;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
}

/* liens par défaut (les boutons sont corrigés plus bas) */
a{ color:inherit; text-decoration:none }

/* conteneurs & navigation */
.container{ max-width:1100px; margin:0 auto; padding:24px }
.nav{ display:flex; align-items:center; justify-content:space-between; padding:8px 0 }
.logo{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px }
.logo-mark{
  width:28px; height:28px; border-radius:12px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  display:grid; place-items:center; color:#0a0a0a; font-weight:800;
}

/* hero */
.hero{
  display:grid; grid-template-columns:1.2fr 1fr;
  gap:28px; align-items:center; padding:40px 0;
}
.hero h1{ font-size:42px; line-height:1.1; margin:0 0 16px }
.hero p{ color:var(--muted); font-size:18px; margin:0 0 22px }
.hero .panel{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border:1px solid var(--ring); border-radius:16px; padding:18px;
}

/* badges, cartes, grilles */
.badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.35);
  color:#bbf7d0; padding:6px 10px; border-radius:999px;
  font-size:13px; font-weight:600;
}

.grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px }

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--ring); border-radius:16px; padding:18px;
}

.card h3{ margin:0 0 8px; font-size:18px }
.card p{ margin:0; color:var(--muted) }

/* bloc code d’exemple dans la panel (remplace le inline) */
.panel .card pre{
  white-space:pre-wrap;
  background:#0a0f1f;
  border:1px solid #1f2840;
  padding:12px; border-radius:12px; overflow:auto; color:#cbd5e1;
}

/* sections, étapes, prix */
.how{ margin:40px 0 }
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px }
.step{
  background:linear-gradient(180deg, rgba(167,139,250,.08), rgba(255,255,255,.02));
  border:1px dashed rgba(167,139,250,.45);
  border-radius:16px; padding:18px;
}

.prices{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:16px 0 }
.price{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--ring);
  border-radius:16px; padding:22px;
  display:flex; flex-direction:column; gap:10px;
}
.price .amt{ font-size:28px; font-weight:800 }

/* texte utilitaires */
.muted{ color:var(--muted) }
.legal{ font-size:13px; color:#9aa7bd; line-height:1.6 }

/* footer & kudos */
.footer{
  display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:space-between;
  border-top:1px solid var(--ring); margin-top:40px; padding:22px 0;
}
.kudos{ display:flex; gap:8px; flex-wrap:wrap }
.kudos span{
  background:#0c1326; border:1px solid var(--ring);
  padding:6px 10px; border-radius:999px; font-size:12px; color:#aab4c9;
}

/* Boutons */
.btn, .cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:12px; line-height:1;
  font-weight:700; text-decoration:none; cursor:pointer; user-select:none;
  transition: transform .08s ease, filter .15s ease, box-shadow .2s ease;
}
.btn{
  background:#1f2937; border:1px solid #334155; color:#e5e7eb;
}
.btn:hover{ filter:brightness(1.08) }
.btn:active{ transform:translateY(0.5px) }
.cta{
  background:linear-gradient(135deg,var(--brand),#16a34a);
  color:#06130a; border:0; box-shadow:0 6px 24px rgba(34,197,94,.25);
}
.cta:hover{ transform:translateY(-1px) }
.cta:active{ transform:translateY(0) }
.cta.alt{
  background:linear-gradient(135deg,var(--brand-2),#7c3aed);
  color:#0b0613; border:0; box-shadow:0 6px 24px rgba(167,139,250,.25);
}

/* Responsive */
@media (max-width:980px){
  .hero{ grid-template-columns:1fr }
  .grid, .steps, .prices{ grid-template-columns:1fr }
}
.field {
    display:block;
    margin-bottom:12px;
}
.field span {
    display:block;
    margin-bottom:4px;
    font-size:14px;
    color:#e2e8f0;
}
.field input,
.field textarea {
    width:100%;
    padding:10px;
    border-radius:8px;
    border:1px solid #1f2937;
    background:#020617;
    color:#e5e7eb;
}
.alert {
    padding:10px 12px;
    border-radius:8px;
    margin-bottom:10px;
    font-size:14px;
}
.alert-error {
    background:#450a0a;
    border:1px solid #b91c1c;
    color:#fecaca;
}
.alert-success {
    background:#022c22;
    border:1px solid #16a34a;
    color:#bbf7d0;
}