:root {
  --brand: #1f6feb; /* primary */
  --brand-2: #0ea5e9; /* accent */
  --ink: #0f172a;
}
body {
  color: var(--ink);
}

/* Hero */
.hero {
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(14, 165, 233, 0.15),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at 90% -10%,
      rgba(31, 111, 235, 0.14),
      transparent 70%
    ),
    linear-gradient(180deg, #ffffff, #f8fbff 45%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero .badge-soft {
  background: rgba(31, 111, 235, 0.1);
  color: #11408a;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-form {
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: 1rem;
  backdrop-filter: blur(4px);
}
.trusted-logos img {
  max-height: 34px;
  opacity: 0.8;
}

/* Steps */
.step {
  border-left: 4px solid var(--brand);
  padding-left: 0.75rem;
}

/* Cards */
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 235, 0.1);
}

/* Footer */
.site-footer {
  background: #0b1220;
  color: #b6c2d9;
}
.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

.form-floating > label {
  color: #475569;
}

.navbar-brand {
  font-size: 1.25rem;
} /* whatever size you want */
.brand-logo {
  height: 1em; /* match current text line-height */
  width: auto; /* keep aspect ratio */
  vertical-align: -0.125em; /* nudge to baseline; adjust as needed */
}

.brand-logo {
  color: var(--brand);
  height: 36px; /* try 40 or 48 if you want it bigger */
  width: auto; /* keeps aspect ratio */
}
