@font-face {
  font-family: "Charis SIL";
  src: local("Charis SIL"), url("../fonts/charis-sil-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Charis SIL";
  src: local("Charis SIL Bold"), url("../fonts/charis-sil-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Regular"), url("../fonts/open-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans SemiBold"), url("../fonts/open-sans-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Bold"), url("../fonts/open-sans-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --light: #f5f9ff;
  --light-blue: #afd7fc;
  --dark-blue: #313e53;
  --red: #ff5757;
  --red-action: #d33d47;
  --red-ink: #c93641;
  --yellow: #d3e9fd;
  --dark: #1e2634;
  --black: #151b25;
  --ink: #1e2634;
  --muted: rgba(20, 24, 29, 0.7);
  --line: rgba(20, 24, 29, 0.3);
  --line-soft: rgba(20, 24, 29, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --head: "Charis SIL", Georgia, "Times New Roman", serif;
  --text: "Open Sans", Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 18px 50px rgba(20, 24, 29, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--text);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--dark);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-180%);
  transition: opacity 160ms var(--ease-standard), transform 160ms var(--ease-standard);
}

.skip-link:focus,
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.container {
  width: min(1312px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 80;
  top: 32px;
  left: 0;
  right: 0;
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 22px;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(20, 24, 29, 0.14);
  animation: headerIn 700ms var(--ease-out) 120ms both;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
}

.brand::before {
  content: "";
  display: none;
  width: 62px;
  height: 68px;
  flex: 0 0 auto;
  background: url("../img/cbl-sign-light.svg") center / contain no-repeat;
}

.brand img {
  display: block;
  width: 204px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 1.35vw, 24px);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms var(--ease-standard);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--red);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-nav .nav-georgia-mobile {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  white-space: nowrap;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms var(--ease-standard);
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 206px;
  min-height: 56px;
  padding: 0 24px;
  color: var(--white) !important;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  transition: background 180ms var(--ease-standard), color 180ms var(--ease-standard), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-standard);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 14px 28px rgba(255, 87, 87, 0.22);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
  transition: transform 220ms var(--ease-out), opacity 180ms var(--ease-standard);
}

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

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

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

.hero {
  position: relative;
  min-height: min(760px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(20, 24, 29, 0.04) 0%, rgba(20, 24, 29, 0.84) 86%),
    linear-gradient(90deg, rgba(20, 24, 29, 0.22) 0%, rgba(20, 24, 29, 0.06) 52%, rgba(20, 24, 29, 0.22) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.05);
  animation: heroImageSettle 1800ms var(--ease-out) both;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: block;
  padding: 142px 0 38px;
}

.hero-copy {
  max-width: 900px;
}

.hero-kicker {
  max-width: 610px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 25px;
  line-height: 1.35;
  animation: heroCopyIn 820ms var(--ease-out) 280ms both;
}

.hero-kicker-links a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease-standard), border-color 180ms var(--ease-standard);
}

.hero-kicker-links a:hover,
.hero-kicker-links a:focus-visible {
  color: var(--white);
  border-color: var(--red);
  outline: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--head);
  font-weight: 700;
}

h1 {
  max-width: 900px;
  font-size: 76px;
  line-height: 1.04;
  text-wrap: balance;
  animation: heroCopyIn 980ms var(--ease-out) 420ms both;
}

h2 {
  font-size: 64px;
  line-height: 1.1;
}

h3,
h4 {
  font-family: var(--text);
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-standard), border-color 180ms var(--ease-standard), color 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled,
.button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.button-primary {
  color: var(--white) !important;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 34px rgba(255, 87, 87, 0.28);
}

.button-outline {
  color: var(--red);
  background: transparent;
  border-color: var(--red);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white) !important;
  background: var(--red);
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.button-glass:hover,
.button-glass:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.hero-button {
  min-width: 318px;
  animation: heroCopyIn 860ms var(--ease-out) 620ms both;
}

.hero-lead {
  max-width: 790px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.42;
  animation: heroCopyIn 880ms var(--ease-out) 520ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: heroCopyIn 860ms var(--ease-out) 620ms both;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  animation: heroCopyIn 860ms var(--ease-out) 720ms both;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 96px 0;
}

.route-section {
  padding: 64px 0;
  background: var(--light);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  min-height: 242px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(20, 24, 29, 0.06);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-standard), border-color 220ms var(--ease-standard);
}

.route-card:hover,
.route-card:focus-visible {
  border-color: rgba(255, 87, 87, 0.42);
  box-shadow: 0 18px 42px rgba(20, 24, 29, 0.1);
  transform: translateY(-3px);
}

.route-card span {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
}

.route-card strong {
  margin-top: 34px;
  font-family: var(--text);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}

