:root {
  --primary: #0b56c5;
  --accent: #10b66a;
  --bg: #ffffff;
  --surface: #f5f8fc;
  --ink: #102033;
  --muted: color-mix(in srgb, var(--ink), transparent 36%);
  --hero: url("/dist/images/hero.jpg");
}
.btn {
  border-radius: 1.5em;
}
.btn-primary {
  background-image: linear-gradient(to right, #0954b5 0, #12225c 100%);
  border: none;
  color: white;
}
.hero-bg {
  background-image: linear-gradient(90deg, rgba(3, 13, 35, 0.86), rgba(3, 13, 35, 0.35)), var(--hero);
  background-size: cover;
  background-position: center;
}
.bg-hero {
  background-image: linear-gradient(135deg, rgba(3, 13, 35, 0.18), rgba(3, 13, 35, 0.48)), var(--hero);
}
.bg-chart {
  background:
    repeating-linear-gradient(90deg, transparent 0 3.5rem, rgba(255, 255, 255, 0.08) 3.5625rem 3.625rem),
    linear-gradient(135deg, #0b1730, #06111f);
}

.list-check li {
  position: relative;
  padding-left: 1.25rem;

  &::before {
    content: "✓";
    font-weight: bold;
    position: absolute;
    color: var(--accent);
    left: 0;
  }
}

footer p {
  margin-bottom: 0.75rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.page-item {
  margin: 0;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.875rem;

  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;

  text-decoration: none;
  transition: all 0.2s;
}

.page-link:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.page-item.active .page-link {
  color: #fff;
  background: #12225c;
  border-color: #12225c;
}

.page-item.disabled .page-link {
  color: #9ca3af;
  background: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  pointer-events: none;
}
