:root {
  --cbp-primary: #f43f5e;
  --cbp-ink: #101221;
  --cbp-lime: #a3e635;
  --cbp-sky: #38bdf8;
  --cbp-bg: #fff7f9;
  --cbp-card: #0ea5e9;
}
html,
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--cbp-ink);
  background: #fff;
}

h1,
h2,
.navbar-brand,
.hero-title {
  font-family: "Playfair Display", "Inter", "Segoe UI", Roboto, Arial,
    sans-serif;
  letter-spacing: -0.01em;
}

.bg-cbp-gradient {
  background: linear-gradient(135deg, var(--cbp-primary), var(--cbp-sky));
}
.bg-hero-cbp {
  background: radial-gradient(
      900px 420px at -10% -10%,
      rgba(244, 63, 94, 0.35),
      transparent
    ),
    radial-gradient(
      900px 420px at 110% 120%,
      rgba(56, 189, 248, 0.32),
      transparent
    ),
    linear-gradient(135deg, var(--cbp-primary), var(--cbp-sky));
}
.bg-cbp-soft {
  background: linear-gradient(180deg, #fff, var(--cbp-bg));
}

.card {
  border-radius: 1rem;
}
img.rounded-4 {
  border-radius: 1rem !important;
}
.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16, 18, 33, 0.06);
  color: var(--cbp-primary);
  font-size: 1.25rem;
}

.timeline {
  border-left: 2px dashed rgba(16, 18, 33, 0.16);
  padding-left: 1rem;
}
.timeline li {
  position: relative;
  margin-bottom: 1rem;
}
.timeline-dot {
  position: absolute;
  left: -10px;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cbp-lime);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.25);
}

.faq-item summary {
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(16, 18, 33, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] summary {
  box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.25);
  border-color: var(--cbp-sky);
}
.faq-item > div {
  padding: 0.75rem 1rem 0.5rem 1rem;
  color: #475569;
}

.btn-primary {
  --bs-btn-bg: var(--cbp-primary);
  --bs-btn-border-color: var(--cbp-primary);
  --bs-btn-hover-bg: #e03453;
  --bs-btn-hover-border-color: #e03453;
}
.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
}

.visually-hidden-focusable:active,
.visually-hidden-focusable:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
}
