:root {
  --legal-bg: #060809;
  --legal-text: #ffffff;
  /* Same visual weight as home `.ca-rating-points-*` borders (white @ 10% on dark → black @ 10% on light hero) */
  --legal-stat-border: rgba(0, 0, 0, 0.1);
  --legal-hero-blue: #0437f4;
  --legal-hero-black: #030303;
  --legal-hero-muted: #979797;
  --legal-hero-pad-top: 86.4px;
  --legal-hero-pad-bottom: 64.8px;
  --legal-hero-block-gap: 64px;
  --legal-hero-top-gap: 87.2px;
}

body {
  background: var(--legal-bg);
  color: var(--legal-text);
}

.legal-main {
  min-height: 0;
  padding: 0;
  margin: 0;
  background: transparent;
}

/* ——— Hero (light section) ——— */
.legal-hero {
  background: #ffffff;
  color: var(--legal-hero-black);
  padding: var(--legal-hero-pad-top) max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2))
    var(--legal-hero-pad-bottom);
  box-sizing: border-box;
  overflow-x: hidden;
}

.legal-hero-inner {
  max-width: var(--ca-site-content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--legal-hero-block-gap);
}

.legal-hero-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--legal-hero-top-gap);
}

.legal-hero-top-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.4px;
  flex: 1 1 0;
  min-width: 0;
}

.legal-hero-tag {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  min-height: 20px;
  border: 1px solid var(--legal-hero-blue);
  border-radius: 32px;
  font-family: inherit;
  font-size: 9.6px;
  line-height: 11.2px;
  font-weight: 400;
  color: var(--legal-hero-blue);
}

.legal-hero-title {
  margin: 0;
  max-width: 660px;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw + 0.8rem, 64px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: var(--legal-hero-black);
}

.legal-hero-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35.2px;
  flex: 0 1 468.8px;
  min-width: 0;
}

.legal-hero-lead {
  margin: 0;
  max-width: 468.8px;
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw + 0.6rem, 22.4px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--legal-hero-muted);
}

.legal-hero-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.legal-hero-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48.8px;
  height: 48.8px;
  flex-shrink: 0;
  padding: 16px;
  box-sizing: border-box;
  background: var(--legal-hero-black);
  border-radius: 0 30.5px 30.5px 30.5px;
  color: #1142fa;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.legal-hero-icon-btn svg {
  display: block;
}

.legal-hero-icon-btn:hover,
.legal-hero-icon-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(3, 3, 3, 0.15);
}

.legal-hero-icon-btn:focus-visible {
  outline: 2px solid var(--legal-hero-blue);
  outline-offset: 2.4px;
}

.legal-hero-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14.4px 35.2px;
  margin-left: 0;
  background: var(--legal-hero-blue);
  border-radius: 100px;
  font-family: inherit;
  font-size: 14.4px;
  line-height: 19.2px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.legal-hero-book-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #ffffff;
}

.legal-hero-book-icon svg {
  display: block;
}

.legal-hero-book:hover,
.legal-hero-book:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(4, 55, 244, 0.35);
}

.legal-hero-book:focus-visible {
  outline: 2px solid var(--legal-hero-black);
  outline-offset: 2.4px;
}

/* Pull book button visually next to icon (no gap in Figma — slight overlap feel); use small negative margin or gap */
.legal-hero-cta-row .legal-hero-book {
  margin-left: -1px;
}

.legal-hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 1574 / 651;
  min-height: 640px;
  border-radius: 32px;
  background-color: #000000;
  overflow: hidden;
  isolation: isolate;
}

.legal-hero-video--native-controls .legal-hero-play {
  display: none;
}

.legal-hero-video--native-controls .legal-hero-video-media {
  z-index: 4;
}

.legal-hero-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  outline: none;
}

.legal-hero-video--playing .legal-hero-video-media {
  cursor: default;
}

@media (hover: none), (pointer: coarse) {
  .legal-hero-video--playing .legal-hero-video-media {
    cursor: pointer;
  }
}

/* While playing: always hide play/pause button — video plays continuously */
.legal-hero-video--playing .legal-hero-play {
  opacity: 0;
  pointer-events: none;
}

/* Match services page card slider arrows: white pill, #ccd8ff border, #0437f4 icon */
.legal-hero-play {
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  padding: 0;
  border: 1px solid #ccd8ff;
  border-radius: 50%;
  background: #ffffff;
  color: #0437f4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.legal-hero-play:hover,
.legal-hero-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
  border-color: rgba(4, 55, 244, 0.45);
  box-shadow: 0 4px 20px rgba(4, 55, 244, 0.12);
}

