* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #111111;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
}

.cbm-contact-page {
  width: 100%;
  min-height: 100vh;
  background: #111111;
}

/* ============================= */
/* HEADER */
/* ============================= */

.cbm-contact-header {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 150px;
  padding: 34px 7.2%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgb(255, 240, 227);
}

.cbm-logo {
  color: #ffffff;
  text-decoration: none;
}

.cbm-logo h1 {
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 0.85;
  font-weight: 850;
  letter-spacing: -0.055em;
  color: rgb(255, 240, 227);
}

.cbm-logo p {
  margin-top: 10px;
  padding-left: 40px;
  font-size: 14px;
  letter-spacing: 0.68em;
  font-weight: 500;
  opacity: 0.88;
  color: rgb(255, 240, 227);
}

.cbm-nav {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 62px);
  padding-top: 18px;
}

.cbm-nav a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 760;
  padding: 8px 0;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.cbm-nav a::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(255, 184, 56, 0),
      rgba(255, 184, 56, 0.95),
      rgba(244, 181, 54, 0.9),
      rgba(255, 184, 56, 0));
  box-shadow:
    0 0 12px rgba(255, 184, 56, 0.45),
    0 0 18px rgba(244, 181, 54, 0.22);
  transition: width 0.35s ease;
}

.cbm-nav a:hover,
.cbm-nav a.active {
  color: #fff4df;
  transform: translateY(-2px);
  text-shadow:
    0 0 12px rgba(255, 184, 56, 0.24),
    0 0 18px rgba(244, 181, 54, 0.12);
}

.cbm-nav a:hover::after,
.cbm-nav a.active::after {
  width: 100%;
}

.cbm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin-top: 6px;
  padding: 20px 36px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 850;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cbm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 70%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 184, 56, 0.55),
      rgba(244, 181, 54, 0.35),
      transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.cbm-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #ffffff;
  z-index: -2;
  transition: background 0.3s ease;
}

.cbm-btn span {
  font-size: 34px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.cbm-btn:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 14px 35px rgba(255, 255, 255, 0.13),
    0 0 22px rgba(244, 181, 54, 0.24),
    0 0 34px rgba(94, 220, 255, 0.14);
}

.cbm-btn:hover::before {
  left: 120%;
}

.cbm-btn:hover::after {
  background: linear-gradient(135deg, #ffffff 0%, #fff8e7 48%, #eefbff 100%);
}

.cbm-btn:hover span {
  transform: translateX(6px);
}

/* ============================= */
/* CONTACT HERO */
/* ============================= */

.cbm-contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 120px 7.2% 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 184, 56, 0.14), transparent 32%),
    radial-gradient(circle at 24% 78%, rgba(94, 220, 255, 0.045), transparent 28%),
    linear-gradient(135deg, #151515 0%, #111111 45%, #1d160b 100%);
}

#cbmContactCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
}

.cbm-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.35) 78%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.4), rgba(17, 17, 17, 0.92));
}

.cbm-contact-orb {
  position: absolute;
  right: -160px;
  top: 110px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.48;
  pointer-events: none;
  animation: cbmContactOrbFloat 9s ease-in-out infinite;
}

.cbm-contact-orb span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(184, 121, 9, 0.22);
  box-shadow:
    0 0 34px rgba(255, 184, 56, 0.08),
    inset 0 0 40px rgba(94, 220, 255, 0.035);
}

.cbm-contact-orb span:nth-child(1) {
  transform: rotateX(68deg) rotateZ(12deg);
}

.cbm-contact-orb span:nth-child(2) {
  transform: rotateY(62deg) rotateZ(-18deg);
}

.cbm-contact-orb span:nth-child(3) {
  transform: scale(0.66);
  border-color: rgba(94, 220, 255, 0.16);
}

.cbm-contact-inner {
  position: relative;
  z-index: 3;
  max-width: 1420px;
  margin: 0 auto;
  text-align: center;
}

.cbm-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #f4b536;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0;
  transform: translateY(18px);
  animation: cbmContactReveal 0.8s ease forwards 0.1s;
}

.cbm-contact-kicker::before,
.cbm-contact-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #f4b536;
  box-shadow: 0 0 14px rgba(244, 181, 54, 0.3);
}

.cbm-contact-inner h2 {
  color: #ffffff;
  font-size: clamp(58px, 7vw, 106px);
  line-height: 1.02;
  letter-spacing: 0.3px;
  font-weight: 850;
  margin-bottom: 54px;
  text-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(255, 184, 56, 0.05);
  opacity: 0;
  transform: translateY(24px);
  animation: cbmContactReveal 0.9s ease forwards 0.22s;
}

