:root {
  --brand: #4f46e5;
  --brand-dark: #3e36c6;
  --brand-soft: #eef0ff;
  --text-main: #0b1221;
  --muted: #5b667a;
  --bg-soft: #f5f7ff;
  --surface: #ffffff;
  --surface-border: rgba(139, 151, 255, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(900px 500px at -5% -5%, rgba(79, 70, 229, 0.14) 0%, rgba(79, 70, 229, 0) 60%),
    radial-gradient(800px 420px at 105% 0%, rgba(15, 185, 205, 0.11) 0%, rgba(15, 185, 205, 0) 60%),
    linear-gradient(180deg, #f8faff 0%, #f4f7ff 42%, #f7f9ff 100%);
  min-height: 100vh;
}

.text-brand,
.link-brand {
  color: var(--brand);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.72rem;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, #3d33de 0%, #08b8ca 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 20px rgba(52, 71, 217, 0.28);
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.02;
  font-family: "Manrope", "Inter", sans-serif;
}

.brand-line {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #111827;
}

.brand-line-accent {
  color: var(--brand);
}

.navbar-brand.brand-lockup:hover .brand-mark {
  transform: translateY(-1px);
}

.navbar-brand.brand-lockup:hover .brand-line {
  color: #0f172a;
}

.navbar-brand.brand-lockup:hover .brand-line-accent {
  color: var(--brand-dark);
}

.brand-lockup-footer .brand-mark {
  width: 2rem;
  height: 2rem;
  font-size: 0.58rem;
}

.site-nav {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.navbar .nav-link {
  color: #243047;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand);
}

.link-brand {
  text-decoration: none;
}

.link-brand:hover {
  text-decoration: underline;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #5e73ff 100%);
  border: 1px solid #4f46e5;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #3e36c6 0%, #5166f5 100%);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-soft {
  color: #253353;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(4px);
}

.btn-soft:hover {
  color: #152039;
  border-color: rgba(79, 70, 229, 0.45);
  background: #ffffff;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero-section::before {
  width: 540px;
  height: 540px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.18) 0%, rgba(79, 70, 229, 0) 70%);
}

.hero-section::after {
  width: 420px;
  height: 420px;
  bottom: -220px;
  left: -120px;
  background: radial-gradient(circle, rgba(15, 185, 205, 0.16) 0%, rgba(15, 185, 205, 0) 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: #2d3b6b;
  border: 1px solid rgba(79, 70, 229, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55cf9f;
}

.hero-card {
  border: 1px solid var(--surface-border);
  border-radius: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 246, 255, 0.94) 100%);
  box-shadow: 0 18px 40px rgba(20, 32, 68, 0.1);
}

.trust-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.33);
  background: rgba(255, 255, 255, 0.76);
  color: #2e3d5f;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metrics-strip {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.metric-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #5b667a;
}

.metric-value {
  font-size: 1rem;
  font-weight: 700;
  color: #182135;
}

.feature-card {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 70, 229, 0.34);
  box-shadow: 0 18px 34px rgba(36, 46, 90, 0.11);
}

.feature-card ul {
  padding-left: 1.1rem;
}

.feature-card-primary {
  border-color: rgba(79, 70, 229, 0.4);
  background:
    linear-gradient(0deg, rgba(245, 247, 255, 0.95), rgba(245, 247, 255, 0.95)),
    rgba(255, 255, 255, 0.95);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #2c3680;
  background: rgba(79, 70, 229, 0.16);
}

.service-tag-muted {
  color: #3f4a63;
  background: rgba(148, 163, 184, 0.2);
}

.about-surface {
  border-radius: 1.3rem;
  background: linear-gradient(145deg, rgba(236, 241, 255, 0.68), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.5rem;
}

.stat-card {
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.contact-card,
.policy-card {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.policy-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.4rem;
  margin-bottom: 0.65rem;
}

.policy-card p,
.policy-card li {
  color: #1e293b;
}

.footer-section {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(246, 248, 255, 0.86);
  backdrop-filter: blur(6px);
}

.footer-link {
  color: #0f172a;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 0.75rem;
  }

  .brand-line {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .about-surface {
    padding: 1.1rem;
  }
}