.route-card em {
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.48;
}

.proof-band {
  color: var(--white);
  background: var(--dark);
}

.proof-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-fact {
  display: flex;
  min-width: 0;
  min-height: 146px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-left: 1px solid var(--line-dark);
  transition: background 200ms var(--ease-standard), transform 220ms var(--ease-out);
}

.proof-fact:first-child {
  border-left: 0;
}

.proof-fact:hover,
.proof-fact:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.proof-fact strong {
  color: var(--light-blue);
  font-family: var(--head);
  font-size: 42px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.proof-fact:hover strong,
.proof-fact:focus-visible strong {
  color: var(--red);
}

.proof-fact span {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.about-section {
  position: relative;
  isolation: isolate;
  padding-top: 126px;
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 76px;
  right: -130px;
  width: min(48vw, 630px);
  aspect-ratio: 1050.3 / 595.3;
  background: url("../img/cbl-brand-elements.svg") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.section-heading.wide {
  margin-bottom: 52px;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.home-section-heading .section-heading.wide {
  margin-bottom: 0;
}

.home-section-heading .section-heading > p:last-child {
  max-width: 760px;
}

.home-secondary-card {
  display: none !important;
}

.section-heading p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.44;
}

.intro-copy p,
.audience-copy p,
.cases-copy p,
.contact-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.36;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.about-visual {
  margin-top: 78px;
}

.about-visual img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(1);
  transition: filter 420ms var(--ease-standard), transform 700ms var(--ease-out);
}

.about-visual:hover img {
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.01);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  margin-top: 36px;
}

.stats-link {
  display: block;
  min-width: 0;
  color: inherit;
  transition: transform 220ms var(--ease-out);
}

.stats-link:hover,
.stats-link:focus-visible {
  outline: none;
  transform: translateY(-3px);
}

.stats-link:hover strong,
.stats-link:focus-visible strong {
  color: var(--black);
}

.stats-row strong {
  display: block;
  padding-bottom: 14px;
  color: var(--ink);
  font-family: var(--head);
  font-size: 48px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(var(--red), var(--red)) left bottom / 56px 4px no-repeat;
}

.stats-row span,
.stats-note p {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.36;
}

.stats-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stats-note p {
  max-width: 920px;
  margin: 0;
  font-size: 18px;
}

.stats-note .button {
  width: auto;
  min-width: 208px;
}

.practices-section {
  padding-top: 80px;
}

.practice-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.practice-preview {
  grid-column: auto;
  min-width: 0;
  transition: transform 260ms var(--ease-out);
}

.practice-actions {
  display: grid;
  gap: 10px;
}

.practice-preview.wide-card {
  grid-column: span 3;
}

.practice-preview img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(1);
  transition: filter 360ms var(--ease-standard), transform 520ms var(--ease-out), box-shadow 360ms var(--ease-standard);
}

.practice-preview h3 {
  margin-top: 24px;
  font-family: var(--text);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.22;
}

.practice-preview p {
  min-height: 52px;
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.practice-preview a {
  display: inline-flex;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms var(--ease-standard), transform 220ms var(--ease-out);
}

.practice-preview .page-link {
  width: fit-content;
  color: var(--ink);
  border-bottom-color: var(--line-soft);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.78;
}

.practice-preview:hover,
.practice-preview:focus-within {
  transform: translateY(-3px);
}

.practice-preview:hover img,
.practice-preview:focus-within img {
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.018);
  box-shadow: 0 18px 36px rgba(20, 24, 29, 0.12);
}

.practice-preview:hover a,
.practice-preview:focus-within a {
  transform: translateX(3px);
}

.practice-preview:hover .page-link,
.practice-preview:focus-within .page-link {
  color: var(--red);
  border-bottom-color: var(--red);
  opacity: 1;
}

.audience-section {
  padding-top: 84px;
  background: var(--light);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.audience-copy {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 28px;
}

.audience-copy .section-kicker {
  margin: 0 0 -10px;
  color: var(--red);
}

.audience-copy .section-actions {
  margin-top: 10px;
}

.audience-copy .button {
  width: min(100%, 460px);
}

.audience-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience-situation-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 24, 29, 0.05);
  transition: transform 220ms var(--ease-out), border-color 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
}

.audience-situation-card:hover,
.audience-situation-card:focus-visible {
  border-color: rgba(255, 87, 87, 0.46);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(20, 24, 29, 0.1);
}

