@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100;0,9..144,400;0,9..144,800;0,9..144,900;1,9..144,100;1,9..144,400;1,9..144,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --chb-dark-bg: #0D1E2F;
  --chb-dark-surface: #132840;
  --chb-accent: #12B87A;
  --chb-accent-dark: #096B53;
  --chb-light-bg: #F3F7FA;
  --chb-light-alt-bg: #EBF1F7;
  --chb-white: #FFFFFF;
  --chb-text-dark-primary: #E8EFF6;
  --chb-text-dark-muted: #7A9CB8;
  --chb-text-light-primary: #0D1E2F;
  --chb-text-light-muted: #4A647A;
  --chb-btn-primary-bg: #096B53;
  --chb-btn-primary-text: #FFFFFF;
  --chb-nav-h: 68px;
  --chb-container: 1160px;
  --chb-radius: 8px;
  --chb-radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--chb-text-light-primary);
  background: var(--chb-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.chb-container {
  max-width: var(--chb-container);
  margin-inline: auto;
  padding-inline: 32px;
}

.chb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.chb-eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chb-section--dark { background: var(--chb-dark-bg); color: var(--chb-text-dark-primary); }
.chb-section--dark-alt { background: #0a1a28; color: var(--chb-text-dark-primary); }
.chb-section--light { background: var(--chb-light-bg); color: var(--chb-text-light-primary); }
.chb-section--light-alt { background: var(--chb-light-alt-bg); color: var(--chb-text-light-primary); }
.chb-section--white { background: var(--chb-white); color: var(--chb-text-light-primary); }

.chb-section--dark .chb-eyebrow { color: var(--chb-accent); }
.chb-section--dark-alt .chb-eyebrow { color: var(--chb-accent); }
.chb-section--light .chb-eyebrow { color: var(--chb-accent-dark); }
.chb-section--light-alt .chb-eyebrow { color: var(--chb-accent-dark); }
.chb-section--white .chb-eyebrow { color: var(--chb-accent-dark); }

.chb-section--dark p, .chb-section--dark-alt p { color: var(--chb-text-dark-muted); }
.chb-section--dark h2, .chb-section--dark h3, .chb-section--dark-alt h2, .chb-section--dark-alt h3 { color: var(--chb-text-dark-primary); }

.chb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--chb-radius);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s;
  line-height: 1;
  white-space: nowrap;
}

.chb-btn--primary {
  background: var(--chb-btn-primary-bg);
  color: var(--chb-btn-primary-text);
  border: 2px solid var(--chb-btn-primary-bg);
}
.chb-btn--primary:hover { background: #085a45; border-color: #085a45; }

.chb-btn--outline-dark {
  background: transparent;
  color: var(--chb-text-light-primary);
  border: 2px solid var(--chb-text-light-primary);
}
.chb-btn--outline-dark:hover { background: var(--chb-text-light-primary); color: var(--chb-white); }

.chb-btn--ghost-on-dark {
  background: transparent;
  color: var(--chb-text-dark-primary);
  border: 2px solid rgba(232,239,246,0.45);
}
.chb-btn--ghost-on-dark:hover { border-color: var(--chb-text-dark-primary); }

.chb-btn--ghost-on-light {
  background: transparent;
  color: var(--chb-text-light-primary);
  border: 2px solid rgba(13,30,47,0.35);
}
.chb-btn--ghost-on-light:hover { border-color: var(--chb-text-light-primary); }

.chb-btn--lg { padding: 14px 30px; font-size: 1rem; }
.chb-btn--sm { padding: 8px 16px; font-size: 0.82rem; }

.chb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--chb-nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.chb-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: var(--chb-container);
  margin-inline: auto;
  padding-inline: 32px;
}

.chb-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.chb-nav__logo img { height: 32px; width: auto; }
.chb-logo--dark { display: none; }
.chb-logo--light { display: block; }

.chb-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
}

.chb-nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s;
  position: relative;
}

.chb-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.chb-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
}
.chb-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: background 0.2s;
}