.cbm-contact-inner p {
  max-width: 1080px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(21px, 2vw, 32px);
  line-height: 1.42;
  font-weight: 200;
  letter-spacing: -0.035em;
  opacity: 0;
  transform: translateY(24px);
  animation: cbmContactReveal 0.9s ease forwards 0.36s;
}

.cbm-contact-actions {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: cbmContactReveal 0.9s ease forwards 0.5s;
}

.cbm-contact-primary,
.cbm-contact-secondary {
  position: relative;
  min-height: 74px;
  padding: 20px 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 850;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.cbm-contact-primary {
  background: #ffffff;
  color: #111111;
}

.cbm-contact-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.cbm-contact-primary::before,
.cbm-contact-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 70%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 184, 56, 0.55),
      rgba(94, 220, 255, 0.35),
      transparent);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.cbm-contact-primary:hover,
.cbm-contact-secondary:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(255, 184, 56, 0.13),
    0 0 38px rgba(94, 220, 255, 0.09);
}

.cbm-contact-primary:hover::before,
.cbm-contact-secondary:hover::before {
  left: 120%;
}

.cbm-contact-primary span,
.cbm-contact-secondary span {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.cbm-contact-primary:hover span,
.cbm-contact-secondary:hover span {
  transform: translate(4px, -4px);
}

/* ============================= */
/* FOOTER */
/* ============================= */

.cbm-footer {
  position: relative;
  overflow: hidden;
  background: #141414;
  color: #ffffff;
}

.cbm-footer-cta {
  position: relative;
  min-height: 270px;
  padding: 68px 7%;
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  align-items: center;
  gap: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 18% 40%, rgba(255, 184, 56, 0.045), transparent 28%),
    radial-gradient(circle at 85% 50%, rgba(94, 220, 255, 0.035), transparent 26%),
    linear-gradient(180deg, #151515 0%, #121212 100%);
}

.cbm-footer-cta h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-family: sans-serif;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.045em;
  color: rgb(255, 240, 227);
  white-space: nowrap;
}

.cbm-footer-connector {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  perspective: 900px;
  transform-style: preserve-3d;
}

.cbm-connector-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.8) 18%,
      rgba(244, 181, 54, 0.9) 48%,
      rgba(94, 220, 255, 0.75) 72%,
      rgba(255, 255, 255, 0));
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(244, 181, 54, 0.18),
    0 0 28px rgba(94, 220, 255, 0.14);
  transform: translateY(-50%) rotateX(58deg) rotateZ(-2deg);
  transform-origin: center;
  opacity: 0.85;
  animation: cbmConnectorBreathe 4.2s ease-in-out infinite;
}

.cbm-connector-line::before,
.cbm-connector-line::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,
      transparent,
      rgba(94, 220, 255, 0.5),
      rgba(244, 181, 54, 0.45),
      transparent);
  filter: blur(8px);
  opacity: 0.55;
}

.cbm-connector-line::after {
  top: 18px;
  opacity: 0.22;
  filter: blur(12px);
  transform: scaleX(0.82);
}

.cbm-connector-node {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #ffd179 45%, #5edcff 100%);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.28),
    0 0 22px rgba(244, 181, 54, 0.36),
    0 0 28px rgba(94, 220, 255, 0.24);
  transform: translate(-50%, -50%) rotateX(58deg) translateZ(18px);
  animation: cbmConnectorNodePulse 3.8s ease-in-out infinite;
}

.node-one {
  left: 22%;
  animation-delay: 0.1s;
}

.node-two {
  left: 52%;
  width: 15px;
  height: 15px;
  animation-delay: 0.45s;
}

.node-three {
  left: 82%;
  animation-delay: 0.8s;
}

.cbm-connector-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      transparent,
      rgba(94, 220, 255, 0.95),
      rgba(255, 220, 145, 0.95),
      transparent);
  box-shadow:
    0 0 18px rgba(94, 220, 255, 0.45),
    0 0 28px rgba(244, 181, 54, 0.34);
  transform: translateY(-50%) rotateX(58deg) rotateZ(-2deg);
  opacity: 0;
  animation: cbmConnectorSignal 3.4s ease-in-out infinite;
}

.cbm-footer-btn {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  min-height: 120px;
  padding: 28px 54px;
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  text-decoration: none;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.01em;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
}

.cbm-footer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 70%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 184, 56, 0.58),
      rgba(94, 220, 255, 0.32),
      transparent);
  transform: skewX(-18deg);
  transition: left 0.75s ease;
}

