
:root{
  --primary:#0b5cff;
  --primary-2:#0047d9;
  --dark:#061426;
  --dark-2:#0b1f3a;
  --muted:#64748b;
  --soft:#f5f8ff;
  --card:#ffffff;
  --border:#e5eaf3;
  --green:#10b981;
}
*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:#102033;
  background:#fff;
}
a{text-decoration:none}
.navbar{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(226,232,240,.9);
}
.navbar-brand{
  font-size:1.65rem;
  font-weight:900;
  letter-spacing:-.05em;
  color:#07111f!important;
}
.brand-dot{color:var(--primary)}
.nav-link{
  font-weight:650;
  color:#334155!important;
}
.nav-link:hover{color:var(--primary)!important}
.btn{
  border-radius:14px;
  font-weight:800;
  padding:.85rem 1.15rem;
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),#2f7dff);
  border:0;
  box-shadow:0 14px 28px rgba(11,92,255,.25);
}
.btn-primary:hover{background:linear-gradient(135deg,var(--primary-2),var(--primary))}
.btn-outline-primary{
  border-color:#b7ccff;
  color:var(--primary);
  background:#fff;
}
.hero{
  position:relative;
  overflow:hidden;
  padding:118px 0 90px;
  background:
    radial-gradient(circle at 18% 10%, rgba(11,92,255,.18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(16,185,129,.12), transparent 28%),
    linear-gradient(180deg,#fff 0%,#f5f8ff 100%);
}
.hero:after{
  content:"";
  position:absolute;
  right:-130px;
  top:100px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(11,92,255,.12),rgba(16,185,129,.09));
  filter:blur(10px);
}
.hero .container{position:relative;z-index:2}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  background:#eaf1ff;
  border:1px solid #cfe0ff;
  color:#0b5cff;
  padding:.45rem .78rem;
  border-radius:999px;
  font-weight:850;
  font-size:.88rem;
}
.hero h1{
  margin-top:1.25rem;
  font-weight:950;
  letter-spacing:-.075em;
  line-height:1.01;
  font-size:clamp(2.45rem,5.3vw,5.05rem);
}
.hero p{
  color:var(--muted);
  font-size:1.15rem;
  line-height:1.75;
}
.hero-panel{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(226,232,240,.9);
  border-radius:30px;
  padding:24px;
  box-shadow:0 30px 80px rgba(15,23,42,.12);
  backdrop-filter:blur(18px);
}
.dashboard-mock{
  background:linear-gradient(180deg,#081a31,#0d2b52);
  color:#fff;
  border-radius:24px;
  padding:22px;
  overflow:hidden;
}
.mock-top{
  display:flex;
  gap:8px;
  margin-bottom:22px;
}
.mock-dot{width:10px;height:10px;border-radius:50%;background:#94a3b8}
.mock-card{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  padding:16px;
  margin-bottom:14px;
}
.mock-line{
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
  margin:10px 0;
}
.mock-line.w70{width:70%}
.mock-line.w45{width:45%}
.mock-chart{
  height:120px;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(11,92,255,.9),rgba(16,185,129,.75));
  position:relative;
}
.mock-chart:before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
}
.trust-row{
  margin-top:40px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
  box-shadow:0 16px 45px rgba(15,23,42,.06);
}
.trust-item strong{display:block;font-size:1.05rem}
.trust-item span{color:var(--muted);font-size:.9rem}
.section{padding:86px 0}
.section-soft{background:var(--soft)}
.section-dark{
  background:
    radial-gradient(circle at 10% 10%,rgba(11,92,255,.2),transparent 28%),
    linear-gradient(135deg,#061426,#0b1f3a);
  color:#fff;
}
.section-title{
  font-size:clamp(2rem,3.2vw,3.2rem);
  font-weight:950;
  letter-spacing:-.065em;
}
.section-subtitle{
  color:var(--muted);
  max-width:760px;
  line-height:1.75;
  font-size:1.05rem;
}
.section-dark .section-subtitle,.section-dark p{color:#cbd5e1}
.card-cc{
  height:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px;
  box-shadow:0 16px 44px rgba(15,23,42,.06);
  transition:.22s ease;
}
.card-cc:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 70px rgba(15,23,42,.11);
}
.icon-box{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:1.55rem;
  color:var(--primary);
  background:#eaf1ff;
  margin-bottom:20px;
}
.feature-list{list-style:none;margin:0;padding:0}
.feature-list li{
  margin:.72rem 0;
  color:#334155;
  line-height:1.55;
}
.feature-list li:before{
  content:"✓";
  margin-right:.6rem;
  color:var(--green);
  font-weight:950;
}
.section-dark .feature-list li{color:#e2e8f0}
.process-step{
  position:relative;
  padding:28px;
  border-radius:26px;
  border:1px solid var(--border);
  background:#fff;
  height:100%;
}
.step-no{
  width:44px;height:44px;border-radius:15px;
  display:grid;place-items:center;
  background:#eaf1ff;
  color:var(--primary);
  font-weight:950;
  margin-bottom:18px;
}
.badge-soft{
  display:inline-block;
  background:#eff6ff;
  color:#0b5cff;
  border:1px solid #cfe0ff;
  border-radius:999px;
  padding:.38rem .68rem;
  font-size:.82rem;
  font-weight:800;
}
.case-tag{
  display:inline-block;
  background:#f1f5f9;
  color:#334155;
  border-radius:999px;
  padding:.36rem .66rem;
  font-size:.82rem;
  font-weight:650;
  margin:.18rem;
}
.page-hero{
  padding:105px 0 64px;
  background:
    radial-gradient(circle at 18% 12%, rgba(11,92,255,.14), transparent 32%),
    linear-gradient(180deg,#fff,#f5f8ff);
}
.page-hero h1{
  font-weight:950;
  letter-spacing:-.06em;
  font-size:clamp(2.3rem,4vw,4rem);
}
.form-control,.form-select{
  border:1px solid #dbe3ef;
  border-radius:16px;
  padding:.9rem 1rem;
}
.form-control:focus,.form-select:focus{
  box-shadow:0 0 0 .25rem rgba(11,92,255,.16);
  border-color:#8bb4ff;
}
.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}
.footer{
  background:#04101f;
  color:#cbd5e1;
  padding:58px 0 24px;
}
.footer h5,.footer h6{color:#fff;font-weight:850}
.footer a{color:#cbd5e1}
.footer a:hover{color:#fff}
.social{
  width:42px;height:42px;border-radius:14px;
  background:rgba(255,255,255,.08);
  display:inline-grid;place-items:center;
  color:#fff;margin-right:8px;
}
@media(max-width:767px){
  .hero{padding:92px 0 60px}
  .section{padding:60px 0}
}