.audience-situation-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.audience-situation-card strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.audience-situation-card.is-featured {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.audience-situation-card.is-featured span {
  color: var(--light-blue);
}

.trusted-panel.audience-trust-panel {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 34px;
  color: var(--white);
  background: var(--dark);
  border: 0;
  border-radius: var(--radius-lg);
}

.audience-trust-panel .trusted-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.audience-trust-panel .trusted-logo {
  min-height: 104px;
  padding: 18px;
}

.audience-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-mosaic img,
.mosaic-tile {
  min-height: 184px;
  border-radius: var(--radius);
}

.audience-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 360ms var(--ease-standard), transform 520ms var(--ease-out);
}

.audience-mosaic img:hover {
  filter: grayscale(1) contrast(1.12) brightness(1.04);
  transform: scale(1.012);
}

.mosaic-tile {
  display: flex;
  align-items: flex-start;
  padding: 22px;
  background: var(--light);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
  transition: background 260ms var(--ease-standard), transform 260ms var(--ease-out);
}

.mosaic-tile:hover {
  background: #d3e9fd;
  transform: translateY(-2px);
}

.clients-section {
  color: var(--white);
  background: var(--dark);
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.clients-copy .section-heading {
  margin-bottom: 34px;
}

.clients-copy p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 24px;
  line-height: 1.38;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.client-card {
  min-height: 224px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-standard), border-color 260ms var(--ease-standard);
}

.client-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}

.client-card span {
  color: var(--red);
  font-family: var(--head);
  font-size: 42px;
  line-height: 1;
}

.client-card strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.client-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.46;
}

.trusted-panel {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 44px;
  border-top: 1px solid var(--line-dark);
}

.trusted-eyebrow {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.trusted-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.trusted-logo {
  min-height: 128px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
}

.trusted-logo-dark {
  background: var(--black);
}

.trusted-logo img {
  width: 100%;
  max-width: 150px;
  max-height: 76px;
  object-fit: contain;
}

.advantages-section {
  padding-top: 78px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(164px, auto);
  gap: 16px;
}

.advantages-grid article {
  display: grid;
  align-content: space-between;
  justify-items: stretch;
  padding: 26px;
  color: var(--ink);
  background: var(--light);
  border-radius: var(--radius);
  transition: background 260ms var(--ease-standard), color 260ms var(--ease-standard), transform 260ms var(--ease-out), box-shadow 260ms var(--ease-standard);
}

.advantages-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20, 24, 29, 0.1);
}

.advantages-grid article:nth-child(1) {
  grid-column: 2;
}

.advantages-grid article:nth-child(2) {
  grid-column: 3;
}

.advantages-grid article:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.advantages-grid article:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.advantages-grid .is-tall {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-content: start;
  row-gap: 16px;
}

.advantages-grid .is-dark {
  color: var(--white);
  background: var(--dark);
}

.advantages-grid span {
  font-family: var(--head);
  font-size: 44px;
  line-height: 1;
}

.advantages-grid h3 {
  margin-top: 36px;
  font-family: var(--text);
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.advantages-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.advantages-grid .is-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.cases-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.cases-copy p {
  max-width: 360px;
  margin-top: 46px;
  font-size: 24px;
}

.case-list {
  display: grid;
}

.case-row {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(300px, 0.46fr) minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 220ms var(--ease-standard), padding-left 260ms var(--ease-out);
}

.case-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}

.case-row::after {
  content: "↗";
  justify-self: end;
  color: var(--black);
  font-size: 32px;
  line-height: 1;
  transition: color 220ms var(--ease-standard), transform 260ms var(--ease-out);
}

.case-row span {
  font-family: var(--head);
  font-size: 44px;
}

.case-row strong {
  min-width: 0;
  font-family: var(--head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.case-row em {
  min-width: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
  transition: color 220ms var(--ease-standard);
}

.case-row:hover,
.case-row:focus-visible {
  padding-left: 12px;
}

.case-row:hover::before,
.case-row:focus-visible::before {
  transform: scaleX(1);
}

.case-row:hover::after,
.case-row:focus-visible::after {
  color: var(--red);
  transform: translate(3px, -3px);
}

.case-row:hover em,
.case-row:focus-visible em {
  color: rgba(20, 24, 29, 0.88);
}

.geography-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--light);
}

.geography-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: 20px;
  width: min(44vw, 600px);
  aspect-ratio: 1050.3 / 595.3;
  background: url("../img/cbl-brand-elements.svg") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.geography-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.5fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.geography-copy .section-heading {
  margin-bottom: 34px;
}

.geography-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.38;
}

.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.geography-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.region-grid span,
.region-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
}

.region-grid a {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
  transition: color 180ms var(--ease-standard), background 180ms var(--ease-standard);
}

.region-grid a:hover,
.region-grid a:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.geography-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.geography-map img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 300px;
  object-fit: contain;
  opacity: 0.9;
  transform-origin: center;
  animation: cblMapBreath 9200ms ease-in-out infinite;
}

