@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
  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-about-page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 184, 56, 0.07), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(94, 220, 255, 0.04), transparent 30%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
}

/* ============================= */
/* HEADER */
/* ============================= */

.cbm-about-header {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 160px;
  padding: 38px 7.2%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.cbm-logo {
  color: rgb(255, 255, 255);
  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: 20px;
}

.cbm-nav a {
  position: relative;
  color: white;
  /* changed from white to brand gold */
  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: 50%;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(244, 181, 54, 0),
      rgba(244, 181, 54, 1),
      rgba(244, 181, 54, 0));
  transform: translateX(-50%);

  box-shadow:
    0 0 12px rgba(244, 181, 54, 0.45),
    0 0 18px rgba(244, 181, 54, 0.25);
  /* removed blue glow */

  transition: width 0.35s ease;
}

.cbm-nav a:hover,
.cbm-nav a.active {
  color: #ffe6c7; /* soft brand cream */
  transform: translateY(-2px);

  text-shadow:
    0 0 12px rgba(244, 181, 54, 0.28),
    0 0 18px rgba(244, 181, 54, 0.18); /* removed blue */
}

.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: 8px;
  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(94, 220, 255, 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);
}

/* ============================= */
/* IMAGE HERO */
/* ============================= */

.cbm-about-hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cbm-about-image {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.52)),
    url(images/CBM-006.jpg);

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;  /* ← change this */

  transform: scale(1.01);
  filter: brightness(0.88) saturate(0.92);

  will-change: transform;
  transition:
    transform .45s ease,
    filter .45s ease;
}

.cbm-about-hero:hover .cbm-about-image {
  filter: brightness(0.92) saturate(1);
}

/* ============================= */
/* STORY SECTION */
/* ============================= */

.cbm-about-story {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 82px 7.2% 90px;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 184, 56, 0.075), transparent 26%),
    radial-gradient(circle at 78% 80%, rgba(94, 220, 255, 0.035), transparent 32%),
    linear-gradient(180deg, #151515 0%, #111111 100%);
}

.cbm-about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 4px 4px;
  mask-image: linear-gradient(180deg, transparent, black 24%, black 78%, transparent);
}

.cbm-story-inner {
  position: relative;
  z-index: 2;
  max-width: 1450px;
}

.cbm-story-inner p {
  color: #ffe6c7;
  font-size: 60px;
  line-height: 1.18;
  font-weight: 300;
  letter-spacing:  0.5px;;
}

/* Animated contour lines like the screenshot background */
.cbm-pattern-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cbm-pattern-lines span {
  position: absolute;
  border: 2px dashed rgba(174, 99, 0, 0.62);
  border-radius: 50%;
  opacity: 0.5;
  filter: drop-shadow(0 0 10px rgba(255, 135, 0, 0.08));
  animation: cbmLineDrift 12s ease-in-out infinite;
}

.cbm-pattern-lines span:nth-child(1) {
  width: 760px;
  height: 520px;
  left: -70px;
  top: -170px;
  transform: rotate(18deg);
}

.cbm-pattern-lines span:nth-child(2) {
  width: 660px;
  height: 430px;
  left: 470px;
  top: -240px;
  transform: rotate(-24deg);
  animation-delay: 1.6s;
}

.cbm-pattern-lines span:nth-child(3) {
  width: 780px;
  height: 510px;
  right: -170px;
  top: -190px;
  transform: rotate(28deg);
  animation-delay: 2.4s;
}

/* ============================= */
/* 3D STORY WALL SECTION */
/* ============================= */

.cbm-story-wall-section {
  position: relative;
  overflow: hidden;
  padding: 0 7.2% 120px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 184, 56, 0.08), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(94, 220, 255, 0.045), transparent 32%),
    linear-gradient(180deg, #151515 0%, #050608 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* moving dotted/contour background */
.cbm-story-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cbm-story-bg-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 4px 4px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
}