.chb-nav__mobile {
  display: none;
  position: fixed;
  top: var(--chb-nav-h);
  left: 0;
  right: 0;
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.chb-nav__mobile.is-open { display: flex; }
.chb-nav__mobile .chb-nav__link { font-size: 1.1rem; }
.chb-nav__mobile .chb-btn { width: 100%; justify-content: center; }

.chb-page--dark-top .chb-nav {
  background: transparent;
}
.chb-page--dark-top .chb-nav--scrolled {
  background: var(--chb-dark-bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.chb-page--light-top .chb-nav {
  background: var(--chb-white);
  box-shadow: 0 1px 0 rgba(13,30,47,0.08);
}
.chb-page--light-top .chb-nav--scrolled {
  box-shadow: 0 2px 12px rgba(13,30,47,0.1);
}

.chb-page--dark-top .chb-nav .chb-nav__link { color: var(--chb-text-dark-primary); }
.chb-page--dark-top .chb-nav .chb-nav__link:hover { color: var(--chb-accent); }
.chb-page--dark-top .chb-nav .chb-logo--light { display: block; }
.chb-page--dark-top .chb-nav .chb-logo--dark { display: none; }
.chb-page--dark-top .chb-nav .chb-nav__hamburger span { background: var(--chb-text-dark-primary); }
.chb-page--dark-top .chb-nav__mobile { background: var(--chb-dark-bg); }
.chb-page--dark-top .chb-nav__mobile .chb-nav__link { color: var(--chb-text-dark-primary); }

.chb-page--light-top .chb-nav .chb-nav__link { color: var(--chb-text-light-primary); }
.chb-page--light-top .chb-nav .chb-nav__link:hover { color: var(--chb-accent-dark); }
.chb-page--light-top .chb-nav .chb-logo--dark { display: block; }
.chb-page--light-top .chb-nav .chb-logo--light { display: none; }
.chb-page--light-top .chb-nav .chb-nav__hamburger span { background: var(--chb-text-light-primary); }
.chb-page--light-top .chb-nav__mobile { background: var(--chb-white); box-shadow: 0 8px 20px rgba(13,30,47,0.12); }
.chb-page--light-top .chb-nav__mobile .chb-nav__link { color: var(--chb-text-light-primary); }

.chb-page--dark-top .chb-nav .chb-btn--ghost-on-dark { color: var(--chb-text-dark-primary); border-color: rgba(232,239,246,0.45); }
.chb-page--light-top .chb-nav .chb-btn--ghost-on-dark {
  color: var(--chb-text-light-primary);
  border-color: rgba(13,30,47,0.3);
}
.chb-page--light-top .chb-nav .chb-btn--ghost-on-dark:hover { background: var(--chb-text-light-primary); color: var(--chb-white); }

.chb-nav--scrolled .chb-logo--light { display: block !important; }
.chb-nav--scrolled .chb-logo--dark { display: none !important; }
.chb-nav--scrolled .chb-nav__link { color: var(--chb-text-dark-primary) !important; }
.chb-nav--scrolled .chb-btn--ghost-on-dark { color: var(--chb-text-dark-primary) !important; border-color: rgba(232,239,246,0.45) !important; }
.chb-nav--scrolled .chb-nav__hamburger span { background: var(--chb-text-dark-primary) !important; }

.chb-page--light-top .chb-nav--scrolled .chb-logo--dark { display: none !important; }
.chb-page--light-top .chb-nav--scrolled .chb-logo--light { display: block !important; }
.chb-page--light-top .chb-nav--scrolled .chb-nav__link { color: var(--chb-text-dark-primary) !important; }
.chb-page--light-top .chb-nav--scrolled { background: var(--chb-dark-bg) !important; }
.chb-page--light-top .chb-nav:not(.chb-nav--scrolled) .chb-logo--dark { display: block; }
.chb-page--light-top .chb-nav:not(.chb-nav--scrolled) .chb-logo--light { display: none; }
.chb-page--light-top .chb-nav:not(.chb-nav--scrolled) .chb-nav__link { color: var(--chb-text-light-primary); }
.chb-page--light-top .chb-nav:not(.chb-nav--scrolled) .chb-nav__hamburger span { background: var(--chb-text-light-primary); }
.chb-page--light-top .chb-nav:not(.chb-nav--scrolled) .chb-btn--ghost-on-dark { color: var(--chb-text-light-primary); border-color: rgba(13,30,47,0.3); }

main { padding-top: var(--chb-nav-h); }

.chb-page--dark-top main { padding-top: 0; }

.chb-hero {
  background: var(--chb-dark-bg);
  padding-block: 100px 80px;
  padding-top: calc(var(--chb-nav-h) + 80px);
}

.chb-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--chb-container);
  margin-inline: auto;
  padding-inline: 32px;
}

.chb-hero__text { max-width: 560px; }

.chb-hero__eyebrow {
  color: var(--chb-accent);
  margin-bottom: 20px;
}

.chb-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--chb-text-dark-primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.chb-hero__sub {
  font-size: 1.05rem;
  color: var(--chb-text-dark-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.chb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.chb-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chb-shortlist-panel {
  background: var(--chb-dark-surface);
  border: 1px solid rgba(122,156,184,0.2);
  border-radius: var(--chb-radius-lg);
  padding: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.chb-shortlist-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(122,156,184,0.15);
}

.chb-shortlist-panel__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chb-text-dark-muted);
}

.chb-shortlist-panel__req {
  font-size: 0.72rem;
  color: var(--chb-accent);
  font-weight: 600;
}

.chb-candidate-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--chb-radius);
  border: 1px solid rgba(122,156,184,0.1);
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.chb-candidate-card:last-child { margin-bottom: 0; }