.cbl-world-routes {
  position: absolute;
  inset: 28px;
  z-index: 2;
  pointer-events: none;
  transform-origin: center;
  animation: cblMapBreath 9200ms ease-in-out infinite;
}

.cbl-world-routes svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cbl-map-route {
  fill: none;
  stroke: var(--red);
  stroke-width: 0.48;
  stroke-linecap: round;
  stroke-dasharray: 4 5;
  opacity: 0.72;
  filter: drop-shadow(0 0 6px rgba(255, 87, 87, 0.3));
  animation: cblRouteFlow 6500ms linear infinite;
}

.cbl-map-route.route-2 {
  stroke: var(--yellow);
  animation-duration: 7800ms;
}

.cbl-map-route.route-3 {
  animation-duration: 7200ms;
}

.cbl-map-route.route-4 {
  stroke: var(--light-blue);
  animation-duration: 8600ms;
}

.cbl-map-pin {
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 87, 87, 0.16), 0 8px 18px rgba(20, 24, 29, 0.18);
  transform: translate(-50%, -50%);
  animation: cblPinPulse 2600ms ease-in-out infinite;
}

.cbl-map-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 87, 87, 0.36);
  border-radius: 50%;
  animation: cblPinRing 2600ms ease-out infinite;
}

.cbl-map-pin i {
  position: absolute;
  left: 18px;
  top: 50%;
  min-width: max-content;
  padding: 6px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(20, 24, 29, 0.12);
  opacity: 0;
  transform: translate(0, -50%) translateX(-4px);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 180ms var(--ease-standard), transform 220ms var(--ease-out);
}

.geography-map:hover .cbl-map-pin i,
.geography-map:focus-within .cbl-map-pin i {
  opacity: 1;
  transform: translate(0, -50%) translateX(0);
}

.pin-belgium {
  left: 37%;
  top: 43%;
}

.pin-georgia {
  left: 52%;
  top: 50%;
  animation-delay: 180ms;
}

.pin-russia {
  left: 62%;
  top: 38%;
  animation-delay: 360ms;
}

.pin-uae {
  left: 58%;
  top: 60%;
  animation-delay: 540ms;
}

.pin-turkey {
  left: 50%;
  top: 52%;
  animation-delay: 720ms;
}

.pin-asia {
  left: 76%;
  top: 53%;
  animation-delay: 900ms;
}

