:root {
  --cbp-navy-950: #07111f;
  --cbp-navy-900: #0b1728;
  --cbp-navy-850: #102039;
  --cbp-navy-800: #142844;
  --cbp-blue-600: #1268f3;
  --cbp-blue-500: #2c7cf6;
  --cbp-cyan-400: #20c8d7;
  --cbp-ink: #152238;
  --cbp-muted: #627086;
  --cbp-soft: #f4f7fb;
  --cbp-line: #dfe6ef;
  --cbp-white: #ffffff;
  --cbp-shadow-sm: 0 12px 32px rgba(11, 23, 40, .08);
  --cbp-shadow-lg: 0 30px 80px rgba(5, 17, 35, .18);
  --cbp-radius-sm: 12px;
  --cbp-radius: 20px;
  --cbp-radius-lg: 32px;
  --cbp-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cbp-ink);
  background: var(--cbp-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.cbp-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--cbp-navy-950);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.14;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.65rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.45rem;
}

.screen-reader-text,
.cbp-skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.cbp-skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: var(--cbp-shadow-sm);
}

.cbp-container {
  width: min(calc(100% - 48px), var(--cbp-container));
  margin-inline: auto;
}

.cbp-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(223, 230, 239, .82);
  background: rgba(255, 255, 255, .91);
  backdrop-filter: blur(20px);
  transition: box-shadow .25s ease, background .25s ease;
}

.cbp-site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 35px rgba(7, 17, 31, .08);
}

.cbp-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 32px;
}

.cbp-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.cbp-brand-mark {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding-right: 10px;
  border-right: 1px solid var(--cbp-line);
}

.cbp-brand-mark img {
  width: 94px;
  height: auto;
}

.cbp-brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--cbp-navy-950);
  line-height: 1;
}

.cbp-brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: .14em;
}

.cbp-brand-copy small {
  margin-top: 6px;
  color: var(--cbp-muted);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .02em;
  white-space: nowrap;
}

.cbp-primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.cbp-primary-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cbp-primary-nav li a {
  position: relative;
  display: block;
  padding: 30px 0;
  color: #38465a;
  font-size: .92rem;
  font-weight: 650;
}

.cbp-primary-nav li a::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cbp-blue-600);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.cbp-primary-nav li a:hover,
.cbp-primary-nav li a:focus-visible {
  color: var(--cbp-blue-600);
}

.cbp-primary-nav li a:hover::after,
.cbp-primary-nav li a:focus-visible::after {
  transform: scaleX(1);
}

.cbp-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--cbp-line);
  border-radius: 12px;
  background: #fff;
}

.cbp-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--cbp-navy-950);
  transition: transform .2s ease, opacity .2s ease;
}

.cbp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--cbp-blue-600);
  border-radius: 12px;
  background: var(--cbp-blue-600);
  color: #fff;
  font-size: .95rem;
  font-weight: 750;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(18, 104, 243, .2);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cbp-button:hover,
.cbp-button:focus-visible {
  border-color: #0757d7;
  background: #0757d7;
  box-shadow: 0 18px 36px rgba(18, 104, 243, .28);
  color: #fff;
  transform: translateY(-2px);
}

.cbp-button-small {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 10px;
  font-size: .88rem;
}

.cbp-button-ghost {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  box-shadow: none;
}

.cbp-button-ghost:hover,
.cbp-button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .12);
}

.cbp-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--cbp-navy-950);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .16);
}

.cbp-button-light:hover,
.cbp-button-light:focus-visible {
  border-color: #e8efff;
  background: #e8efff;
  color: var(--cbp-navy-950);
}

.cbp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 130px) 0 clamp(86px, 10vw, 142px);
  background:
    linear-gradient(116deg, rgba(7, 17, 31, .99) 0%, rgba(11, 31, 58, .98) 58%, rgba(11, 37, 72, .97) 100%);
}

.cbp-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.cbp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.cbp-hero-orb-one {
  top: -240px;
  right: -180px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(32, 200, 215, .22), transparent 68%);
}

.cbp-hero-orb-two {
  bottom: -300px;
  left: 28%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(18, 104, 243, .23), transparent 68%);
}

.cbp-hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(56px, 7vw, 100px);
}

.cbp-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--cbp-blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  gap: 10px;
}

.cbp-eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.cbp-eyebrow-light {
  color: #68ddea;
}

