:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:rgba(15,23,42,.10);
  --shadow:0 10px 28px rgba(2,6,23,.08);
  --shadow2:0 6px 16px rgba(2,6,23,.06);
  --accent:#2563eb;
  --accentHover:#1d4ed8;
  --radius:18px;
}

.vs{
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vs-container{
    margin: auto 20px;
}

.vs-hero {
    padding-top: 25px;
}

.vs-hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:22px;
  align-items:start;
}

/* Left */
.vs-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  background: var(--card);
  border-radius:999px;
  box-shadow: var(--shadow2);
  color: var(--muted);
  font-size:.92rem;
}
.vs-pill i{ color: var(--accent); }

.vs-h1{
  margin:16px 0 10px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height:1.12;
  letter-spacing:-0.02em;
}
.vs-h1 span{ color: var(--accent); }

.vs-lead{
  margin:0 0 18px;
  color: var(--muted);
  line-height:1.75;
  font-size:1.02rem;
  max-width:62ch;
}

.vs-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }

.vs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration:none;
  font-weight:800;
  box-shadow: var(--shadow2);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.vs-btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.vs-btn:active{ transform: translateY(0); }

.vs-btn-primary{
  background: var(--accent);
  border-color: transparent;
  color:#fff;
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
}
.vs-btn-primary:hover{ background: var(--accentHover); }

.vs-btn-ghost{
  background: transparent;
  box-shadow:none;
}

.vs-btn-block{ width:100%; }

.vs-points{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:16px;
  color: var(--muted);
  font-size:.95rem;
}
.vs-points > div{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  background: rgba(255,255,255,.70);
  border:1px solid var(--border);
  border-radius:999px;
}

/* Right card */
.vs-hero-card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.vs-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.vs-card-title{
  font-weight:900;
  font-size:.92rem;
  color: var(--muted);
}
.vs-card-sub{
  font-weight:900;
  font-size:1.1rem;
  margin-top:4px;
}

.vs-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(22,163,74,.25);
  background: rgba(22,163,74,.08);
  color:#14532d;
  font-weight:900;
  font-size:.9rem;
  white-space:nowrap;
}
.vs-status .dot{
  width:9px; height:9px;
  border-radius:50%;
  background:#16a34a;
  box-shadow:0 0 0 3px rgba(22,163,74,.14);
}

.vs-card-body{ display:grid; gap:12px; margin-bottom:20px; }

.vs-kpi{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:12px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:14px;
  background: #fbfcfe;
}
.vs-kpi i{ color: var(--accent); margin-top:2px; }
.vs-kpi b{ display:block; font-weight:900; }
.vs-kpi p{ margin:2px 0 0; color: var(--muted); line-height:1.55; font-size:.95rem; }

.vs-note{
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.vs-note i{ margin-top:2px; color: var(--accent); }

/* Sections */
.vs-section{ padding: 20px 0; }

.vs-head{ max-width: 720px; }
.vs-h2{
  margin:0;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing:-0.01em;
}
.vs-sub{
  margin:8px 0 0;
  color: var(--muted);
  line-height:1.6;
}

.vs-feature-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.vs-feature{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding:16px;
  transition: transform .14s ease, box-shadow .14s ease;
}
.vs-feature:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }

.vs-feature i{ color: var(--accent); font-size: 1.05rem; }
.vs-feature h3{ margin:10px 0 6px; font-size: 1.05rem; }
.vs-feature p{ margin:0; color: var(--muted); line-height:1.6; }

/* Footer CTA */
.vs-cta{ padding-top: 10px; }
.vs-cta-bar{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.vs-cta-bar h3{ margin:0 0 4px; }
.vs-cta-bar p{ margin:0; color: var(--muted); }

/* Responsive */
@media (max-width: 980px){
  .vs-hero-grid{ grid-template-columns: 1fr; }
  .vs-feature-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .vs-actions, .vs-btn{ width:100%; }
  .vs-btn{ justify-content:center; }
  .vs-feature-grid{ grid-template-columns: 1fr; }
  .vs-cta-bar{ flex-direction:column; align-items:flex-start; }
}