.cbm-footer-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #ffffff;
  z-index: -2;
  transition: background 0.35s ease;
}

.cbm-footer-btn:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(255, 184, 56, 0.16),
    0 0 42px rgba(94, 220, 255, 0.12);
}

.cbm-footer-btn:hover::before {
  left: 120%;
}

.cbm-footer-btn:hover::after {
  background: linear-gradient(135deg, #ffffff 0%, #fff8e7 48%, #eefbff 100%);
}

.cbm-footer-main {
  position: relative;
  min-height: 470px;
  padding: 58px 7% 50px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 45%, rgba(255, 184, 56, 0.06), transparent 28%),
    radial-gradient(circle at 80% 65%, rgba(94, 220, 255, 0.035), transparent 30%),
    linear-gradient(180deg, #151515 0%, #111111 100%);
}

.cbm-footer-map {
  position: absolute;
  inset: -8% -5%;
  z-index: 0;
  pointer-events: none;
  background-image: url("world-network.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.16;
  filter: sepia(1) saturate(1.6) hue-rotate(350deg) brightness(0.62) contrast(1.08);
  transform: scale(1.08);
  animation: cbmFooterMapDrift 16s ease-in-out infinite;
}

.cbm-footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(20, 20, 20, 0.88),
      rgba(20, 20, 20, 0.42),
      rgba(20, 20, 20, 0.88)),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.32) 76%);
}

.cbm-footer-brand,
.cbm-footer-links {
  position: relative;
  z-index: 2;
}

.cbm-footer-logo {
  margin-bottom: 70px;
}

.cbm-footer-logo h3 {
  font-size: clamp(40px, 3.8vw, 58px);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: -0.055em;
  color: rgb(255, 240, 227);
}

.cbm-footer-logo p {
  margin-top: 12px;
  padding-left: 35px;
  color: rgb(255, 240, 227);
  font-size: 18px;
  letter-spacing: 0.68em;
  font-weight: 500;
}

.cbm-footer-text {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.55;
  font-weight: 430;
}

.cbm-footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  gap: 110px;
  padding-top: 82px;
}

.cbm-footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cbm-footer-link-group a {
  position: relative;
  width: fit-content;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 430;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.cbm-footer-link-group a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(244, 181, 54, 0.95),
      rgba(94, 220, 255, 0.85),
      transparent);
  box-shadow:
    0 0 12px rgba(244, 181, 54, 0.45),
    0 0 16px rgba(94, 220, 255, 0.22);
  transition: width 0.32s ease;
}

.cbm-footer-link-group a:hover {
  color: #ffffff;
  transform: translateX(6px);
  text-shadow:
    0 0 14px rgba(244, 181, 54, 0.18),
    0 0 18px rgba(94, 220, 255, 0.12);
}

.cbm-footer-link-group a:hover::after {
  width: 100%;
}

/* ============================= */
/* CONTACT CARDS                 */
/* ============================= */

.cbm-footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
  width: 100%;
  max-width: 480px;
}

.cbm-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 16px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.cbm-footer-contact:hover {
  border-color: rgba(244, 181, 54, 0.3);
  background: rgba(244, 181, 54, 0.05);
  transform: translateX(6px);
}

.cbm-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b87909;
}

.cbm-contact-value {
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease;
  word-break: break-all;
}

.cbm-footer-contact:hover .cbm-contact-value {
  color: #ffffff;
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */

@keyframes cbmContactReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cbmContactOrbFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-18px, -14px, 0) rotate(12deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes cbmFooterMapDrift {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
    opacity: 0.13;
  }

  50% {
    transform: scale(1.12) translate3d(-18px, -8px, 0);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.08) translate3d(0, 0, 0);
    opacity: 0.13;
  }
}

@keyframes cbmConnectorBreathe {
  0% {
    opacity: 0.48;
    transform: translateY(-50%) rotateX(58deg) rotateZ(-2deg) scaleX(0.94);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) rotateX(58deg) rotateZ(-2deg) scaleX(1);
  }

  100% {
    opacity: 0.48;
    transform: translateY(-50%) rotateX(58deg) rotateZ(-2deg) scaleX(0.94);
  }
}

@keyframes cbmConnectorNodePulse {
  0% {
    opacity: 0.55;
    transform: translate(-50%, -50%) rotateX(58deg) translateZ(10px) scale(0.86);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) rotateX(58deg) translateZ(24px) scale(1.12);
  }

  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) rotateX(58deg) translateZ(10px) scale(0.86);
  }
}