.cbp-hero h1 {
  max-width: 800px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(3.15rem, 5.6vw, 5.45rem);
  letter-spacing: -.055em;
}

.cbp-hero h1 em {
  color: #78dce5;
  font-style: normal;
}

.cbp-hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #b9c8d9;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.cbp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cbp-hero-assurance {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  color: #a9b8ca;
  font-size: .83rem;
  gap: 12px 24px;
}

.cbp-hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cbp-hero-assurance i {
  display: inline-grid;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(104, 221, 234, .45);
  border-radius: 50%;
  color: #68ddea;
  font-size: .7rem;
  font-style: normal;
  place-items: center;
}

.cbp-hero-visual {
  position: relative;
  padding: 28px 24px 30px 18px;
}

.cbp-hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: .85;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 140px 26px 26px 26px;
  box-shadow: var(--cbp-shadow-lg);
}

.cbp-hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 17, 31, .86) 100%);
  content: "";
}

.cbp-hero-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

.cbp-image-caption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  color: #fff;
  grid-template-columns: 10px 1fr;
  gap: 2px 12px;
}

.cbp-image-caption > span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: #3ed3df;
  box-shadow: 0 0 0 6px rgba(62, 211, 223, .15);
  grid-row: span 2;
}

.cbp-image-caption strong {
  font-size: 1.05rem;
}

.cbp-image-caption small {
  color: #c4d0dd;
}

.cbp-stat-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 132px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.cbp-stat-card strong {
  color: var(--cbp-blue-600);
  font-size: 2rem;
  letter-spacing: -.05em;
  line-height: 1;
}

.cbp-stat-card span {
  margin-top: 7px;
  color: #536278;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cbp-stat-card-top {
  top: 4px;
  right: -20px;
}

.cbp-stat-card-bottom {
  bottom: 3px;
  left: -18px;
}

.cbp-trust-band {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--cbp-line);
  background: #fff;
}

.cbp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cbp-trust-grid > div {
  display: grid;
  align-items: center;
  min-height: 142px;
  padding: 26px 38px;
  border-left: 1px solid var(--cbp-line);
  grid-template-columns: auto 1fr;
  gap: 18px;
}

.cbp-trust-grid > div:last-child {
  border-right: 1px solid var(--cbp-line);
}

.cbp-trust-grid > div > span {
  color: #b5c0ce;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -.05em;
}

.cbp-trust-grid p {
  margin: 0;
  color: var(--cbp-muted);
  font-size: .88rem;
  line-height: 1.55;
}

.cbp-trust-grid strong {
  display: block;
  margin-bottom: 2px;
  color: var(--cbp-ink);
  font-size: .95rem;
}

.cbp-section {
  padding: clamp(88px, 10vw, 144px) 0;
}

.cbp-services {
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 104, 243, .075), transparent 27%),
    var(--cbp-soft);
}

.cbp-section-heading-split {
  display: grid;
  align-items: end;
  margin-bottom: 52px;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
}

.cbp-section-heading h2 {
  margin-bottom: 0;
}

.cbp-section-intro p {
  margin-bottom: 8px;
  color: var(--cbp-muted);
  font-size: 1.02rem;
}

.cbp-section-intro small {
  color: #8592a4;
  font-size: .8rem;
}

.cbp-catalog-tools {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 760px;
  margin-bottom: 36px;
}

.cbp-catalog-tools label {
  position: absolute;
  z-index: 1;
  left: 20px;
  display: inline-flex;
  color: #8794a7;
}

.cbp-catalog-tools svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.cbp-catalog-tools input {
  width: 100%;
  height: 60px;
  padding: 0 140px 0 56px;
  border: 1px solid #d8e1ed;
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--cbp-ink);
  box-shadow: 0 8px 24px rgba(16, 32, 57, .045);
  transition: border .2s ease, box-shadow .2s ease;
}

.cbp-catalog-tools input:focus {
  border-color: var(--cbp-blue-500);
  box-shadow: 0 0 0 4px rgba(44, 124, 246, .12);
}

.cbp-search-count {
  position: absolute;
  right: 18px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--cbp-blue-600);
  font-size: .77rem;
  font-weight: 750;
}

