/* assets/css/styles.css */
/* Minimal, professional, reassuring layout for Santé-Safi */
:root{
  --bg:#0b0f17;
  --panel:#0f1624;
  --card:#111b2c;
  --text:#e8eefc;
  --muted:#aeb9d4;
  --border:rgba(255,255,255,.10);
  --accent:#7aa2ff;
  --ok:#7dffb2;
  --whatsapp:#25d366;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Arial}
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
.wrap{max-width:1040px;margin:0 auto;padding:22px 16px 64px}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0 16px;
}
.brand{
  font-weight:800;
  letter-spacing:.2px;
}
.lang{
  display:flex;
  gap:8px;
  align-items:center;
  color:var(--muted);
  font-size:13px;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.02);
}
.dot{color:var(--ok);font-weight:900}
.hero{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
}
.hero img{
  width:100%;
  height:auto;
  display:block;
}
.section{
  margin-top:14px;
  padding:18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}
.grid{
  display:grid;
  gap:14px;
  margin-top:14px;
}
@media(min-width:900px){
  .grid{grid-template-columns:1.2fr .8fr}
}
h1,h2{margin:0 0 10px}
h2{font-size:18px}
p{margin:0 0 10px;color:var(--muted)}
ul,ol{margin:10px 0 0;padding-left:18px;color:var(--muted)}
.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  font-weight:700;
}
.btn.primary{
  background:rgba(122,162,255,.18);
}
.btn.whatsapp{
  background:var(--whatsapp);
  color:#08110f;
  border-color:rgba(0,0,0,.1);
}
.small{font-size:13px;color:var(--muted)}
.warn{
  border-left:3px solid rgba(255,107,107,.75);
  padding-left:12px;
  color:var(--muted);
}
.footer{
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