.chb-candidate-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--chb-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--chb-accent);
  flex-shrink: 0;
  border: 1.5px solid rgba(18,184,122,0.3);
}

.chb-candidate-card__body { flex: 1; min-width: 0; }

.chb-candidate-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--chb-text-dark-primary);
  margin-bottom: 4px;
}

.chb-candidate-card__reason {
  font-size: 0.74rem;
  color: var(--chb-text-dark-muted);
  line-height: 1.45;
}

.chb-score-badge {
  flex-shrink: 0;
  background: rgba(18,184,122,0.18);
  color: var(--chb-text-dark-primary);
  border: 1px solid rgba(18,184,122,0.35);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.chb-shortlist-panel__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(122,156,184,0.12);
  font-size: 0.72rem;
  color: var(--chb-text-dark-muted);
  text-align: center;
}

.chb-section { padding-block: 80px; }
.chb-section--sm { padding-block: 56px; }
.chb-section--lg { padding-block: 100px; }

.chb-section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.chb-section__eyebrow { margin-bottom: 12px; }

.chb-section__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.chb-section__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--chb-text-light-muted);
  max-width: 580px;
  margin-inline: auto;
}

.chb-section--dark .chb-section__sub,
.chb-section--dark-alt .chb-section__sub { color: var(--chb-text-dark-muted); }

.chb-problem {
  padding-block: 80px;
}

.chb-problem__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.chb-problem__stat {
  font-family: 'Fraunces', Georgia, serif;
}

.chb-problem__stat-num {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--chb-accent-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.chb-problem__stat-label {
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--chb-text-light-muted);
  line-height: 1.4;
  max-width: 320px;
}

.chb-problem__body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--chb-text-light-primary);
}

.chb-problem__body p {
  font-size: 0.97rem;
  color: var(--chb-text-light-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.chb-problem__body p:last-child { margin-bottom: 0; }

.chb-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.chb-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--chb-white);
  border-radius: var(--chb-radius-lg);
  border: 1px solid rgba(13,30,47,0.08);
  box-shadow: 0 2px 12px rgba(13,30,47,0.06);
}

.chb-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--chb-accent-dark);
  color: var(--chb-white);
  border-radius: 50%;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.chb-step__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.chb-step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--chb-text-light-primary);
}

.chb-step p {
  font-size: 0.9rem;
  color: var(--chb-text-light-muted);
  line-height: 1.6;
}

.chb-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}

.chb-feature { padding: 0; }
.chb-feature h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--chb-text-light-primary);
}
.chb-feature p {
  font-size: 0.93rem;
  color: var(--chb-text-light-muted);
  line-height: 1.65;
}

.chb-feature__accent-bar {
  width: 28px;
  height: 3px;
  background: var(--chb-accent-dark);
  border-radius: 2px;
  margin-bottom: 16px;
}

.chb-integrations-strip {
  padding-block: 52px;
}

.chb-integrations-strip__inner {
  text-align: center;
}

.chb-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.chb-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(13,30,47,0.15);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chb-text-light-muted);
  background: var(--chb-white);
  transition: border-color 0.15s, color 0.15s;
}
.chb-chip:hover { border-color: var(--chb-accent-dark); color: var(--chb-accent-dark); }

.chb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.chb-testimonial {
  background: var(--chb-dark-surface);
  border: 1px solid rgba(122,156,184,0.12);
  border-radius: var(--chb-radius-lg);
  padding: 28px;
}

.chb-testimonial__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--chb-text-dark-primary);
  margin-bottom: 24px;
}

.chb-testimonial__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chb-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(18,184,122,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--chb-accent);
  flex-shrink: 0;
}

.chb-testimonial__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--chb-text-dark-primary);
  margin-bottom: 2px;
}

.chb-testimonial__role {
  font-size: 0.78rem;
  color: var(--chb-text-dark-muted);
  line-height: 1.4;
}

.chb-testimonial__source {
  margin-top: 8px;
  font-size: 0.7rem;
  color: rgba(122,156,184,0.65);
  font-style: italic;
}

.chb-cta-section {
  text-align: center;
  padding-block: 90px;
}

.chb-cta-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--chb-text-dark-primary);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.2;
}