.legal-hero-play:focus-visible {
  outline: 2px solid #0437f4;
  outline-offset: 2.4px;
}

.legal-hero-play-icon {
  display: block;
  flex-shrink: 0;
}

.legal-hero-play-icon--play {
  width: 32px;
  height: auto;
  margin-left: 2px;
}

.legal-hero-play-icon--pause {
  display: none;
  width: 32px;
  height: auto;
}

.legal-hero-video--playing .legal-hero-play-icon--play {
  display: none;
}

.legal-hero-video--playing .legal-hero-play-icon--pause {
  display: block;
}

.legal-hero-stats {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 52.8px;
}

.legal-hero-stats-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 19.2px 32px;
  padding: 48px max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2)) 0;
  box-sizing: border-box;
  /* Full-viewport-width borders (break out of `.legal-hero-inner`) */
  width: 80vw;
  max-width: 80vw;
  margin-left: calc(50% - 40vw);
  margin-right: calc(50% - 40vw);
}

.legal-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12.8px;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 19.2px;
  border-right: 1px solid var(--legal-stat-border);
  box-sizing: border-box;
}

.legal-hero-stat--last {
  border-right: none;
  padding-right: 0;
}

.legal-hero-stat-value {
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw + 0.8rem, 64px);
  line-height: 1.125;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  text-align: start;
  color: #000000;
}

.legal-hero-stat-label {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(0.8rem, 0.96vw + 0.52rem, 18.4px);
  line-height: 1;
  text-transform: capitalize;
  text-align: start;
  color: #000000;
}

.legal-hero-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 12.8px 9.6px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.legal-hero-tag-pill {
  flex: 1 1 calc(25% - 9.6px);
  min-width: min(100%, 160px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px 16px;
  text-align: center;
  font-family: inherit;
  font-weight: 400;
  font-size: 12.8px;
  line-height: 14.4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000000;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)), #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

@media (max-width: 720px) {
  .legal-hero-stats {
    align-items: stretch;
  }

  .legal-hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex-wrap: unset;
    justify-content: stretch;
    justify-items: stretch;
    width: 80vw;
    max-width: 80vw;
    margin-left: calc(50% - 40vw);
    margin-right: calc(50% - 40vw);
    padding-left: max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2));
    padding-right: max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2));
  }

  .legal-hero-stat {
    flex: unset;
    min-width: 0;
    padding: 19.2px 16px;
    border-right: 1px solid var(--legal-stat-border);
    border-bottom: 1px solid var(--legal-stat-border);
    align-items: flex-start;
  }

  .legal-hero-stat-value,
  .legal-hero-stat-label {
    text-align: start;
    width: 100%;
  }

  .legal-hero-stat: nth-child(2n) {
    border-right: none;
  }

  .legal-hero-stat--last {
    border-right: none;
  }
}

@media (max-width: 613.6px) {
  :root {
    --legal-hero-pad-top: 43.2px;
    --legal-hero-pad-bottom: 32.4px;
    --legal-hero-block-gap: 32px;
    --legal-hero-top-gap: 43.2px;
  }

  .legal-hero-stats {
    gap: 26.4px;
    align-items: stretch;
  }

  .legal-hero-stats-row {
    padding-top: 24px;
    justify-items: stretch;
    width: 80vw;
    max-width: 80vw;
    margin-left: calc(50% - 40vw);
    margin-right: calc(50% - 40vw);
    padding-left: max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2));
    padding-right: max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2));
  }

  .legal-hero-stat {
    padding: 16px 12.8px;
    align-items: flex-start;
  }

  .legal-hero-stat-value,
  .legal-hero-stat-label {
    text-align: start;
    width: 100%;
  }

  .legal-hero-tag-pill {
    flex: 1 1 calc(50% - 6.4px);
    min-width: calc(50% - 6.4px);
    padding: 16px 11.2px;
    font-size: 11.2px;
  }
}

/* Services-style mobile hero: centered stack, teardrop + pill CTA in a row */
@media (max-width: 818.4px) {
  .legal-hero-top {
    flex-direction: column;
    align-items: center;
    gap: 28.8px;
    text-align: center;
  }

  .legal-hero-top-left {
    align-items: center;
    width: 100%;
  }

  .legal-hero-title {
    max-width: none;
    text-align: center;
  }

  .legal-hero-top-right {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
    align-items: center;
    gap: 20.8px;
  }

  .legal-hero-lead {
    max-width: min(642.4px, 100%);
    text-align: center;
    color: #000000;
  }

  .legal-hero-tag {
    font-family: inherit;
  }

  .legal-hero-cta-row {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }

  .legal-hero-book {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
  }
  .legal-hero-play {
    width: 48px;
    height: 48px;
  }
  .legal-hero-play-icon--play {
    width: 11.2px;
  }
  .legal-hero-play-icon--pause {
    width: 11.2px;
  }
}