.cbm-story-bg-lines span {
  position: absolute;
  border: 2px dashed rgba(174, 99, 0, 0.58);
  border-radius: 50%;
  opacity: 0.48;
  filter: drop-shadow(0 0 12px rgba(255, 135, 0, 0.08));
  animation: cbmStoryLineDrift 13s ease-in-out infinite;
}

.cbm-story-bg-lines span:nth-child(1) {
  width: 780px;
  height: 500px;
  left: -140px;
  top: -170px;
  transform: rotate(20deg);
}

.cbm-story-bg-lines span:nth-child(2) {
  width: 720px;
  height: 430px;
  left: 42%;
  top: -190px;
  transform: rotate(-20deg);
  animation-delay: 1.4s;
}

.cbm-story-bg-lines span:nth-child(3) {
  width: 820px;
  height: 520px;
  right: -240px;
  top: -140px;
  transform: rotate(28deg);
  animation-delay: 2.2s;
}

/* mission card */
.cbm-mission-card {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto 108px;
  padding: 34px 38px 38px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f7f7 58%, #fff3df 100%);
  color: #050505;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 -5px 0 rgba(255, 184, 56, 0.18);
  transform-style: preserve-3d;
  animation: cbmMissionFloat 6s ease-in-out infinite;
}

.cbm-mission-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(110deg,
      transparent,
      rgba(255, 184, 56, 0.14),
      rgba(94, 220, 255, 0.1),
      transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cbm-mission-card:hover::after {
  opacity: 1;
}

.cbm-mission-dot {
  width: 14px;
  height: 14px;
  margin-top: 17px;
  border-radius: 50%;
  background: #b87909;
  box-shadow:
    0 0 16px rgba(184, 121, 9, 0.35),
    0 0 22px rgba(255, 184, 56, 0.22);
  animation: cbmMissionDotPulse 2.8s ease-in-out infinite;
}

.cbm-mission-card h2 {
  font-size: clamp(36px, 4.1vw, 62px);
  line-height: 1.16;
  letter-spacing: -0.06em;
  font-weight: 820;
}

/* story grid */
.cbm-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  perspective: 1200px;
}

.cbm-story-card {
  position: relative;
  min-height: 690px;
  border-radius: 22px;
  overflow: hidden;
  background: #101010;
  transform-style: preserve-3d;
  transform: translateY(0) rotateX(0deg) rotateY(0deg);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    box-shadow 0.45s ease,
    filter 0.45s ease;
  will-change: transform;
}

.cbm-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.14),
      rgba(94, 220, 255, 0.08) 16%,
      transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cbm-story-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 184, 56, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 28px rgba(255, 184, 56, 0);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cbm-story-card:hover {
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.56),
    0 0 32px rgba(255, 184, 56, 0.08),
    0 0 44px rgba(94, 220, 255, 0.055);
}

.cbm-story-card:hover::before {
  opacity: 1;
}

.cbm-story-card:hover::after {
  border-color: rgba(255, 184, 56, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 30px rgba(255, 184, 56, 0.08),
    0 0 42px rgba(94, 220, 255, 0.055);
}

/* image layer */
.cbm-story-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(0.9);
  transform: scale(1.05);
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s ease;
}

.cbm-story-card:hover .cbm-story-card-image {
  transform: scale(1.11);
  filter: brightness(0.78) saturate(1.05);
}

/* special third globe-style card */
.cbm-story-gradient-image {
  background:
    radial-gradient(circle at 50% 84%, rgba(48, 133, 183, 0.98), transparent 25%),
    radial-gradient(circle at 52% 58%, rgba(107, 229, 255, 0.5), transparent 22%),
    radial-gradient(circle at 52% 12%, rgba(8, 18, 64, 0.95), #030516 62%);
  animation: cbmBlueHorizonPulse 5s ease-in-out infinite;
}

.cbm-story-gradient-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 25%;
  width: 120%;
  height: 36%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(94, 220, 255, 0.34), transparent 64%);
  filter: blur(14px);
}