.cbp-unit-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cbp-unit-card {
  overflow: hidden;
  padding: 30px;
  border: 1px solid #dbe4ef;
  border-radius: var(--cbp-radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(16, 32, 57, .055);
  transition: border .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cbp-unit-card:hover {
  border-color: #c5d5e9;
  box-shadow: 0 24px 55px rgba(16, 32, 57, .1);
  transform: translateY(-3px);
}

.cbp-unit-card[hidden],
.cbp-service-item[hidden] {
  display: none;
}

.cbp-unit-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cbp-unit-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #edf4ff;
  color: var(--cbp-blue-600);
  place-items: center;
}

.cbp-unit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cbp-unit-number {
  color: #bdc7d4;
  font-size: 1.05rem;
  font-weight: 650;
}

.cbp-unit-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.cbp-unit-card > p {
  min-height: 3.3em;
  margin-bottom: 22px;
  color: var(--cbp-muted);
  font-size: .94rem;
  line-height: 1.72;
}

.cbp-unit-meta {
  padding-bottom: 22px;
  color: #7a8799;
  font-size: .8rem;
}

.cbp-unit-meta strong {
  color: var(--cbp-blue-600);
  font-size: 1rem;
}

.cbp-service-details {
  border-top: 1px solid #e5ebf2;
}

.cbp-service-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  color: var(--cbp-navy-850);
  font-size: .88rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.cbp-service-details summary::-webkit-details-marker {
  display: none;
}

.cbp-service-details summary span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f0f4f9;
  color: var(--cbp-blue-600);
  place-items: center;
  transition: transform .2s ease;
}

.cbp-service-details[open] summary span {
  transform: rotate(180deg);
}

.cbp-service-list {
  display: grid;
  max-height: 330px;
  margin-top: 18px;
  overflow: auto;
  border-top: 1px solid #edf1f6;
}

.cbp-service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 13px 4px;
  border-bottom: 1px solid #edf1f6;
  color: #3d4c60;
  font-size: .85rem;
  gap: 18px;
}

.cbp-service-item i {
  color: #a4afbd;
  font-style: normal;
}

.cbp-no-results,
.cbp-catalog-unavailable {
  padding: 42px;
  border: 1px dashed #cdd8e5;
  border-radius: var(--cbp-radius);
  background: rgba(255, 255, 255, .72);
  text-align: center;
}

.cbp-no-results strong,
.cbp-no-results span {
  display: block;
}

.cbp-no-results span,
.cbp-catalog-unavailable p {
  margin: 6px 0 20px;
  color: var(--cbp-muted);
}

.cbp-about {
  overflow: hidden;
  background: var(--cbp-navy-900);
}

.cbp-about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(56px, 8vw, 112px);
}

.cbp-about-image {
  position: relative;
}

.cbp-about-image::before {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(104, 221, 234, .24);
  border-radius: 50%;
  content: "";
}

.cbp-about-image > img {
  position: relative;
  width: 100%;
  min-height: 580px;
  border-radius: 24px 100px 24px 24px;
  object-fit: cover;
  object-position: 30% center;
  box-shadow: 0 32px 70px rgba(0, 0, 0, .3);
}

.cbp-about-badge {
  position: absolute;
  right: -28px;
  bottom: 42px;
  display: flex;
  align-items: center;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  background: rgba(18, 104, 243, .94);
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
  gap: 13px;
}

.cbp-about-badge span {
  padding-right: 13px;
  border-right: 1px solid rgba(255, 255, 255, .3);
  font-size: 1.3rem;
  font-weight: 850;
}

.cbp-about-badge strong {
  font-size: .7rem;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cbp-about-copy h2 {
  margin-bottom: 26px;
  color: #fff;
}

.cbp-about-copy > p:not(.cbp-eyebrow) {
  margin-bottom: 18px;
  color: #b7c4d3;
  font-size: 1rem;
  line-height: 1.8;
}

.cbp-about-points {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.cbp-about-points > div {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  grid-template-columns: 46px 1fr;
  gap: 12px;
}

.cbp-about-points i {
  color: #68ddea;
  font-size: .74rem;
  font-style: normal;
  font-weight: 800;
}

.cbp-about-points span {
  color: #a9b8ca;
  font-size: .88rem;
}

.cbp-about-points strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: .95rem;
}

.cbp-process {
  background: #fff;
}

.cbp-section-heading-centered {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.cbp-section-heading-centered .cbp-eyebrow {
  justify-content: center;
}

.cbp-section-heading-centered h2 {
  margin-bottom: 20px;
}

.cbp-section-heading-centered > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--cbp-muted);
}