.cbl-map-brand {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(30, 38, 52, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(20, 24, 29, 0.18);
  text-transform: uppercase;
}

.cbl-map-brand strong {
  font-family: var(--head);
  font-size: 24px;
  line-height: 1;
}

.cbl-map-brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.packages-section {
  background: var(--light);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.package-card {
  min-height: 526px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(20, 24, 29, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(20, 24, 29, 0.08);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-standard);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(20, 24, 29, 0.12);
}

.package-card-featured {
  color: var(--white);
  background: var(--dark);
  transform: translateY(-18px);
}

.package-card-featured:hover {
  transform: translateY(-22px);
}

.package-card span {
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-top: 18px;
  font-family: var(--text);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.18;
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.45;
}

.package-card-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.package-card .button {
  margin-top: auto;
}

.intelligence-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.intelligence-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(30vw, 390px);
  height: 100%;
  background: url("../img/cbl-pattern-dark.svg") center / cover no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.intelligence-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.intelligence-heading .section-kicker {
  margin: 0 0 14px;
  color: var(--light-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.intelligence-heading h2 {
  max-width: 820px;
  margin: 0;
}

.intelligence-heading > div:last-child > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.intelligence-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms var(--ease-standard);
}

.intelligence-card:hover,
.intelligence-card:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.intelligence-card > span {
  color: var(--light-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.intelligence-card h3 {
  max-width: 570px;
  margin: 26px 0;
  font-family: var(--head);
  font-size: 32px;
  line-height: 1.12;
}

.intelligence-card em {
  margin-top: auto;
  color: var(--white);
  font-style: normal;
  font-weight: 600;
}

.expertise-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--light);
}

.expertise-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(28vw, 360px);
  height: 100%;
  background: url("../img/cbl-pattern-light.svg") center / cover no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: start;
}

.expertise-heading {
  position: sticky;
  top: 28px;
}

.expertise-heading .section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.expertise-heading h2 {
  max-width: 640px;
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

.expertise-heading p:not(.section-kicker) {
  margin: 24px 0 28px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.42;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.expertise-card,
.expertise-feed article {
  min-width: 0;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow-wrap: break-word;
}

.expertise-card.is-featured {
  grid-row: span 2;
  min-height: 478px;
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.expertise-card span,
.expertise-feed span {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.expertise-card.is-featured span {
  color: var(--light-blue);
}

.expertise-card h3,
.expertise-feed h3 {
  margin: 32px 0 16px;
  font-family: var(--head);
  font-size: 30px;
  line-height: 1.1;
}

.expertise-card p,
.expertise-feed p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.expertise-card.is-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.expertise-feed {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.expertise-feed article {
  min-height: 250px;
}

.expertise-photo-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 6px 0 12px;
  scrollbar-color: var(--red) rgba(20, 24, 29, 0.12);
}

.expertise-photo-strip figure {
  scroll-snap-align: start;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.expertise-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.expertise-photo-strip figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.team-section {
  position: relative;
  isolation: isolate;
  padding-top: 84px;
  overflow: hidden;
  background: var(--white);
}

.team-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -110px;
  bottom: 36px;
  width: min(46vw, 620px);
  aspect-ratio: 1050.3 / 595.3;
  background: url("../img/cbl-brand-elements.svg") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.team-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: start;
  margin-bottom: 44px;
}

.team-heading p {
  max-width: 390px;
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.person-card {
  position: relative;
  min-width: 0;
  margin-top: 0 !important;
  transition: transform 300ms var(--ease-out);
}

.person-card img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  object-position: center top;
  background: var(--light);
  filter: grayscale(1);
  transition: filter 360ms var(--ease-standard), transform 520ms var(--ease-out), box-shadow 360ms var(--ease-standard);
}

.person-card:hover {
  transform: translateY(-4px);
}

.person-card:hover img {
  filter: grayscale(1) contrast(1.12) brightness(1.05);
  transform: scale(1.012);
  box-shadow: 0 18px 34px rgba(20, 24, 29, 0.14);
}

.person-card h3 {
  margin-top: 14px;
  font-family: var(--text);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.person-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.person-card::after {
  content: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: none;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(20, 24, 29, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 220ms var(--ease-standard), transform 220ms var(--ease-out);
}

.person-card:hover::after,
.person-card:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.cbl-detail-link {
  cursor: pointer;
}

.cbl-person-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 0 0 3px;
  color: var(--red);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: color 180ms var(--ease-standard), transform 220ms var(--ease-out);
}

.person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
}

.cbl-person-more:hover,
.cbl-person-more:focus-visible {
  color: var(--black);
  outline: none;
  transform: translateX(3px);
}

body.cbl-detail-open {
  overflow: hidden;
}

.cbl-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease-standard), visibility 220ms var(--ease-standard);
}

.cbl-detail-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cbl-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 29, 0.72);
  backdrop-filter: blur(4px);
}

.cbl-detail-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(82vh, 780px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms var(--ease-out);
}

.cbl-detail-modal.is-open .cbl-detail-dialog {
  transform: translateY(0) scale(1);
}

.cbl-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--light);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  transition: background 180ms var(--ease-standard), transform 180ms var(--ease-out);
}

.cbl-detail-close::before,
.cbl-detail-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--dark);
  transform-origin: center;
}

.cbl-detail-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cbl-detail-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cbl-detail-close:hover,
.cbl-detail-close:focus-visible {
  background: #d3e9fd;
  outline: none;
  transform: rotate(90deg);
}

.cbl-detail-content {
  overflow: auto;
  padding: 46px 52px 42px;
}

.cbl-detail-eyebrow {
  margin: 0 56px 16px 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.cbl-detail-title {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--head);
  font-size: 42px;
  line-height: 1.08;
}

.cbl-detail-role {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.cbl-detail-intro {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.cbl-detail-intro p,
.cbl-detail-section p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.56;
}

.cbl-detail-sections {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.cbl-detail-section {
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

.cbl-detail-section h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.cbl-detail-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cbl-detail-section li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.cbl-detail-section li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.cbl-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cbl-detail-actions .button {
  min-width: 230px;
}

.cbl-cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 290;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(20, 24, 29, 0.18);
}

.cbl-cookie-banner.is-hidden {
  display: none;
}

.cbl-cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.cbl-cookie-banner a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.cbl-cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cbl-cookie-actions .button {
  min-height: 46px;
  padding: 0 20px;
  white-space: nowrap;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line-soft);
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
}

.faq-item[open] > p {
  animation: faqAnswerIn 240ms var(--ease-out) both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-row:hover::after,
.case-row:focus-visible::after {
  transform: translate(3px, -3px);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.contact-section {
  position: relative;
  isolation: isolate;
  padding-bottom: 118px;
  overflow: hidden;
  background: var(--white);
}

.contact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(36vw, 470px);
  height: 100%;
  background: url("../img/cbl-pattern-light.svg") center / cover no-repeat;
  opacity: 0.74;
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
}

.contact-copy h2 {
  margin-bottom: 42px;
}

.contact-copy p {
  max-width: 540px;
  margin-bottom: 34px;
  font-size: 26px;
  font-weight: 700;
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 8px;
}

.contact-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--light);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.intake-form {
  display: grid;
  gap: 16px;
}

.intake-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intake-progress[hidden] {
  display: none;
}

.intake-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 11px 10px;
  color: var(--muted);
  border-bottom: 2px solid var(--line-soft);
  font-size: 12px;
  font-weight: 700;
}