@media (max-width: 512px) {
  .legal-hero {
    padding-top: 38.4px;
    padding-bottom: 41.6px;
  }

  .legal-hero-top {
    gap: 20.8px;
  }

  .legal-hero-tag {
    padding: 4.8px 8px;
    font-family: inherit;
  }

  .legal-hero-title {
    font-size: clamp(27.2px, 8vw, 41.6px);
  }

  .legal-hero-lead {
    font-size: clamp(13.6px, 3.36vw, 17.6px);
  }

  .legal-hero-icon-btn {
    width: 41.6px;
    height: 41.6px;
    padding: 12.8px;
    border-radius: 0 26px 26px 26px;
  }

  .legal-hero-book {
    min-height: 41.6px;
    padding: 11.2px 22.4px;
    font-family: inherit;
    font-size: 12.8px;
    line-height: 19.2px;
  }
}

@media (max-width: 383.2px) {
  .legal-hero-stats-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 80vw;
    max-width: 80vw;
    margin-left: calc(50% - 40vw);
    margin-right: calc(50% - 40vw);
    padding-left: max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2));
    padding-right: max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2));
  }

  .legal-hero-stat {
    border-right: none !important;
    border-bottom: 1px solid var(--legal-stat-border);
    padding: 16px 0 clamp(1rem, 3.2vw, 1.4rem);
    max-width: none;
    margin-inline: 0;
    align-items: flex-start;
  }

  .legal-hero-stat: last-child {
    border-bottom: none;
  }

  .legal-hero-tag-pill {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .legal-hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .legal-hero-cta-row .legal-hero-book {
    margin-left: -1px;
    width: auto;
    max-width: calc(100% - 41.6px);
  }

  .legal-hero-icon-btn {
    width: 41.6px;
    height: 41.6px;
    flex-shrink: 0;
  }
}

/* ——— Triptych (Frame 605) ——— */
.legal-triptych-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-triptych {
  background: #07090a;
  color: #ffffff;
  padding: 100px max(var(--ca-site-gutter-x), calc((80vw - var(--ca-site-content-max)) / 2));
  box-sizing: border-box;
}

.legal-triptych-inner {
  max-width: 1259.2px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22.4px;
  align-items: stretch;
}

.legal-triptych-card {
  border-radius: 12px;
  overflow: hidden;
  min-height: 461.6px;
  box-sizing: border-box;
}

.legal-triptych-card--media {
  background: #ffffff;
}

