:root {
  --brand-primary: #0057b8; /* Swiss-Blue */
  --brand-accent: #e4002b; /* Swiss-Red */
  --brand-ink: #111827; /* Dark */
  --brand-soft: #f3f4f6; /* Soft Gray */
}

html,
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--brand-ink);
}

.hero-gradient {
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
}

.fw-extrabold {
  font-weight: 800;
}

.navbar-brand {
  letter-spacing: 0.3px;
}
.nav-link.active {
  color: var(--brand-primary) !important;
  font-weight: 600;
}
.nav-link:hover {
  color: var(--brand-primary);
}

.card {
  border-radius: 1rem;
}
.card .bi {
  vertical-align: -2px;
}

.pricing-card.highlight {
  outline: 3px solid var(--brand-accent);
}

.step-badge {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
}

.icon-list {
  padding-left: 0;
}
.icon-list li {
  list-style: none;
  margin-bottom: 0.5rem;
}
.icon-list i {
  color: var(--brand-primary);
  margin-right: 0.5rem;
}

.timeline li {
  margin-bottom: 0.5rem;
}
.timeline li span {
  display: inline-block;
  min-width: 72px;
  font-weight: 600;
  color: var(--brand-primary);
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.btn-primary {
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-bg: #044c9a;
  --bs-btn-hover-border-color: #044c9a;
}
.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.15);
}
a {
  text-underline-offset: 2px;
}

.breadcrumb a {
  text-decoration: none;
}
