.ccb-header-banner {
  --ccb-dark: var(--navy-950, #08090d);
  --ccb-deep: var(--navy-900, #111827);
  --ccb-panel: var(--navy-800, #1a2035);
  --ccb-blue: var(--b500, #3b82f6);
  --ccb-blue-dark: var(--b600, #2563eb);
  --ccb-gold: var(--a500, #f59e0b);
  --ccb-gold-hover: var(--a400, #fbbf24);
  --ccb-text: var(--tx, #f1f5f9);
  --ccb-muted: var(--txm, #94a3b8);
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(22px, 3.4vw, 42px) 18px;
  background:
    radial-gradient(circle at 82% 38%, rgba(59, 130, 246, 0.16), transparent 25%),
    linear-gradient(120deg, rgba(8, 9, 13, 0.78) 0%, rgba(17, 24, 39, 0.68) 44%, rgba(26, 32, 53, 0.58) 100%);
  background-position: center;
  background-size: cover;
  color: var(--ccb-text);
  font-family: var(--font-ui, "Plus Jakarta Sans", system-ui, sans-serif);
}

.ccb-header-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.72) 0%, rgba(17, 24, 39, 0.38) 46%, rgba(26, 32, 53, 0.18) 100%),
    radial-gradient(circle at 78% 42%, transparent 0 28%, rgba(8, 9, 13, 0.22) 62%);
  pointer-events: none;
}

.ccb-header-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(245, 158, 11, 0.3);
}

.ccb-header-banner__content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.ccb-header-banner a,
.ccb-header-banner a:hover,
.ccb-header-banner a:focus {
  text-decoration: none !important;
}

.ccb-header-banner__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.38);
  background: rgba(245, 158, 11, 0.1);
  color: var(--ccb-gold-hover);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ccb-header-banner .ccb-banner-image {
  display: block;
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.ccb-header-banner h1 {
  max-width: 760px;
  margin: 0 0 10px;
  color: inherit;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
}

.ccb-header-banner p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--ccb-muted);
  font-size: 16px;
  line-height: 1.45;
}

.ccb-header-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ccb-blue) 0%, var(--ccb-blue-dark) 100%);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ccb-header-banner__cta:hover,
.ccb-header-banner__cta:focus {
  background: linear-gradient(135deg, var(--ccb-gold-hover) 0%, var(--ccb-gold) 100%);
  color: var(--ccb-dark);
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.32);
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .ccb-header-banner {
    padding: 24px 14px;
  }

  .ccb-header-banner h1 {
    font-size: 30px;
  }

  .ccb-header-banner p {
    font-size: 16px;
  }

  .ccb-header-banner__cta {
    width: 100%;
  }
}