/* dark overlay */
.cbm-story-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.16) 35%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.25) 78%);
}

/* content layer */
.cbm-story-card-content {
  position: relative;
  z-index: 3;
  min-height: 690px;
  padding: 42px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateZ(45px);
}

.cbm-story-card-content h3 {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.cbm-story-card-content p {
  max-width: 95%;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.35;
  font-weight: 300;
  margin-bottom: 36px;
}

/* button */
.cbm-story-btn {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 20px 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  color: #090909;
  text-decoration: none;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.cbm-story-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.5),
      rgba(94, 220, 255, 0.25),
      transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.cbm-story-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -2;
  border-radius: inherit;
  background: #ffffff;
  transition: background 0.35s ease;
}

.cbm-story-btn span {
  color: #b87909;
  font-size: 28px;
  line-height: 1;
  transition:
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.cbm-story-card:hover .cbm-story-btn {
  transform: translateY(-5px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(255, 184, 56, 0.12);
}

.cbm-story-card:hover .cbm-story-btn::before {
  left: 120%;
}

.cbm-story-card:hover .cbm-story-btn::after {
  background:
    linear-gradient(135deg, #ffffff 0%, #fff8e7 50%, #edfaff 100%);
}

.cbm-story-card:hover .cbm-story-btn span {
  transform: translate(4px, -4px);
  text-shadow:
    0 0 10px rgba(244, 181, 54, 0.45),
    0 0 16px rgba(94, 220, 255, 0.2);
}

/* ============================= */
/* VALUES SECTION */
/* ============================= */

.cbm-values-section {
  position: relative;
  overflow: hidden;
  padding: 110px 7.2% 120px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 184, 56, 0.075), transparent 26%),
    radial-gradient(circle at 82% 76%, rgba(94, 220, 255, 0.035), transparent 28%),
    linear-gradient(180deg, #050608 0%, #101010 100%);
  color: #ffffff;
}

.cbm-values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 4px 4px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.cbm-values-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cbm-values-bg-lines span {
  position: absolute;
  border: 2px dashed rgba(174, 99, 0, 0.58);
  border-radius: 50%;
  opacity: 0.48;
  filter: drop-shadow(0 0 12px rgba(255, 135, 0, 0.08));
  animation: cbmValuesLineDrift 14s ease-in-out infinite;
}

.cbm-values-bg-lines span:nth-child(1) {
  width: 820px;
  height: 520px;
  left: -160px;
  top: -230px;
  transform: rotate(18deg);
}

.cbm-values-bg-lines span:nth-child(2) {
  width: 760px;
  height: 470px;
  left: 42%;
  top: -260px;
  transform: rotate(-18deg);
  animation-delay: 1.4s;
}

.cbm-values-bg-lines span:nth-child(3) {
  width: 850px;
  height: 540px;
  right: -250px;
  top: -120px;
  transform: rotate(28deg);
  animation-delay: 2.2s;
}

.cbm-values-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  max-width: 1700px;
  margin: 0 auto;
}

.cbm-value-card {
  position: relative;
  min-height: 490px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(16, 16, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.cbm-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 184, 56, 0.12), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(94, 220, 255, 0.055), transparent 32%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cbm-value-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 184, 56, 0.22);
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(255, 184, 56, 0.08),
    0 0 44px rgba(94, 220, 255, 0.045),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cbm-value-card:hover::before {
  opacity: 1;
}

.cbm-value-head {
  position: relative;
  z-index: 2;
  min-height: 140px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  gap: 22px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8f8f8 60%, #fff2df 100%);
  color: #050505;
}

.cbm-value-head span {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 50%;
  background: #b87909;
  box-shadow:
    0 0 14px rgba(184, 121, 9, 0.35),
    0 0 22px rgba(255, 184, 56, 0.24);
  animation: cbmValueDotPulse 3s ease-in-out infinite;
}

.cbm-value-head h3 {
  font-size: 55px;
  line-height: 1.05;
  font-weight: 830;
  letter-spacing: -0.055em;
}

.cbm-value-body {
  position: relative;
  z-index: 2;
  padding: 58px 32px 42px;
}

.cbm-value-body p {
  color: #ffe6c7;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.16;
  font-weight: 300;
  letter-spacing: -0.045em;
}

/* ============================= */
/* PARTNERSHIP FIT SECTION */
/* ============================= */

.cbm-fit-section {
  position: relative;
  overflow: hidden;
  padding: 96px 7.2% 96px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 184, 56, 0.14), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(94, 220, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #f7f7f7 0%, #ffffff 50%, #f2f2f2 100%);
  color: #111111;
}

.cbm-fit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
}