.cbp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cbp-process-step {
  position: relative;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--cbp-line);
  border-radius: var(--cbp-radius);
  background: #fff;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.cbp-process-step::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(18, 104, 243, .12);
  border-radius: 50%;
  content: "";
}

.cbp-process-step:hover {
  background: #f9fbff;
  box-shadow: var(--cbp-shadow-sm);
  transform: translateY(-4px);
}

.cbp-process-step > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  border-radius: 13px;
  background: #edf4ff;
  color: var(--cbp-blue-600);
  font-size: .8rem;
  font-weight: 800;
  place-items: center;
}

.cbp-process-step h3 {
  margin-bottom: 12px;
  font-size: 1.17rem;
}

.cbp-process-step p {
  margin-bottom: 0;
  color: var(--cbp-muted);
  font-size: .88rem;
}

.cbp-cta {
  padding-top: 0;
}

.cbp-cta-card {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 76px);
  border-radius: var(--cbp-radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(104, 221, 234, .26), transparent 30%),
    linear-gradient(120deg, var(--cbp-blue-600), #0649bc);
  color: #fff;
  grid-template-columns: 1fr auto;
  gap: 54px;
  box-shadow: 0 28px 65px rgba(18, 104, 243, .24);
}

.cbp-cta-card::before {
  position: absolute;
  top: -120px;
  right: 120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.cbp-cta-card > * {
  position: relative;
}

.cbp-cta-card h2 {
  max-width: 700px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.cbp-cta-card p:not(.cbp-eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: #d9e7ff;
}

.cbp-site-footer {
  padding: 78px 0 24px;
  background: var(--cbp-navy-950);
  color: #9eacc0;
}

.cbp-footer-grid {
  display: grid;
  padding-bottom: 54px;
  grid-template-columns: 1.5fr .7fr 1fr;
  gap: 70px;
}

.cbp-brand-footer .cbp-brand-mark {
  border-color: rgba(255, 255, 255, .2);
  filter: brightness(0) invert(1);
}

.cbp-brand-footer .cbp-brand-copy,
.cbp-brand-footer .cbp-brand-copy small {
  color: #fff;
}

.cbp-footer-grid > div:first-child > p {
  max-width: 430px;
  margin: 24px 0 0;
  color: #8e9eb3;
}

.cbp-site-footer h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cbp-site-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.cbp-site-footer a:hover,
.cbp-site-footer a:focus-visible {
  color: #68ddea;
}

.cbp-contact-list {
  font-size: .9rem;
}

.cbp-footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .73rem;
  gap: 30px;
}

.cbp-inner-main {
  min-height: 65vh;
}

.cbp-inner-hero {
  padding: 88px 0;
  background: var(--cbp-soft);
}

.cbp-inner-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.cbp-prose {
  max-width: 900px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.cbp-prose p,
.cbp-prose li {
  color: #4e5d70;
}

.cbp-prose a {
  color: var(--cbp-blue-600);
  text-decoration: underline;
}

.cbp-post-grid {
  display: grid;
  padding-top: 70px;
  padding-bottom: 96px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cbp-post-card {
  padding: 28px;
  border: 1px solid var(--cbp-line);
  border-radius: var(--cbp-radius);
}

.cbp-post-card > p {
  color: var(--cbp-muted);
  font-size: .78rem;
}

.cbp-post-card h2 {
  font-size: 1.3rem;
}

.cbp-not-found {
  display: grid;
  min-height: 65vh;
  padding: 90px 0;
  text-align: center;
  place-items: center;
}

.cbp-not-found .cbp-eyebrow {
  justify-content: center;
}

.cbp-not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.cbp-not-found p {
  margin-bottom: 30px;
  color: var(--cbp-muted);
}

@media (max-width: 1050px) {
  .cbp-primary-nav {
    gap: 22px;
  }

  .cbp-primary-nav ul {
    gap: 20px;
  }

  .cbp-hero-grid {
    grid-template-columns: 1fr .8fr;
    gap: 42px;
  }

  .cbp-hero h1 {
    font-size: clamp(3rem, 5.8vw, 4.6rem);
  }

  .cbp-trust-grid > div {
    padding-inline: 24px;
  }

  .cbp-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cbp-process-step {
    min-height: 250px;
  }
}

@media (max-width: 860px) {
  .cbp-container {
    width: min(calc(100% - 36px), var(--cbp-container));
  }

  .cbp-nav-shell {
    min-height: 72px;
  }

  .cbp-menu-toggle {
    display: block;
  }

  .cbp-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .cbp-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .cbp-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .cbp-primary-nav {
    position: fixed;
    z-index: 100;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    height: calc(100vh - 72px);
    padding: 24px;
    overflow: auto;
    background: #fff;
    flex-direction: column;
  }

  .cbp-primary-nav.is-open {
    display: flex;
  }

  .cbp-primary-nav ul {
    align-items: stretch;
    gap: 0;
    flex-direction: column;
  }

  .cbp-primary-nav li a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--cbp-line);
    font-size: 1.05rem;
  }

  .cbp-primary-nav li a::after {
    display: none;
  }

  .cbp-hero {
    padding-top: 76px;
  }

  .cbp-hero-grid {
    grid-template-columns: 1fr;
  }

  .cbp-hero-copy {
    max-width: 700px;
  }

  .cbp-hero-visual {
    max-width: 570px;
    margin: 0 auto;
  }

  .cbp-trust-grid {
    grid-template-columns: 1fr;
  }

  .cbp-trust-grid > div,
  .cbp-trust-grid > div:last-child {
    min-height: 110px;
    border-right: 1px solid var(--cbp-line);
    border-bottom: 1px solid var(--cbp-line);
  }

  .cbp-section-heading-split,
  .cbp-about-grid,
  .cbp-cta-card {
    grid-template-columns: 1fr;
  }

  .cbp-section-heading-split {
    gap: 24px;
  }

  .cbp-about-image {
    width: min(90%, 580px);
    margin: 0 auto;
  }

  .cbp-about-image > img {
    min-height: 480px;
  }

  .cbp-cta-card {
    gap: 30px;
  }

  .cbp-cta-card .cbp-button {
    justify-self: start;
  }

  .cbp-footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .cbp-footer-grid > div:first-child {
    grid-column: span 2;
  }

  .cbp-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .cbp-container {
    width: min(calc(100% - 28px), var(--cbp-container));
  }

  .cbp-brand-mark img {
    width: 82px;
  }

  .cbp-brand-copy small {
    display: none;
  }

  .cbp-hero {
    padding-top: 62px;
  }

  .cbp-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .cbp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cbp-actions .cbp-button {
    width: 100%;
  }

  .cbp-hero-assurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .cbp-hero-visual {
    padding: 20px 8px 26px;
  }

  .cbp-hero-image-wrap {
    border-radius: 90px 20px 20px 20px;
  }

  .cbp-stat-card {
    min-width: 112px;
    padding: 14px 16px;
  }

  .cbp-stat-card-top {
    right: -4px;
  }

  .cbp-stat-card-bottom {
    left: -4px;
  }

  .cbp-stat-card strong {
    font-size: 1.55rem;
  }

  .cbp-section {
    padding: 80px 0;
  }

  .cbp-unit-grid,
  .cbp-process-grid,
  .cbp-footer-grid,
  .cbp-post-grid {
    grid-template-columns: 1fr;
  }

  .cbp-unit-card {
    padding: 24px;
  }

  .cbp-unit-card > p {
    min-height: 0;
  }

  .cbp-catalog-tools input {
    height: 56px;
    padding-right: 56px;
  }

  .cbp-search-count {
    display: none;
  }

  .cbp-about-image {
    width: 100%;
  }

  .cbp-about-image > img {
    min-height: 410px;
    border-radius: 18px 70px 18px 18px;
  }

  .cbp-about-badge {
    right: 12px;
    bottom: 18px;
  }

  .cbp-process-step {
    min-height: 0;
  }

  .cbp-process-step > span {
    margin-bottom: 36px;
  }

  .cbp-cta {
    padding-top: 0;
  }

  .cbp-cta-card {
    width: min(calc(100% - 20px), var(--cbp-container));
    padding: 36px 24px;
    border-radius: 22px;
  }

  .cbp-cta-card .cbp-button {
    width: 100%;
  }

  .cbp-footer-grid {
    gap: 40px;
  }

  .cbp-footer-grid > div:first-child {
    grid-column: auto;
  }

  .cbp-footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .cbp-site-header,
  .cbp-site-footer,
  .cbp-cta,
  .cbp-catalog-tools {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
