:root {
  --cb-color-primary: #026cdf;
  --cb-color-trust: #00b67a;
  --cb-color-dark: #111111;
  --cb-color-border: #ebebeb;
  --cb-color-muted: #666666;
  --cb-radius: 12px;
  --cb-radius-pill: 9999px;
}

.cb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--cb-radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease;
}

.cb-btn--primary {
  background: var(--cb-color-primary);
  color: #fff;
}

.cb-btn--primary:hover {
  transform: translateY(-1px);
  color: #fff;
}

.cb-svg-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.cb-svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cb-home-section {
  padding: 48px 0;
}

.cb-home-section + .cb-home-section {
  border-top: 1px solid var(--cb-color-border);
}

.cb-section-title {
  text-align: center;
  margin-bottom: 24px;
}

.cb-section-title h2 {
  margin: 0;
}