.chb-cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.chb-footer {
  background: var(--chb-dark-bg);
  color: var(--chb-text-dark-muted);
  padding-block: 56px 32px;
}

.chb-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.chb-footer__brand { max-width: 280px; }
.chb-footer__logo { margin-bottom: 16px; }
.chb-footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--chb-text-dark-muted);
  margin-bottom: 20px;
}

.chb-footer__contact p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--chb-text-dark-muted);
}

.chb-footer__contact a {
  color: var(--chb-accent);
  transition: color 0.15s;
}
.chb-footer__contact a:hover { color: var(--chb-text-dark-primary); }

.chb-footer__col-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chb-text-dark-primary);
  margin-bottom: 18px;
}

.chb-footer__links { display: flex; flex-direction: column; gap: 10px; }

.chb-footer__link {
  font-size: 0.88rem;
  color: var(--chb-text-dark-muted);
  transition: color 0.15s;
}
.chb-footer__link:hover { color: var(--chb-text-dark-primary); }

.chb-footer__bottom {
  border-top: 1px solid rgba(122,156,184,0.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.chb-footer__copy {
  font-size: 0.8rem;
  color: rgba(122,156,184,0.55);
}

.chb-footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.chb-footer__legal-links a {
  font-size: 0.8rem;
  color: rgba(122,156,184,0.55);
  transition: color 0.15s;
}
.chb-footer__legal-links a:hover { color: var(--chb-text-dark-muted); }

.chb-page-hero {
  padding-block: 72px 56px;
  background: var(--chb-light-bg);
}

.chb-page-hero--dark {
  padding-block: calc(var(--chb-nav-h) + 60px) 72px;
  background: var(--chb-dark-bg);
}

.chb-page-hero__inner {
  max-width: var(--chb-container);
  margin-inline: auto;
  padding-inline: 32px;
}

.chb-page-hero--centered { text-align: center; }
.chb-page-hero--centered .chb-page-hero__inner { max-width: 760px; }

.chb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--chb-text-light-muted);
  margin-bottom: 20px;
}

.chb-breadcrumb a { color: var(--chb-accent-dark); }
.chb-breadcrumb a:hover { text-decoration: underline; }
.chb-breadcrumb__sep { color: rgba(13,30,47,0.3); }

.chb-page-hero--dark .chb-breadcrumb { color: var(--chb-text-dark-muted); }
.chb-page-hero--dark .chb-breadcrumb a { color: var(--chb-accent); }
.chb-page-hero--dark .chb-breadcrumb__sep { color: rgba(232,239,246,0.3); }

.chb-page-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--chb-text-light-primary);
}

.chb-page-hero--dark .chb-page-hero__h1 { color: var(--chb-text-dark-primary); }

.chb-page-hero__sub {
  font-size: 1.05rem;
  color: var(--chb-text-light-muted);
  line-height: 1.6;
  max-width: 620px;
}

.chb-page-hero--dark .chb-page-hero__sub { color: var(--chb-text-dark-muted); }

.chb-page-hero--two-col .chb-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--chb-container);
}

.chb-hero-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chb-hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.chb-hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-block: 48px;
  border-bottom: 1px solid rgba(13,30,47,0.08);
}
.chb-hiw-step:last-child { border-bottom: none; }

.chb-hiw-step__num-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.chb-hiw-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--chb-dark-bg);
  color: var(--chb-accent);
  border-radius: 50%;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
}

.chb-hiw-step__body {
  min-width: 0;
  overflow: hidden;
}

.chb-hiw-step__body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--chb-text-light-primary);
}

.chb-hiw-step__body p {
  font-size: 0.95rem;
  color: var(--chb-text-light-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.chb-hiw-step__body p:last-child { margin-bottom: 0; }

.chb-hiw-step__security {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(9,107,83,0.08);
  border: 1px solid rgba(9,107,83,0.2);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--chb-accent-dark);
  font-weight: 600;
  margin-top: 8px;
}

.chb-conn-diagram {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--chb-white);
  border-radius: var(--chb-radius);
  border: 1px solid rgba(13,30,47,0.1);
  margin-top: 24px;
  max-width: min(400px, 100%);
  box-sizing: border-box;
}

.chb-conn-diagram__box {
  flex: 1;
  padding: 12px;
  background: var(--chb-light-bg);
  border-radius: var(--chb-radius);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--chb-text-light-primary);
}

.chb-conn-diagram__arrow {
  flex-shrink: 0;
  color: var(--chb-accent-dark);
}

.chb-integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.chb-integration-card {
  background: var(--chb-white);
  border: 1px solid rgba(13,30,47,0.1);
  border-radius: var(--chb-radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.chb-integration-card:hover { box-shadow: 0 8px 24px rgba(13,30,47,0.08); border-color: rgba(9,107,83,0.25); }

.chb-integration-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--chb-text-light-primary);
}

