:root{
  --wk:#6a0dad;
  --wk-light:#8b5cf6;
}

body{font-family:'Plus Jakarta Sans',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;}

/* Subtle background blobs */
.hero-blob{
  filter: blur(110px);
  opacity: 0.13;
  position: absolute;
  border-radius: 9999px;
  pointer-events:none;
  z-index:-1;
}

.gradient-text{
  background: linear-gradient(135deg,var(--wk) 0%, var(--wk-light) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

/* Header glassy state */
.header-glass{
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(106,13,173,0.10);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
}

.logo-dot{
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--wk);
  display:flex;
  align-items:center;
  justify-content:center;
}

.nav-link{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #475569;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav-link:hover{color: var(--wk);}

.dropdown-panel{
  position:absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
  width: 560px;
  padding: 16px;
  background:#fff;
  border:1px solid #f1f5f9;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all .18s ease;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.group:hover .dropdown-panel{opacity:1; visibility:visible; transform: translateX(-50%) translateY(0);}

.dropdown-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  transition: background .15s ease;
}
.dropdown-item:hover{background:#f8fafc;}

.dropdown-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--wk);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(106, 13, 173, 0.26);
  transition: transform .15s ease, background .15s ease;
}
.btn-primary:hover{background:#4c1d95; transform: translateY(-1px);}
.btn-primary:active{transform: translateY(0);}

.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform .15s ease, border-color .15s ease;
}
.btn-secondary:hover{transform: translateY(-1px); border-color: rgba(106,13,173,.3);}

.stat-label{
  margin-top: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #94a3b8;
}

.step-card{
  border-radius: 36px;
  background:#fff;
  border:1px solid #eef2f7;
  padding: 38px 28px;
  text-align:center;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
}

.step-badge{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--wk);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 16px 40px rgba(106, 13, 173, 0.22);
}

.step-title{
  font-weight: 1000;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.step-desc{
  margin-top: 10px;
  color:#64748b;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.55;
}

.solution-kicker{
  font-weight: 800;
  color: #475569;
}

.solution-title{
  margin-top: 10px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.solution-desc{
  margin-top: 12px;
  color:#475569;
  font-weight: 600;
  line-height: 1.7;
}

.solution-list{
  margin-top: 18px;
  display:grid;
  gap: 10px;
  color:#0f172a;
  font-weight: 800;
}

.solution-media{
  position: relative;
}

.solution-img{
  width:100%;
  border-radius: 44px;
  box-shadow: 0 25px 70px rgba(15,23,42,0.10);
}

.tag{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid #e2e8f0;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  color:#475569;
}

.footer-title{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:#0f172a;
}

.footer-link{
  display:block;
  font-weight: 800;
  color:#64748b;
}
.footer-link:hover{color: var(--wk);}

/* Mobile menu */
.mobile-link{
  width:100%;
  text-align:left;
  font-weight: 900;
  color:#0f172a;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 60;
}
.modal.is-open{display:flex;}

.modal-overlay{
  position:absolute;
  inset:0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(10px);
}

.modal-card{
  position:relative;
  width: min(680px, 100%);
  border-radius: 42px;
  background:#fff;
  padding: 34px;
  box-shadow: 0 40px 120px rgba(2,6,23,0.35);
  transform: translateY(14px);
  opacity: 0;
  animation: modalIn .22s ease-out forwards;
}

@keyframes modalIn{
  to {transform: translateY(0); opacity:1;}
}

.modal-x{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:#fff;
  border: 1px solid #e2e8f0;
  color:#64748b;
  font-weight: 900;
}

.modal-input{
  width:100%;
  padding: 14px 16px;
  border-radius: 18px;
  background:#f8fafc;
  border: 1px solid #e2e8f0;
  font-weight: 800;
  outline: none;
}
.modal-input:focus{border-color: rgba(106,13,173,0.55); background:#fff;}

/* FAQ */
.faq-item{
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background:#fff;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
}

.faq-q{
  width:100%;
  padding: 18px 18px;
  text-align:left;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.faq-icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-weight: 1000;
  color:#0f172a;
}

.faq-a{
  display:none;
  padding: 0 18px 18px;
  color:#475569;
  font-weight: 600;
  line-height: 1.7;
}

.faq-item.is-open .faq-a{display:block;}
.faq-item.is-open .faq-icon{background: rgba(106,13,173,0.10); border-color: rgba(106,13,173,0.28); color: var(--wk);}

/* Scrollbar */
::-webkit-scrollbar{width: 10px;}
::-webkit-scrollbar-track{background:#f8fafc;}
::-webkit-scrollbar-thumb{background:#cbd5e1; border-radius: 999px;}
::-webkit-scrollbar-thumb:hover{background: var(--wk);}

::selection{background: var(--wk); color:#fff;}