@keyframes cbmConnectorSignal {
  0% {
    left: 0%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  62% {
    opacity: 0.85;
  }

  86% {
    left: calc(100% - 80px);
    opacity: 0;
  }

  100% {
    left: calc(100% - 80px);
    opacity: 0;
  }
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */

@media (max-width: 980px) {
  .cbm-contact-header {
    min-height: auto;
    padding: 32px 6%;
  }

  .cbm-nav {
    display: none;
  }

  .cbm-contact-hero {
    min-height: 620px;
    padding: 100px 6% 90px;
  }

  .cbm-contact-inner h2 {
    font-size: 58px;
  }

  .cbm-footer-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 6%;
  }

  .cbm-footer-cta h2 {
    white-space: normal;
    font-size: clamp(32px, 5vw, 48px);
  }

  .cbm-footer-connector {
    max-width: 520px;
    height: 90px;
  }

  .cbm-footer-btn {
    justify-self: start;
    min-width: unset;
    width: 100%;
    max-width: 420px;
    min-height: 78px;
    padding: 22px 32px;
  }

  .cbm-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cbm-footer-links {
    justify-content: start;
    padding-top: 30px;
    gap: 90px;
  }
}

@media (max-width: 640px) {
  .cbm-contact-header {
    padding: 26px 22px;
    align-items: flex-start;
  }

  .cbm-logo h1 {
    font-size: 30px;
  }

  .cbm-logo p {
    padding-left: 14px;
    font-size: 10px;
    letter-spacing: 0.48em;
  }

  .cbm-btn {
    padding: 13px 18px;
    gap: 16px;
    font-size: 14px;
  }

  .cbm-btn span {
    font-size: 26px;
  }

  .cbm-contact-hero {
    min-height: 620px;
    padding: 82px 22px 82px;
  }

  .cbm-contact-inner {
    text-align: left;
  }

  .cbm-contact-kicker::after {
    display: none;
  }

  .cbm-contact-inner h2 {
    font-size: 46px;
    line-height: 1.05;
    margin-bottom: 32px;
  }

  .cbm-contact-inner p {
    font-size: 20px;
    margin: 0;
  }

  .cbm-contact-actions {
    justify-content: flex-start;
    margin-top: 42px;
  }

  .cbm-contact-primary,
  .cbm-contact-secondary {
    width: 100%;
    justify-content: space-between;
  }

  .cbm-contact-orb {
    display: none;
  }

  .cbm-footer-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 22px;
  }

  .cbm-footer-cta h2 {
    font-size: 36px;
    white-space: normal;
    text-align: center;
  }

  .cbm-footer-connector {
    height: 70px;
  }

  .cbm-footer-btn {
    min-width: unset;
    width: 100%;
    min-height: 68px;
    padding: 20px 24px;
    font-size: 17px;
  }

  .cbm-footer-main {
    grid-template-columns: 1fr;
    padding: 44px 22px 48px;
    gap: 36px;
  }

  .cbm-footer-logo {
    margin-bottom: 32px;
  }

  .cbm-footer-logo h3 {
    font-size: 38px;
  }

  .cbm-footer-logo p {
    padding-left: 20px;
    font-size: 13px;
    letter-spacing: 0.52em;
  }

  .cbm-footer-text {
    font-size: 17px;
  }

  .cbm-footer-contact-block {
    max-width: 100%;
  }

  .cbm-footer-contact {
    padding: 14px 16px;
  }

  .cbm-contact-value {
    font-size: 13px;
    word-break: break-all;
  }

  .cbm-footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-top: 20px;
    justify-content: start;
  }

  .cbm-footer-link-group {
    gap: 20px;
  }

  .cbm-footer-link-group a {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .cbm-contact-kicker,
  .cbm-contact-inner h2,
  .cbm-contact-inner p,
  .cbm-contact-actions,
  .cbm-contact-orb,
  .cbm-footer-map,
  .cbm-connector-line,
  .cbm-connector-node,
  .cbm-connector-pulse {
    animation: none;
  }

  .cbm-nav a,
  .cbm-nav a::after,
  .cbm-btn,
  .cbm-btn::before,
  .cbm-btn::after,
  .cbm-btn span,
  .cbm-contact-primary,
  .cbm-contact-primary::before,
  .cbm-contact-secondary,
  .cbm-contact-secondary::before,
  .cbm-footer-btn,
  .cbm-footer-btn::before,
  .cbm-footer-btn::after,
  .cbm-footer-contact,
  .cbm-footer-link-group a,
  .cbm-footer-link-group a::after {
    transition: none;
  }
}