.chb-integration-card__type {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chb-accent-dark);
  margin-bottom: 10px;
}

.chb-integration-card p {
  font-size: 0.88rem;
  color: var(--chb-text-light-muted);
  line-height: 1.55;
}

.chb-api-callout {
  padding-block: 72px;
}

.chb-api-callout__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.chb-api-callout h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--chb-text-dark-primary);
  margin-bottom: 16px;
}

.chb-api-callout p {
  font-size: 0.97rem;
  color: var(--chb-text-dark-muted);
  margin-bottom: 24px;
}

.chb-endpoint-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}

.chb-endpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(122,156,184,0.1);
  border-radius: var(--chb-radius);
  overflow: hidden;
}

.chb-endpoint__method {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', monospace, sans-serif;
  flex-shrink: 0;
}
.chb-endpoint__method--get { background: rgba(18,184,122,0.15); color: var(--chb-accent); }
.chb-endpoint__method--post { background: rgba(9,107,83,0.2); color: #1de8a0; }

.chb-endpoint__path {
  font-size: 0.82rem;
  color: var(--chb-text-dark-primary);
  font-family: 'Courier New', monospace;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chb-endpoint__desc {
  font-size: 0.78rem;
  color: var(--chb-text-dark-muted);
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chb-pricing-header { text-align: center; padding-block: 72px 56px; }
.chb-pricing-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--chb-text-light-primary);
}
.chb-pricing-header p {
  font-size: 1rem;
  color: var(--chb-text-light-muted);
  margin-bottom: 32px;
}

.chb-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--chb-light-alt-bg);
  border-radius: 50px;
  padding: 6px;
}

.chb-toggle-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chb-text-light-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.chb-toggle-btn.is-active {
  background: var(--chb-white);
  color: var(--chb-text-light-primary);
  box-shadow: 0 2px 8px rgba(13,30,47,0.1);
}

.chb-toggle-save {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--chb-accent-dark);
  background: rgba(9,107,83,0.1);
  padding: 3px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

.chb-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-block: 48px;
}

.chb-tier {
  background: var(--chb-white);
  border: 1.5px solid rgba(13,30,47,0.1);
  border-radius: var(--chb-radius-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.chb-tier--highlighted {
  border-color: var(--chb-accent-dark);
  box-shadow: 0 8px 32px rgba(9,107,83,0.15);
}

.chb-tier__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--chb-accent-dark);
  color: var(--chb-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chb-tier__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--chb-text-light-primary);
}

.chb-tier__price {
  margin-bottom: 6px;
}

.chb-tier__price-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--chb-text-light-primary);
  line-height: 1;
}
.chb-tier__price-mo {
  font-size: 0.88rem;
  color: var(--chb-text-light-muted);
}

.chb-price--annual,
.chb-price--monthly { display: inline; }

.chb-billing--annual,
.chb-billing--monthly { display: block; }

.chb-tier__billing {
  font-size: 0.78rem;
  color: var(--chb-text-light-muted);
  margin-bottom: 8px;
}

.chb-tier__cap {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--chb-accent-dark);
  margin-bottom: 24px;
}

.chb-tier__divider {
  height: 1px;
  background: rgba(13,30,47,0.08);
  margin-bottom: 20px;
}

.chb-tier__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.chb-tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--chb-text-light-primary);
}

.chb-tier__feature-check {
  color: var(--chb-accent-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.chb-faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.chb-faq-item {
  border-bottom: 1px solid rgba(13,30,47,0.1);
}
.chb-faq-item:first-child { border-top: 1px solid rgba(13,30,47,0.1); }

.chb-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--chb-text-light-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.chb-faq-trigger__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,30,47,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chb-text-light-muted);
  transition: border-color 0.2s, color 0.2s, transform 0.25s;
}

.chb-faq-item.is-open .chb-faq-trigger__icon {
  border-color: var(--chb-accent-dark);
  color: var(--chb-accent-dark);
  transform: rotate(45deg);
}

.chb-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.chb-faq-item.is-open .chb-faq-panel { max-height: 400px; }

.chb-faq-panel__inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--chb-text-light-muted);
  line-height: 1.7;
}

.chb-about-story {
  padding-block: 80px;
}

.chb-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.chb-about-story__text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--chb-text-light-primary);
}