.legal-triptych-media-img {
  width: 100%;
  height: 100%;
  min-height: 461.6px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.legal-triptych-card--blue {
  position: relative;
  background: #1f5bf5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px clamp(16px, 3.2vw, 28.8px) clamp(22.4px, 4vw, 32px);
}

.legal-triptych-blue-text {
  margin: 0;
  max-width: 319.2px;
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(22.4px, 2.4vw, 33.6px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #ffffff;
  text-align: start;
}

.legal-triptych-card--stat {
  background: #ffffff;
  color: #000000;
}

.legal-triptych-stat-inner {
  height: 100%;
  min-height: 461.6px;
  box-sizing: border-box;
  padding: 48px 28.8px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(38.4px, 8vw, 144.8px);
}

.legal-triptych-stat-value {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(57.6px, 9.6vw, 104px);
  line-height: 1.26;
  letter-spacing: -4.8px;
  text-transform: capitalize;
  color: #1f5bf5;
  text-align: start;
}

.legal-triptych-stat-desc {
  margin: 0;
  max-width: 319.2px;
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(14.4px, 1.6vw, 19.2px);
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #000000;
  text-align: start;
}

@media (max-width: 960px) {
  .legal-triptych-inner {
    gap: 16px;
  }

  .legal-triptych-card,
  .legal-triptych-media-img,
  .legal-triptych-stat-inner {
    min-height: 384px;
  }
}

@media (max-width: 720px) {
  .legal-triptych {
    padding-top: 49.6px;
    padding-bottom: 49.6px;
  }

  .legal-triptych-inner {
    grid-template-columns: 1fr;
    max-width: 404.8px;
    margin-inline: auto;
  }

  .legal-triptych-card,
  .legal-triptych-media-img,
  .legal-triptych-stat-inner {
    min-height: 336px;
  }

  .legal-triptych-stat-inner {
    gap: 64px;
    padding: 32px 22.4px 25.6px;
  }
}

@media (max-width: 384px) {
  .legal-triptych {
    padding-top: 49.6px;
    padding-bottom: 49.6px;
  }

  .legal-triptych-inner {
    max-width: 100%;
  }

  .legal-triptych-card,
  .legal-triptych-media-img,
  .legal-triptych-stat-inner {
    min-height: 288px;
  }

  .legal-triptych-stat-inner {
    gap: 38.4px;
  }
}

/* Blog / innovations grid — legal page only (separate from services .about-innovations*) */
.legal-blog {
  background: #ffffff;
  color: #030303;
  padding: 57.6px 0 76.8px;
}

.legal-blog-inner {
  width: min(1292.8px, calc(100% - 64px));
  margin: 0 auto;
}

.legal-blog-header {
  width: min(654.1px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12.8px;
  text-align: center;
}

.legal-blog-pill {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  padding: 4.8px 8px;
  gap: 8px;
  border: 1px solid #0437f4;
  border-radius: 32px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 9.6px;
  line-height: 11.2px;
  color: #0437f4;
}

.legal-blog-title {
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(27.2px, 3.6vw, 44.8px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-align: center;
  color: #030303;
}

.legal-blog-grid {
  margin-top: 59.2px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9.6px;
}

.legal-blog-card {
  box-sizing: border-box;
  min-height: 373.6px;
  background: #f8fbfe;
  border: 1px solid rgba(190, 219, 255, 0.7);
  border-radius: 18px;
  overflow: hidden;
}

.legal-blog-media {
  height: 175.2px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(190, 219, 255, 0.7);
}

.legal-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.legal-blog-content {
  padding: 16px 16px 27.2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(373.6px - 175.2px);
}

.legal-blog-heading {
  margin: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 19.2px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #171717;
}

.legal-blog-link {
  margin-top: 12.8px;
  display: inline-flex;
  align-items: center;
  gap: 6.4px;
  width: fit-content;
  min-height: 38.4px;
  padding: 11.2px 16px;
  border-radius: 14px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 16px;
  letter-spacing: -0.35px;
  text-decoration-line: underline;
  color: #1142fa;
}

.legal-blog-link-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.legal-blog-link-icon svg {
  display: block;
}

@media (max-width: 960px) {
  .legal-blog-inner {
    width: min(1292.8px, calc(100% - 28.8px));
  }

  .legal-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 512px) {
  .legal-blog {
    padding: 49.6px 0 59.2px;
  }

  .legal-blog-grid {
    grid-template-columns: 1fr;
    margin-top: 30.4px;
  }

  .legal-blog-card {
    min-height: 336px;
  }

  .legal-blog-content {
    padding: 14.4px 12.8px 20.8px;
  }

  .legal-blog-heading {
    font-size: 17.6px;
  }

  .legal-blog-link {
    font-size: 12.8px;
    min-height: 35.2px;
    padding: 9.6px 12.8px;
  }
}

/* Legal only: contact form eyebrow pill — same layer treatment as hero breadcrumb (.legal-hero-tag) */
body.page-legal .contact-inquiry-pill {
  box-sizing: border-box;
  background: transparent;
  border: 1px solid var(--legal-hero-blue);
  border-radius: 32px;
  font-family: inherit;
  font-size: 9.6px;
  line-height: 11.2px;
  font-weight: 400;
  color: var(--legal-hero-blue);
}

/* Legal page only: light navbar (does not affect other pages) */
body.page-legal .ca-navbar {
  background: #ffffff;
  color: #141515;
}

body.page-legal .ca-navbar-brand {
  color: #141515;
}

body.page-legal .ca-navbar-link {
  color: #141515;
}

body.page-legal .ca-navbar-toggle {
  color: #141515;
}

@media (max-width: 818.4px) {
  body.page-legal .ca-navbar-nav {
    border-top-color: rgba(0, 0, 0, 0.12);
  }

  body.page-legal .ca-navbar-nav-item {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }
}

body.page-legal .ca-navbar-cta-button {
  background: #000000;
}

body.page-legal .ca-navbar-cta-text {
  color: #ffffff;
}

body.page-legal .ca-navbar-cta-icon-wrapper {
  background: #ffffff;
  color: #000000;
}

body.page-legal .ca-navbar-cta-button:hover,
body.page-legal .ca-navbar-cta-button:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
}