:root{
  --bg-soft: #f7f8fb;
  --text-soft: #5f6b7a;
  --brand: #2f6fed;
  --brand-2: #2459bf;
  --ring: rgba(47,111,237,.18);
  --card: #ffffff;
  --border: rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
}

.site-topbar{ background: rgba(255,255,255,.85); backdrop-filter: blur(10px); }
.brand-name{ font-weight: 700; letter-spacing: -0.02em; color: #0f172a; }
.brand-mark{
  width: 14px; height: 14px; border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), #7aa6ff);
  box-shadow: 0 10px 30px rgba(47,111,237,.25);
}

.hero{
  position: relative;
  background: radial-gradient(900px 500px at 15% 10%, rgba(47,111,237,.12), transparent 60%),
              radial-gradient(900px 500px at 85% 0%, rgba(110,231,183,.10), transparent 55%),
              linear-gradient(to bottom, #ffffff, #ffffff);
}

.py-lg-6{ padding-top: 4.5rem!important; padding-bottom: 4.5rem!important; }

.text-bg-soft{
  background: rgba(47,111,237,.10)!important;
  color: #1e3a8a!important;
}

.icon-circle{
  width: 22px; height: 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 6px 16px rgba(15,23,42,.06);
}

.hero-card{
  border: 1px solid var(--border);
  border-radius: 18px;
}

.illus{
  width: 44px; height: 44px; border-radius: 14px;
  background: radial-gradient(20px 20px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0)),
              linear-gradient(135deg, rgba(47,111,237,.95), rgba(122,166,255,.95));
  box-shadow: 0 18px 40px rgba(47,111,237,.25);
}

.mini-step{
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.mini-step__n{
  width: 28px; height: 28px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(47,111,237,.12);
  color: #1e3a8a;
  font-weight: 700;
  flex: 0 0 auto;
}

.bg-soft{ background: var(--bg-soft); }

.feature-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.feature-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,23,42,.10)!important;
}

.feature-icon{
  width: 44px; height: 44px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(47,111,237,.10);
  border: 1px solid var(--border);
  font-size: 20px;
}

.info-row{
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.info-row__icon{
  width: 38px; height: 38px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(110,231,183,.14);
  border: 1px solid var(--border);
}

.callout{
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}

.contact-card{
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.btn-primary{
  background: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover{ background: var(--brand-2); border-color: var(--brand-2); }
.btn-outline-secondary{ border-color: rgba(15,23,42,.18); }

.form-control:focus, .form-select:focus, .btn:focus{
  box-shadow: 0 0 0 .25rem var(--ring)!important;
}

a{ color: var(--brand); }
a:hover{ color: var(--brand-2); }

@media (max-width: 991.98px){
  .hero-card{ border-radius: 16px; }
}