.chb-about-story__text p {
  font-size: 0.95rem;
  color: var(--chb-text-light-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.chb-about-story__text p:last-child { margin-bottom: 0; }

.chb-about-story__img {
  border-radius: var(--chb-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.chb-about-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chb-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.chb-team-card {
  text-align: center;
}

.chb-team-card__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 16px;
  border: 3px solid rgba(9,107,83,0.2);
}

.chb-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.chb-team-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--chb-text-light-primary);
}

.chb-team-card__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--chb-accent-dark);
  margin-bottom: 10px;
}

.chb-team-card__bio {
  font-size: 0.88rem;
  color: var(--chb-text-light-muted);
  line-height: 1.6;
}

.chb-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.chb-value {
  padding: 32px;
  background: var(--chb-white);
  border-radius: var(--chb-radius-lg);
  border: 1px solid rgba(13,30,47,0.08);
}

.chb-value__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--chb-text-light-primary);
}

.chb-value p {
  font-size: 0.92rem;
  color: var(--chb-text-light-muted);
  line-height: 1.7;
}

.chb-contact-callout {
  padding-block: 56px;
  background: var(--chb-dark-bg);
}

.chb-contact-callout__inner {
  text-align: center;
}

.chb-contact-callout h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--chb-text-dark-primary);
  margin-bottom: 20px;
}

.chb-contact-callout p { color: var(--chb-text-dark-muted); margin-bottom: 8px; }
.chb-contact-callout a { color: var(--chb-accent); }
.chb-contact-callout .chb-btn--primary { color: var(--chb-btn-primary-text); }

.chb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.chb-contact-form { display: flex; flex-direction: column; gap: 18px; }

.chb-field { display: flex; flex-direction: column; gap: 6px; }

.chb-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--chb-text-light-primary);
}

.chb-input, .chb-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(13,30,47,0.2);
  border-radius: var(--chb-radius);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--chb-text-light-primary);
  background: var(--chb-white);
  transition: border-color 0.2s;
  outline: none;
}
.chb-input:focus, .chb-textarea:focus { border-color: var(--chb-accent-dark); }

.chb-textarea { resize: vertical; min-height: 130px; }

.chb-contact-details h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--chb-text-light-primary);
}

.chb-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.chb-contact-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(9,107,83,0.08);
  border-radius: var(--chb-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chb-accent-dark);
  flex-shrink: 0;
}

.chb-contact-detail__body p { font-size: 0.9rem; color: var(--chb-text-light-muted); line-height: 1.6; }
.chb-contact-detail__body a { color: var(--chb-accent-dark); }
.chb-contact-detail__body a:hover { text-decoration: underline; }

.chb-contact-maps {
  padding-block: 32px;
  background: var(--chb-light-bg);
}

.chb-contact-maps a {
  color: var(--chb-accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
}
.chb-contact-maps a:hover { text-decoration: underline; }

.chb-blog-hero {
  padding-block: 64px 48px;
  background: var(--chb-light-bg);
}

.chb-blog-featured { padding-block: 48px; }

.chb-blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--chb-white);
  border-radius: var(--chb-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13,30,47,0.08);
  box-shadow: 0 4px 20px rgba(13,30,47,0.06);
}

.chb-blog-featured-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.chb-blog-featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chb-blog-featured-card__body { padding: 40px 40px 40px 0; }

.chb-blog-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--chb-text-light-muted);
}

.chb-blog-featured-card__meta time { font-weight: 600; }

.chb-blog-featured-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--chb-text-light-primary);
}

.chb-blog-featured-card__excerpt {
  font-size: 0.93rem;
  color: var(--chb-text-light-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.chb-blog-featured-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--chb-accent-dark);
}
.chb-blog-featured-card__link:hover { gap: 10px; }

.chb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-block: 48px;
}

.chb-blog-card {
  background: var(--chb-white);
  border: 1px solid rgba(13,30,47,0.08);
  border-radius: var(--chb-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.chb-blog-card:hover { box-shadow: 0 8px 28px rgba(13,30,47,0.1); }

.chb-blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.chb-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.chb-blog-card:hover .chb-blog-card__img img { transform: scale(1.04); }

.chb-blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.chb-blog-card__meta {
  font-size: 0.78rem;
  color: var(--chb-text-light-muted);
  margin-bottom: 8px;
}

.chb-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--chb-text-light-primary);
  flex: 1;
}

.chb-blog-card__excerpt {
  font-size: 0.83rem;
  color: var(--chb-text-light-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.chb-blog-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--chb-accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.chb-blog-card__link:hover { gap: 8px; }

.chb-newsletter-section {
  padding-block: 72px;
  text-align: center;
}

.chb-newsletter-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--chb-text-dark-primary);
  margin-bottom: 14px;
}