.cbm-fit-section::after {
  content: "";
  position: absolute;
  top: -25%;
  right: -15%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 184, 56, 0.16), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.cbm-fit-light {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 184, 56, 0.18), rgba(94, 220, 255, 0.08) 38%, transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0.55;
  filter: blur(8px);
  transition: opacity 0.35s ease;
  z-index: 0;
}

.cbm-fit-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

.cbm-fit-heading {
  margin-bottom: 52px;
}

.cbm-fit-heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #b87909;
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cbm-fit-heading span::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #b87909;
}

.cbm-fit-heading h2 {
  color: #292929;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.065em;
  margin-bottom: 48px;
}

.cbm-fit-heading p {
  color: #111111;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.18;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.cbm-fit-list {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  margin-bottom: 58px;
}

.cbm-fit-item {
  position: relative;
  min-height: 82px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.cbm-fit-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      transparent,
      rgba(255, 184, 56, 0.12),
      rgba(94, 220, 255, 0.08),
      transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.cbm-fit-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(184, 121, 9, 0.18);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.09),
    0 0 26px rgba(255, 184, 56, 0.08),
    0 0 34px rgba(94, 220, 255, 0.055);
}

.cbm-fit-item:hover::before {
  transform: translateX(120%);
}

.cbm-fit-icon {
  color: #b87909;
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  transform: translateY(-2px);
  transition:
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.cbm-fit-item:hover .cbm-fit-icon {
  transform: translate(6px, -2px);
  text-shadow:
    0 0 14px rgba(184, 121, 9, 0.26),
    0 0 18px rgba(94, 220, 255, 0.1);
}

.cbm-fit-item p {
  color: #111111;
  font-size: clamp(25px, 2.5vw, 40px);
  line-height: 1.15;
  font-weight: 780;
  letter-spacing: -0.048em;
}

.cbm-fit-closing {
  max-width: 1370px;
  color: #181818;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.14;
  font-weight: 520;
  letter-spacing: -0.04em;
  padding-top: 18px;
}


.cbm-footer {
  position: relative;
  overflow: hidden;
  background: #141414;
  color: #ffffff;
}

/* Top CTA area */
.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: 50px;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.045em;
  color: rgb(255, 240, 227);
  font-family: sans-serif;
}

/* 3D partnership connector */
.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);
}

/* Glowing connection nodes */
.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;
}

/* Moving signal travelling through the connector */
.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;
}

/* CTA button */
.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: clamp(20px, 1.7vw, 30px);
  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%);
}

/* Main footer area */
.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%);
}

/* Faint continent/map background */
.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;
}

/* Footer logo */
.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;
}

/* Footer text/contact */
.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-contact {
  width: fit-content;
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.4;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.cbm-footer-contact:hover {
  color: #f4b536;
  transform: translateX(6px);
  text-shadow:
    0 0 14px rgba(244, 181, 54, 0.3),
    0 0 18px rgba(94, 220, 255, 0.12);
}

/* Footer links */
.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%;
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */

@keyframes cbmAmbientPulse {
  0% {
    opacity: 0.36;
  }

  50% {
    opacity: 0.95;
  }

  100% {
    opacity: 0.36;
  }
}

@keyframes cbmSignalShoot {
  0% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(0, 0, 0);
  }

  8% {
    opacity: 0.75;
  }

  42% {
    opacity: 0.35;
  }

  72% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(145vw, 38vh, 0);
  }

  100% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(145vw, 38vh, 0);
  }
}