.intake-progress li span {
  color: inherit;
  font-size: 10px;
}

.intake-progress li.is-complete {
  color: var(--ink);
  border-color: var(--light-blue);
}

.intake-progress li.is-active {
  color: var(--ink);
  border-color: var(--red);
}

.intake-step {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 20px 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
}

.intake-step legend {
  width: 100%;
  margin: 0 0 2px;
  padding: 0;
  color: var(--ink);
  font-family: var(--head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.intake-form.is-enhanced .intake-step {
  padding-bottom: 2px;
  border-bottom: 0;
}

.intake-form.is-enhanced .intake-step[hidden] {
  display: none;
}

.intake-step-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.intake-form.is-enhanced .intake-step-actions,
.intake-form:not(.is-enhanced) .intake-submit-actions {
  display: flex;
}

.intake-form:not(.is-enhanced) [data-intake-back],
.intake-form:not(.is-enhanced) [data-intake-next] {
  display: none;
}

.intake-step-actions [data-intake-next],
.intake-submit-actions [data-intake-submit] {
  margin-left: auto;
}

.intake-step-actions .button {
  min-width: 148px;
}

.intake-submit-actions [data-intake-submit] {
  min-width: 208px;
}

.intake-review {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--light);
  border-top: 2px solid var(--light-blue);
}

.intake-review[hidden] {
  display: none;
}

.intake-review div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--line-soft);
}

.intake-review div:last-child {
  border-right: 0;
}

.intake-review span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.intake-review strong {
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intake-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--dark);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}

.intake-context[hidden] {
  display: none;
}

.intake-context > div {
  display: grid;
  gap: 2px;
}

.intake-context span {
  color: var(--light-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.intake-context strong {
  font-size: 15px;
}

.intake-context button {
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.intake-form label {
  display: grid;
  gap: 7px;
}

.intake-form label > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--ink);
  background: var(--light);
  outline: none;
  font-size: 16px;
  transition: background 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard), transform 180ms var(--ease-out);
}

.intake-form textarea {
  min-height: 138px;
  resize: vertical;
}

.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus {
  box-shadow: 0 0 0 2px var(--red);
  background: var(--white);
  transform: translateY(-1px);
}

.intake-form [aria-invalid="true"] {
  box-shadow: 0 0 0 2px var(--red-action);
  background: #fff7f7;
}

.checkbox {
  display: grid !important;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px !important;
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.checkbox input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--red);
}

.checkbox span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
}

.checkbox a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.intake-form .button {
  width: 100%;
}

.intake-form.is-enhanced .intake-step-actions .button {
  width: auto;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: #27734f;
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: var(--red-ink);
  font-weight: 700;
}

.intake-direct {
  margin: -4px 0 0 !important;
  color: var(--muted);
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.intake-direct a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.contact-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(1.04);
  transition: filter 420ms var(--ease-standard), transform 700ms var(--ease-out);
}

.contact-media:hover img {
  filter: grayscale(1) contrast(1.1);
  transform: scale(1.01);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 36px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(30vw, 390px);
  height: 100%;
  background: url("../img/cbl-pattern-dark.svg") center / cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.footer-grid > * {
  min-width: 0;
}

.page-footer-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
}

.page-footer-grid > nav {
  display: grid;
  gap: 8px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer::before {
  background-image: url("../img/cbl-sign-dark.svg");
}

.brand-footer img {
  width: 210px;
}

.footer-brand {
  display: grid;
  gap: 30px;
}

.footer-brand > img {
  width: min(210px, 100%);
}

.footer-brand a:not(.brand),
.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 16px;
}

.footer-branch-link {
  color: var(--white) !important;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-policy-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-policy-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.footer-legal {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
}

.footer-bottom a:last-child {
  justify-self: end;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms var(--ease-standard), transform 520ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal.reveal-image {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 720ms var(--ease-out), filter 320ms var(--ease-standard), transform 520ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: clip-path;
}

.cbl-scroll-progress {
  position: fixed;
  z-index: 160;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.cbl-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-action);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 90ms linear;
}

.cbl-back-to-top {
  position: fixed;
  z-index: 110;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 24, 29, 0.2);
  font-size: 23px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms var(--ease-standard), transform 180ms var(--ease-out), background-color 180ms var(--ease-standard);
}