.chb-newsletter-section p {
  font-size: 0.95rem;
  color: var(--chb-text-dark-muted);
  margin-bottom: 28px;
}

.chb-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin-inline: auto;
}

.chb-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(122,156,184,0.3);
  border-radius: var(--chb-radius);
  background: rgba(255,255,255,0.08);
  color: var(--chb-text-dark-primary);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.chb-newsletter-input::placeholder { color: var(--chb-text-dark-muted); }
.chb-newsletter-input:focus { border-color: var(--chb-accent); }

.chb-article-hero { padding-block: 48px 32px; background: var(--chb-light-bg); }
.chb-article-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 32px;
}

.chb-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--chb-text-light-muted);
  margin-bottom: 16px;
}

.chb-article-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--chb-text-light-primary);
}

.chb-article-hero__cover {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--chb-radius);
  margin-bottom: 0;
}

.chb-article-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chb-article-body {
  background: var(--chb-white);
  padding-block: 56px;
}

.chb-blog-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 32px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--chb-text-light-primary);
}

.chb-blog-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--chb-text-light-primary);
}

.chb-blog-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--chb-text-light-primary);
}

.chb-blog-content p { margin-bottom: 20px; color: var(--chb-text-light-primary); }
.chb-blog-content ul, .chb-blog-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.chb-blog-content li { margin-bottom: 8px; }
.chb-blog-content a { color: var(--chb-accent-dark); text-decoration: underline; }

.chb-article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chb-accent-dark);
  margin-bottom: 20px;
  transition: gap 0.15s;
}
.chb-article-back:hover { gap: 10px; }

.chb-related-posts {
  padding-block: 56px;
  background: var(--chb-light-bg);
}

.chb-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.chb-customers-testimonials {
  padding-block: 72px;
}

.chb-testimonials-extended {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.chb-testimonial--extended {
  background: var(--chb-white);
  border: 1px solid rgba(13,30,47,0.08);
  border-radius: var(--chb-radius-lg);
  padding: 32px;
}

.chb-testimonial--extended .chb-testimonial__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--chb-text-light-primary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.chb-testimonial--extended .chb-testimonial__meta {
  gap: 14px;
}

.chb-testimonial--extended .chb-testimonial__avatar {
  background: rgba(9,107,83,0.1);
  color: var(--chb-accent-dark);
}

.chb-testimonial--extended .chb-testimonial__name { color: var(--chb-text-light-primary); }
.chb-testimonial--extended .chb-testimonial__role { color: var(--chb-text-light-muted); }
.chb-testimonial--extended .chb-testimonial__source { color: var(--chb-text-light-muted); }

.chb-stats-panel {
  padding-block: 80px;
  background: #0a1a28;
}

.chb-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.chb-stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--chb-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.chb-stat__label {
  font-size: 0.95rem;
  color: var(--chb-text-dark-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.chb-stat__source {
  font-size: 0.74rem;
  color: rgba(122,156,184,0.6);
  font-style: italic;
}

.chb-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--chb-light-bg);
  padding: 40px 20px;
}

.chb-auth-card {
  background: var(--chb-white);
  border: 1px solid rgba(13,30,47,0.1);
  border-radius: var(--chb-radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 40px rgba(13,30,47,0.1);
}

.chb-auth-card__logo { display: flex; justify-content: center; margin-bottom: 32px; }
.chb-auth-card__logo img { height: 32px; width: auto; }

.chb-auth-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  color: var(--chb-text-light-primary);
}

.chb-auth-card__sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--chb-text-light-muted);
  margin-bottom: 32px;
}

.chb-auth-form { display: flex; flex-direction: column; gap: 16px; }

.chb-auth-form .chb-btn--primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.97rem;
  margin-top: 4px;
}

.chb-auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--chb-text-light-muted);
}

.chb-auth-links a { color: var(--chb-accent-dark); font-weight: 600; }
.chb-auth-links a:hover { text-decoration: underline; }

.chb-auth-legal {
  margin-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(74,100,122,0.7);
  line-height: 1.5;
}

.chb-auth-legal a { color: var(--chb-accent-dark); }
.chb-auth-legal a:hover { text-decoration: underline; }

.chb-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--chb-light-bg);
}

.chb-auth-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.chb-auth-card--wide { max-width: 540px; }

.chb-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.chb-auth-logo img { height: 32px; width: auto; }

.chb-auth-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  color: var(--chb-text-light-primary);
}

.chb-auth-sub {
  text-align: center;
  font-size: 0.92rem;
  color: var(--chb-text-light-muted);
  margin-bottom: 28px;
}

.chb-auth-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
}

