:root{
  --navy:#061b3e;
  --navy2:#0a2e60;
  --text:#0b1d42;
  --muted:#53627e;
  --line:#e8edf6;
  --soft:#f6f8fc;
  --white:#fff;
  --pink:#d94ba6;
  --shadow:0 24px 70px rgba(6,27,62,.10);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 6% 20%, rgba(217,75,166,.13), transparent 28%),
    radial-gradient(circle at 100% 28%, rgba(28,95,175,.10), transparent 28%),
    linear-gradient(180deg,#eef4fb 0%,#ffffff 48%,#f3f7fb 100%);
}
a{color:inherit;text-decoration:none}
.vb-page{
  width:min(1560px, calc(100% - 48px));
  margin:18px auto 34px;
  border:1px solid rgba(6,27,62,.08);
  border-radius:22px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.vb-header{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:22px 50px;
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(6,27,62,.05);
}
.vb-brand{display:flex;align-items:center;gap:15px;min-width:250px}
.vb-brand-icon{
  width:52px;height:52px;border-radius:17px;
  display:grid;place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#ec4c82 0%, #c64fd9 100%);
  box-shadow:0 14px 30px rgba(217,75,166,.24);
}
.vb-brand-icon svg{width:31px;height:31px}
.vb-brand strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  color:var(--navy);
  line-height:1;
}
.vb-brand small{display:block;margin-top:5px;color:#6a7892;font-size:12px;font-weight:600}
.vb-nav{display:flex;align-items:center;justify-content:center;gap:34px;font-size:15px;font-weight:750;color:var(--navy)}
.vb-nav a{white-space:nowrap}.vb-nav a:hover{color:var(--pink)}
.vb-top-actions{display:flex;align-items:center;gap:12px}
.vb-link{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:42px;padding:0 17px;border-radius:11px;
  font-size:14px;font-weight:800;
  border:1px solid rgba(6,27,62,.10);
  background:#fff;
  box-shadow:0 7px 20px rgba(6,27,62,.04);
}
.vb-link-dark{background:var(--navy);color:#fff;border-color:var(--navy)}
.vb-link-soft{background:#f8fafd;color:#a5adbd}
.vb-hero{text-align:center;padding:54px 30px 42px}
.vb-pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 23px;border-radius:999px;
  border:1px solid #9cbde6;
  color:var(--navy2);
  font-weight:800;font-size:14px;
  background:rgba(255,255,255,.72);
}
.vb-hero h1{
  margin:22px auto 20px;
  max-width:920px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(42px,5.1vw,76px);
  line-height:.98;
  letter-spacing:-.055em;
  color:var(--navy);
}
.vb-hero p{
  max-width:850px;margin:0 auto;
  color:#3d4d6b;
  font-size:20px;line-height:1.6;
}
.vb-cards{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:20px;
  padding:18px 44px 28px;
}
.vb-card{
  min-height:380px;
  padding:28px 24px 26px;
  border:1px solid rgba(6,27,62,.09);
  border-radius:22px;
  background:rgba(255,255,255,.86);
  box-shadow:0 14px 36px rgba(6,27,62,.055);
  display:flex;flex-direction:column;align-items:center;text-align:center;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.vb-card:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(6,27,62,.12);border-color:rgba(6,27,62,.16)}
.vb-card-icon{
  width:106px;height:106px;border-radius:28px;
  display:grid;place-items:center;margin-bottom:23px;
}
.vb-card-icon svg{width:56px;height:56px;color:var(--navy)}
.icon-blue{background:linear-gradient(135deg,#e8f2ff,#dceaff)}
.icon-green{background:linear-gradient(135deg,#e9f7ee,#e1f0e6)}
.icon-orange{background:linear-gradient(135deg,#fff3e5,#f9ead7)}
.icon-purple{background:linear-gradient(135deg,#f0edff,#e6e2fb)}
.icon-pink{background:linear-gradient(135deg,#ffece9,#fde1dc)}
.vb-card h2{
  margin:0 0 16px;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-size:26px;line-height:1.03;
}
.vb-card p{
  margin:0 auto 26px;
  color:#42516e;
  font-size:16px;
  line-height:1.48;
  max-width:245px;
  flex:1;
}
.vb-button{
  display:inline-flex;align-items:center;justify-content:center;gap:14px;
  min-height:48px;
  padding:0 23px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--navy),#082a59);
  color:#fff;
  font-weight:850;
  font-size:15px;
  box-shadow:0 11px 24px rgba(6,27,62,.18);
  border:1px solid rgba(255,255,255,.14);
}
.vb-button b{font-size:28px;line-height:0;font-weight:500;margin-top:-2px}
.vb-trust{
  margin:2px 44px 28px;
  padding:28px 38px;
  border-radius:22px;
  border:1px solid rgba(6,27,62,.08);
  background:linear-gradient(180deg,#f5f9fe,#ffffff);
}
.vb-trust h2{
  margin:0 0 22px;
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  color:var(--navy);
}
.vb-trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.vb-trust-item{display:grid;grid-template-columns:78px 1fr;column-gap:18px;align-items:center;color:#3f4e68}
.vb-trust-item span{grid-row:span 2;width:72px;height:72px;border-radius:999px;display:grid;place-items:center;background:#fff;border:1px solid #cfe0f8;font-size:31px}
.vb-trust-item strong{font-size:17px;color:var(--navy);margin-bottom:3px}.vb-trust-item p{margin:0;line-height:1.45;font-size:15px}
.vb-pros{
  margin:0 44px 30px;
  padding:28px;
  display:grid;grid-template-columns:1fr 330px;gap:26px;align-items:center;
  border-radius:22px;
  border:1px solid rgba(6,27,62,.08);
  background:rgba(244,248,253,.9);
}
.vb-section-kicker{display:inline-flex;padding:7px 13px;border-radius:999px;background:#fff;border:1px solid #dbe6f6;color:#5e6d84;font-size:12px;font-weight:850}
.vb-pros h2{font-family:Georgia,"Times New Roman",serif;font-size:29px;line-height:1.05;margin:12px 0 8px;color:var(--navy)}
.vb-pros p{margin:0;color:#51617d;line-height:1.5}.vb-pro-actions{display:grid;gap:10px}.vb-button.wide{width:100%;min-height:40px;font-size:13px}.vb-button.secondary{background:#fff;color:var(--navy);box-shadow:none;border-color:#dbe4f2}
.vb-footer{display:flex;justify-content:center;gap:34px;padding:20px;border-top:1px solid rgba(6,27,62,.06);font-size:14px;font-weight:750;color:#69768e;background:#f7f9fd}
@media (max-width:1200px){.vb-header{padding:20px 28px}.vb-nav{display:none}.vb-cards{grid-template-columns:repeat(2,1fr)}.vb-card:last-child{grid-column:1/-1}.vb-pros{grid-template-columns:1fr}.vb-page{width:calc(100% - 24px)}}
@media (max-width:720px){.vb-page{margin:8px auto;width:calc(100% - 12px);border-radius:18px}.vb-header{align-items:flex-start;flex-direction:column}.vb-top-actions{width:100%;display:grid;grid-template-columns:1fr}.vb-hero{padding:34px 18px}.vb-hero p{font-size:16px}.vb-cards{grid-template-columns:1fr;padding:12px 16px 22px}.vb-card{min-height:auto}.vb-trust,.vb-pros{margin-left:16px;margin-right:16px}.vb-trust-grid{grid-template-columns:1fr}.vb-trust-item{grid-template-columns:62px 1fr}.vb-trust-item span{width:56px;height:56px;font-size:24px}.vb-footer{flex-direction:column;align-items:center;gap:10px}}
