/* MedSec Consulting - static site */
:root{
  --bg:#050814;
  --bg2:#081028;
  --surface:rgba(255,255,255,.06);
  --surface2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --primary:#29c5f6;
  --primary2:#00d4ff;
  --gold:#d6b26a;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:20px;
  --max:1100px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(41,197,246,.20), transparent 60%),
    radial-gradient(700px 400px at 85% 25%, rgba(0,212,255,.14), transparent 55%),
    radial-gradient(900px 600px at 50% 120%, rgba(214,178,106,.14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #02040e 65%, #02040e 100%);
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(5,8,20,.65);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.logo{
  width:42px; height:42px; border-radius:12px;
  background: radial-gradient(circle at 30% 30%, rgba(41,197,246,.55), rgba(41,197,246,.15) 55%, rgba(255,255,255,.05) 100%);
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.logo svg{width:22px; height:22px}
.brand-title{display:flex; flex-direction:column; line-height:1.1}
.brand-title b{font-size:14px; letter-spacing:.4px}
.brand-title span{font-size:12px; color:var(--muted)}
.nav{display:flex; align-items:center; gap:16px; flex-wrap:wrap}
.nav a{
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  transition:.18s ease;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.nav a.active{color:var(--text); background:rgba(41,197,246,.12); border:1px solid rgba(41,197,246,.25)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 18px;
  font-weight:650;
  font-size:13px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}
.btn.primary{
  border:1px solid rgba(41,197,246,.30);
  background: linear-gradient(90deg, rgba(41,197,246,.22), rgba(0,212,255,.10));
}
.hero{padding:56px 0 30px}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(41,197,246,.28);
  background: rgba(41,197,246,.10);
  font-size:12px;
  color:rgba(255,255,255,.88);
}
.grid-hero{display:grid; grid-template-columns: 1.2fr .9fr; gap:26px; align-items:start}
h1{font-size:46px; line-height:1.05; margin:14px 0 10px; letter-spacing:-.8px}
.lead{color:var(--muted); font-size:15px; line-height:1.7; max-width:60ch}
.kpis{margin-top:14px; color:rgba(255,255,255,.78); font-size:12px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px 18px}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.badge{
  padding:8px 10px;
  font-size:12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
  color:rgba(255,255,255,.84);
}
.section{padding:30px 0}
.section h2{font-size:22px; margin:0 0 10px}
.section p{margin:0; color:var(--muted); line-height:1.7}
.cards{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:16px}
.service{padding:16px; min-height:190px}
.service h3{margin:0 0 8px; font-size:15px}
.service ul{margin:0; padding-left:18px; color:rgba(255,255,255,.80); font-size:13px; line-height:1.6}
.split{display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:16px}
.footer{padding:28px 0 40px; border-top:1px solid rgba(255,255,255,.08); margin-top:24px}
.footer .cols{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.small{font-size:12px; color:rgba(255,255,255,.70); line-height:1.6}
hr.sep{border:0; height:1px; background:rgba(255,255,255,.08); margin:18px 0}
.notice{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(214,178,106,.25);
  background: rgba(214,178,106,.08);
  color:rgba(255,255,255,.86);
  font-size:12px;
  line-height:1.6;
}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.table th,.table td{padding:12px 12px; text-align:left; font-size:13px}
.table th{color:rgba(255,255,255,.78); border-bottom:1px solid rgba(255,255,255,.10)}
.table tr+tr td{border-top:1px solid rgba(255,255,255,.08)}
@media (max-width: 980px){
  .grid-hero{grid-template-columns:1fr}
  h1{font-size:38px}
  .cards{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 540px){
  .cards{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  h1{font-size:34px}
  .nav{display:none}
}