.cbl-back-to-top:hover,
.cbl-back-to-top:focus-visible {
  background: var(--red-action);
}

.cbl-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.motion-ready .reveal.reveal-image.is-visible {
  clip-path: inset(0 0 0 0);
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cblMapBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018);
  }
}

@keyframes cblRouteFlow {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes cblPinPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@keyframes cblPinRing {
  0% {
    opacity: 0.72;
    transform: scale(0.62);
  }

  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@media (max-width: 1520px) {
  .header-inner {
    gap: 18px;
    padding: 0 18px;
  }

  .brand img {
    width: 204px;
  }

  .site-nav {
    gap: 8px;
    font-size: 13px;
  }

  .header-tools {
    gap: 12px;
  }

  .header-cta {
    min-width: 178px;
    padding: 0 18px;
  }
}

@media (max-width: 1280px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 1160px) {
  .container {
    width: min(100% - 44px, 1312px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 10px;
    font-size: 13px;
  }

  .header-cta {
    min-width: 160px;
    padding: 0 18px;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 56px;
  }

  .hero {
    min-height: 680px;
  }

  .route-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .practice-preview,
  .practice-preview.wide-card {
    grid-column: auto;
  }

  .clients-layout,
  .geography-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .trusted-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .package-card,
  .package-card-featured,
  .package-card-featured:hover {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-footer-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.8fr) minmax(200px, 1fr);
  }
}

@media (max-width: 1080px) {
  .site-header {
    top: 16px;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 14px;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    top: 96px;
    left: 22px;
    right: 22px;
    z-index: 100;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - 118px);
    padding: 10px 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 18px;
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .site-nav.is-open .nav-georgia-mobile {
    display: block;
    color: var(--red);
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .header-tools {
    display: none;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  .hero-content,
  .about-intro,
  .audience-layout,
  .cases-layout,
  .clients-layout,
  .geography-layout,
  .expertise-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 26px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .hero-button {
    width: min(100%, 360px);
    min-width: 0;
  }

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

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

  .proof-fact:nth-child(odd) {
    border-left: 0;
  }

  .proof-fact:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .expertise-heading {
    position: static;
  }

  .audience-copy {
    position: static;
  }

  .expertise-feed {
    grid-column: auto;
  }

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

  .advantages-grid article,
  .advantages-grid article:nth-child(1),
  .advantages-grid article:nth-child(2),
  .advantages-grid article:nth-child(4),
  .advantages-grid article:nth-child(5),
  .advantages-grid .is-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .intelligence-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-media img {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-note {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stats-note .button {
    width: min(100%, 320px);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1312px);
  }

  .brand {
    min-height: 68px;
  }

  .brand::before {
    display: block;
  }

  .brand img {
    display: none;
  }

  .hero {
    min-height: min(760px, 100svh);
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-content {
    padding: 116px 0 30px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-kicker,
  .hero-lead,
  .intro-copy p,
  .audience-copy p,
  .cases-copy p,
  .contact-copy p {
    font-size: 19px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero-lead {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-proof {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .about-section {
    padding-top: 82px;
  }

  .about-visual {
    margin-top: 44px;
  }

  .proof-band-grid {
    grid-template-columns: 1fr;
  }

  .proof-fact,
  .proof-fact:nth-child(odd) {
    min-height: 128px;
    padding: 24px 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .proof-fact:first-child {
    border-top: 0;
  }

  .proof-fact span {
    max-width: none;
  }

  .stats-row,
  .practice-preview-grid,
  .route-grid,
  .audience-situation-grid,
  .audience-mosaic,
  .client-grid,
  .trusted-logo-grid,
  .advantages-grid,
  .package-grid,
  .intelligence-grid,
  .expertise-grid,
  .expertise-feed,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-section-heading,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .intake-progress li {
    gap: 5px;
    padding: 10px 7px;
    font-size: 11px;
  }

  .intake-review {
    grid-template-columns: 1fr;
  }

  .intake-review div,
  .intake-review div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .intake-review div:last-child {
    border-bottom: 0;
  }

  .intake-form.is-enhanced .intake-step-actions,
  .intake-form:not(.is-enhanced) .intake-submit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intake-form.is-enhanced .intake-step-actions .button {
    width: 100%;
    margin-left: 0;
  }

  .intake-submit-actions [data-intake-submit] {
    order: -1;
  }

  .home-section-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .home-section-heading .button {
    width: 100%;
  }

  .audience-situation-card {
    min-height: 164px;
  }

  .trusted-panel.audience-trust-panel {
    padding: 22px;
  }

  .stats-row {
    gap: 28px;
  }

  .intelligence-card {
    min-height: 230px;
    padding: 28px;
  }

  .intelligence-card h3 {
    font-size: 28px;
  }

  .expertise-heading h2 {
    font-size: 38px;
  }

  .expertise-card.is-featured {
    min-height: 0;
  }

  .expertise-card,
  .expertise-feed article {
    min-height: 0;
    padding: 24px;
  }

  .expertise-card h3,
  .expertise-feed h3 {
    margin-top: 24px;
    font-size: 27px;
  }

  .expertise-photo-strip {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .stats-row strong {
    font-size: 42px;
    line-height: 1;
  }

  .practice-preview p {
    min-height: 0;
  }

  .audience-layout,
  .about-intro,
  .cases-layout,
  .clients-layout,
  .geography-layout,
  .faq-layout,
  .contact-layout {
    gap: 38px;
  }

  .audience-mosaic img,
  .mosaic-tile {
    min-height: 150px;
  }

  .team-heading {
    display: grid;
  }

  .person-card:nth-child(2),
  .person-card:nth-child(6) {
    margin-top: 0;
  }

  .case-row {
    grid-template-columns: 72px 1fr 28px;
    gap: 16px;
  }

  .case-row strong {
    grid-column: 2;
  }

  .case-row em {
    grid-column: 2 / 4;
  }

  .clients-copy p,
  .geography-copy p {
    font-size: 20px;
  }

  .client-card,
  .trusted-logo,
  .package-card,
  .geography-map {
    padding: 22px;
  }

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

  .package-card {
    min-height: 0;
  }

  .geography-map img {
    min-height: 220px;
  }

  .cbl-world-routes {
    inset: 22px;
  }

  .cbl-map-brand {
    left: 22px;
    bottom: 22px;
    padding: 9px 10px;
  }

  .cbl-map-brand strong {
    font-size: 20px;
  }

  .cbl-map-pin i {
    display: none;
  }

  .faq-item summary {
    padding-right: 40px;
    font-size: 20px;
  }

  .faq-item p {
    font-size: 16px;
  }

  .cbl-detail-modal {
    padding: 12px;
  }

  .cbl-detail-dialog {
    max-height: 88vh;
  }

  .cbl-detail-content {
    padding: 34px 22px 28px;
  }

  .cbl-detail-title {
    font-size: 31px;
  }

  .cbl-detail-role,
  .cbl-detail-intro p,
  .cbl-detail-section p {
    font-size: 16px;
  }

  .cbl-detail-actions,
  .cbl-detail-actions .button {
    width: 100%;
  }

  .cbl-cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }

  .cbl-cookie-banner p {
    font-size: 12px;
    line-height: 1.35;
  }

  .cbl-cookie-actions {
    width: auto;
  }

  .cbl-cookie-actions .button {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .about-section::after,
  .team-section::before {
    width: 92vw;
    opacity: 0.035;
  }

  .intelligence-section::before,
  .expertise-section::before,
  .contact-section::before,
  .site-footer::before {
    width: 46vw;
    opacity: 0.2;
  }

  .geography-section::after {
    right: -80px;
    width: 92vw;
    opacity: 0.035;
  }

  .cbl-back-to-top {
    right: 12px;
    bottom: 76px;
    width: 44px;
    height: 44px;
  }

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

  .footer-policy-links {
    display: grid;
  }

  .footer-bottom a:last-child {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 36px;
  }

  .stats-row strong {
    font-size: 36px;
  }

  .button {
    width: 100%;
    padding: 0 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: 0ms !important;
    transition-duration: 1ms !important;
  }

  .motion-ready .reveal,
  .motion-ready .reveal.reveal-image {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

/* Accessible red roles: the brand red remains available for decorative accents and dark surfaces. */
.header-cta,
.button-primary {
  background: var(--red-action);
}

.button-outline {
  color: var(--red-ink);
  border-color: var(--red-action);
}

.button-outline:hover,
.button-outline:focus-visible,
.region-grid a:hover,
.region-grid a:focus-visible {
  background: var(--red-action);
}

.route-card span,
.practice-preview a,
.practice-preview:hover .page-link,
.practice-preview:focus-within .page-link,
.audience-copy .section-kicker,
.audience-situation-card span,
.package-card:not(.package-card-featured) span,
.expertise-heading .section-kicker,
.expertise-card:not(.is-featured) span,
.expertise-feed span,
.cbl-person-more,
.cbl-detail-eyebrow,
.cbl-cookie-banner a,
.intake-progress li.is-active,
.checkbox a,
.site-nav.is-open .nav-georgia-mobile,
.site-nav.is-open a:hover,
.site-nav.is-open a:focus-visible {
  color: var(--red-ink);
}
