
:root {
  --brand-primary: #5b6cff;
  --brand-dark: #0b1026;
}
body {
  scroll-behavior: smooth;
}
.navbar .btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.hero-section {
  background: radial-gradient(1200px 600px at 10% -10%, rgba(91,108,255,0.15), transparent),
              radial-gradient(1000px 500px at 90% -20%, rgba(91,108,255,0.12), transparent);
  padding-top: 104px;
}
.grad-text {
  background: linear-gradient(90deg, #5b6cff, #7f53ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-card, .feature-card, .code-card, .security-card, .contact-card, .price-card {
  border: 1px solid rgba(13, 27, 62, 0.06);
}
.icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(91,108,255,0.1);
  color: #3c4af7;
  border-radius: 10px;
  font-size: 1.25rem;
}
.brand-mark { color: var(--brand-primary); }
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.how-steps { counter-reset: step; list-style: none; padding-left: 0; }
.how-steps li { position: relative; padding-left: 48px; margin-bottom: 14px; }
.how-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  background: #eef0ff; color: #3c4af7; font-weight: 700;
}
.int-logo {
  border: 1px solid #e6e9f5;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  font-weight: 600;
  color: #5f6b8a;
}
.int-logo img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: block;
  object-fit: contain;
}
.int-logo span { font-size: 0.95rem; }
/* Simple badges used as lightweight logos next to brand names */
.int-logo .logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef0ff;
  color: #3c4af7;
  font-weight: 700;
  font-size: 0.85rem;
}
footer a { text-decoration: none; }