.chb-auth-link {
  color: var(--chb-accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.chb-auth-link:hover { text-decoration: underline; }
.chb-auth-link--small { font-size: 0.85rem; }

.chb-auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--chb-text-light-muted);
}

.chb-form-group { display: flex; flex-direction: column; gap: 6px; }

.chb-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--chb-text-light-primary);
}

.chb-form-input {
  padding: 11px 14px;
  border: 1.5px solid rgba(13,30,47,0.18);
  border-radius: var(--chb-radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--chb-text-light-primary);
  background: var(--chb-white);
  transition: border-color 0.18s;
  width: 100%;
  box-sizing: border-box;
}
.chb-form-input:focus {
  outline: none;
  border-color: var(--chb-accent-dark);
}
.chb-form-input::placeholder { color: rgba(74,100,122,0.5); }

.chb-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.chb-btn--full { width: 100%; justify-content: center; margin-top: 6px; }

.chb-legal-page { background: var(--chb-white); }

.chb-legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding: 56px 32px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--chb-text-light-primary);
}

.chb-legal-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 14px;
}

.chb-legal-content p { margin-bottom: 16px; }
.chb-legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.chb-legal-content li { margin-bottom: 8px; }

.chb-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.chb-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--chb-dark-bg);
  border-top: 1px solid rgba(122,156,184,0.15);
  padding: 20px 0;
}

.cookie-banner__inner {
  max-width: var(--chb-container);
  margin-inline: auto;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: var(--chb-text-dark-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a { color: var(--chb-accent); }
.cookie-banner__text a:hover { text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: var(--chb-radius);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: opacity 0.15s;
  border: 1.5px solid transparent;
}

.cookie-banner__btn--primary {
  background: var(--chb-accent-dark);
  color: var(--chb-white);
  border-color: var(--chb-accent-dark);
}
.cookie-banner__btn--primary:hover { opacity: 0.9; }

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--chb-text-dark-primary);
  border-color: rgba(232,239,246,0.35);
}
.cookie-banner__btn--secondary:hover { border-color: var(--chb-text-dark-primary); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .chb-fade-in { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 900px) {
  .chb-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .chb-hero__text { max-width: 100%; }
  .chb-hero__visual { justify-content: flex-start; }
  .chb-problem__inner { grid-template-columns: 1fr; gap: 40px; }
  .chb-steps-grid { grid-template-columns: 1fr; }
  .chb-features-grid { grid-template-columns: 1fr; }
  .chb-testimonials-grid { grid-template-columns: 1fr; }
  .chb-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .chb-blog-featured-card { grid-template-columns: 1fr; }
  .chb-blog-featured-card__body { padding: 28px; }
  .chb-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .chb-team-grid { grid-template-columns: repeat(2, 1fr); }
  .chb-values-grid { grid-template-columns: 1fr; }
  .chb-pricing-tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .chb-stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .chb-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .chb-about-story__inner { grid-template-columns: 1fr; }
  .chb-integrations-grid { grid-template-columns: 1fr; }
  .chb-related-grid { grid-template-columns: repeat(2, 1fr); }
  .chb-page-hero--two-col .chb-page-hero__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --chb-nav-h: 60px; }
  .chb-container { padding-inline: 20px; }
  .chb-nav__inner { padding-inline: 20px; }
  .chb-nav__links, .chb-nav__actions { display: none; }
  .chb-nav__hamburger { display: flex; }
  .chb-hero__inner { padding-inline: 20px; }
  .chb-hero { padding-top: calc(var(--chb-nav-h) + 48px); padding-bottom: 48px; }
  .chb-section { padding-block: 56px; }
  .chb-section__header { margin-bottom: 36px; }
  .chb-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .chb-footer__bottom { flex-direction: column; align-items: flex-start; }
  .chb-blog-grid { grid-template-columns: 1fr; }
  .chb-related-grid { grid-template-columns: 1fr; }
  .chb-team-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .chb-hiw-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .chb-steps-grid { gap: 20px; }
  .chb-auth-card { padding: 32px 24px; }
  .chb-newsletter-form { flex-direction: column; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .chb-page-hero__inner { padding-inline: 20px; }
  .chb-blog-featured-card { grid-template-columns: 1fr; }
  .chb-article-hero__inner { padding-inline: 20px; }
  .chb-blog-content { padding-inline: 20px; }
  .chb-legal-content { padding-inline: 20px; }
  .chb-pricing-tiers { max-width: 100%; }
}

@media (max-width: 480px) {
  .chb-hero__h1 { font-size: 2rem; }
  .chb-hero__actions { flex-direction: column; align-items: flex-start; }
  .chb-shortlist-panel { max-width: 100%; }
  .chb-auth-card { padding: 28px 16px; }
}