@keyframes cbmLogoReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cbmLogoBreathe {
  0% {
    text-shadow: 0 0 0 rgba(94, 220, 255, 0);
  }

  50% {
    text-shadow:
      0 0 16px rgba(94, 220, 255, 0.08),
      0 0 22px rgba(255, 184, 56, 0.05);
  }

  100% {
    text-shadow: 0 0 0 rgba(94, 220, 255, 0);
  }
}

@keyframes cbmLogoGridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cbmBrandLightSweep {
  0% {
    left: -42%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  46% {
    opacity: 0.65;
  }

  70% {
    left: 115%;
    opacity: 0;
  }

  100% {
    left: 115%;
    opacity: 0;
  }
}

@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 partnership fit section */
@media (max-width: 900px) {
  .cbm-fit-section {
    padding: 76px 6% 82px;
  }

  .cbm-fit-list {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .cbm-fit-section {
    padding: 64px 22px 72px;
  }

  .cbm-fit-heading {
    margin-bottom: 36px;
  }

  .cbm-fit-heading h2 {
    font-size: 46px;
    margin-bottom: 28px;
  }

  .cbm-fit-heading p {
    font-size: 26px;
  }

  .cbm-fit-item {
    grid-template-columns: 34px 1fr;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .cbm-fit-icon {
    font-size: 34px;
  }

  .cbm-fit-item p {
    font-size: 24px;
  }

  .cbm-fit-closing {
    font-size: 26px;
    line-height: 1.2;
  }
}

@keyframes cbmValuesLineDrift {
  0% {
    opacity: 0.34;
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  50% {
    opacity: 0.7;
    transform: translate3d(18px, -12px, 0) rotate(22deg);
  }

  100% {
    opacity: 0.34;
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
}

@keyframes cbmValueDotPulse {
  0% {
    transform: scale(0.9);
    box-shadow:
      0 0 10px rgba(184, 121, 9, 0.24),
      0 0 18px rgba(255, 184, 56, 0.14);
  }

  50% {
    transform: scale(1.18);
    box-shadow:
      0 0 18px rgba(184, 121, 9, 0.42),
      0 0 30px rgba(255, 184, 56, 0.28);
  }

  100% {
    transform: scale(0.9);
    box-shadow:
      0 0 10px rgba(184, 121, 9, 0.24),
      0 0 18px rgba(255, 184, 56, 0.14);
  }
}

/* animations */
@keyframes cbmMissionFloat {
  0% {
    transform: translateY(0) rotateX(0deg);
  }

  50% {
    transform: translateY(-8px) rotateX(1.5deg);
  }

  100% {
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes cbmMissionDotPulse {
  0% {
    transform: scale(0.92);
    box-shadow:
      0 0 10px rgba(184, 121, 9, 0.22),
      0 0 18px rgba(255, 184, 56, 0.14);
  }

  50% {
    transform: scale(1.18);
    box-shadow:
      0 0 18px rgba(184, 121, 9, 0.42),
      0 0 30px rgba(255, 184, 56, 0.28);
  }

  100% {
    transform: scale(0.92);
    box-shadow:
      0 0 10px rgba(184, 121, 9, 0.22),
      0 0 18px rgba(255, 184, 56, 0.14);
  }
}

@keyframes cbmStoryLineDrift {
  0% {
    opacity: 0.32;
    transform: translate3d(0, 0, 0) rotate(20deg);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(18px, -12px, 0) rotate(25deg);
  }

  100% {
    opacity: 0.32;
    transform: translate3d(0, 0, 0) rotate(20deg);
  }
}

@keyframes cbmBlueHorizonPulse {
  0% {
    filter: brightness(0.82) saturate(1);
  }

  50% {
    filter: brightness(1.04) saturate(1.16);
  }

  100% {
    filter: brightness(0.82) saturate(1);
  }
}

@keyframes cbmLineDrift {
  0% {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(18px, -10px, 0) rotate(22deg);
  }

  100% {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .cbm-about-header {
    min-height: auto;
    padding: 32px 6%;
  }

  .cbm-nav {
    display: none;
  }

  .cbm-about-hero {
    height: 410px;
  }

  .cbm-story-inner p {
    font-size: clamp(34px, 5.6vw, 54px);
  }
}

@media (max-width: 640px) {
  .cbm-about-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-about-hero {
    height: 310px;
  }

  .cbm-about-story {
    padding: 56px 22px 70px;
  }

  .cbm-story-inner p {
    font-size: 34px;
    line-height: 1.2;
  }

  .cbm-pattern-lines span:nth-child(1) {
    width: 460px;
    height: 330px;
    left: -170px;
    top: -80px;
  }

  .cbm-pattern-lines span:nth-child(2) {
    width: 420px;
    height: 290px;
    left: 110px;
    top: -130px;
  }

  .cbm-pattern-lines span:nth-child(3) {
    width: 430px;
    height: 310px;
    right: -260px;
    top: -60px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .cbm-about-image,
  .cbm-pattern-lines span,
  .cbm-nav a,
  .cbm-nav a::after,
  .cbm-btn,
  .cbm-btn::before,
  .cbm-btn::after,
  .cbm-btn span {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .cbm-story-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .cbm-story-card,
  .cbm-story-card-content {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .cbm-story-wall-section {
    padding: 0 22px 80px;
  }

  .cbm-mission-card {
    margin-bottom: 64px;
    padding: 26px 22px 30px;
    grid-template-columns: 16px 1fr;
    gap: 16px;
  }

  .cbm-mission-dot {
    width: 11px;
    height: 11px;
    margin-top: 13px;
  }

  .cbm-mission-card h2 {
    font-size: 32px;
    line-height: 1.18;
  }

  .cbm-story-card,
  .cbm-story-card-content {
    min-height: 560px;
  }

  .cbm-story-card-content {
    padding: 32px 22px 22px;
  }

  .cbm-story-card-content h3 {
    font-size: 34px;
  }

  .cbm-story-card-content p {
    font-size: 18px;
  }

  .cbm-story-btn {
    min-height: 64px;
    font-size: 17px;
  }
}

@media (max-width: 1100px) {
  .cbm-values-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 34px;
  }

  .cbm-value-card {
    min-height: auto;
  }

  .cbm-value-head {
    min-height: 120px;
  }
}

@media (max-width: 640px) {
  .cbm-values-section {
    padding: 76px 22px 86px;
  }

  .cbm-value-head {
    padding: 30px 26px;
    min-height: 104px;
  }

  .cbm-value-head h3 {
    font-size: 34px;
  }

  .cbm-value-body {
    padding: 40px 24px 42px;
  }

  .cbm-value-body p {
    font-size: 31px;
    line-height: 1.18;
  }
}

.cbm-footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.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);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  width: fit-content;
  min-width: 340px;
}

.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(15px, 1.3vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease;
}

.cbm-footer-contact:hover .cbm-contact-value {
  color: #ffffff;
}

@media (max-width: 640px) {
  .cbm-values-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 24px;
    overflow: hidden;
  }

  .cbm-value-card {
    min-height: auto;
    overflow: hidden;
  }

  .cbm-value-head {
    padding: 24px 20px;
    min-height: auto;
    gap: 14px;
  }

  .cbm-value-head h3 {
    font-size: clamp(28px, 7vw, 40px); /* ← stops it from overflowing */
    line-height: 1.1;
    word-break: break-word;
  }

  .cbm-value-body {
    padding: 28px 20px 32px;
  }

  .cbm-value-body p {
    font-size: clamp(22px, 5.5vw, 30px);
    line-height: 1.2;
  }

  .cbm-values-section {
    padding: 70px 18px 80px;
    overflow: hidden; /* ← prevents horizontal scroll */
  }
}