@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,
body {
  width: 100%;
  min-height: 100%;
  background: #0d0b08;
  font-family: "DM Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
/* ============================= */
/* HERO SECTION */
/* ============================= */

.cbm-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 38%, rgba(178, 116, 9, 0.42), transparent 42%),
    radial-gradient(circle at 50% 68%, rgba(252, 225, 200, 0.08), transparent 35%),
    linear-gradient(180deg, #2a1a03 0%, #0e0b07 100%);}

/* Interactive globe canvas */
#cbmGlobeCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

/* Subtle signal streaks / digital shooting stars */
.cbm-signal-streaks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cbm-signal-streaks span {
  position: absolute;
  width: 170px;
  height: 1px;
  border-radius: 999px;
 background: linear-gradient(
    90deg,
    rgba(178, 116, 9, 0),
    rgba(178, 116, 9, 0.9),
    rgba(252, 225, 200, 0.95),
    rgba(252, 225, 200, 0)
  );
  box-shadow:
    0 0 12px rgba(178, 116, 9, 0.55),
    0 0 22px rgba(252, 225, 200, 0.35);
  opacity: 0;
  transform: rotate(-18deg) translateX(0);
  animation: cbmSignalShoot 7s linear infinite;
}

.cbm-signal-streaks span:nth-child(1) {
  top: 19%;
  left: -18%;
  animation-delay: 0.4s;
  animation-duration: 6.8s;
}

.cbm-signal-streaks span:nth-child(2) {
  top: 34%;
  left: -22%;
  width: 120px;
  animation-delay: 2.1s;
  animation-duration: 7.6s;
}

.cbm-signal-streaks span:nth-child(3) {
  top: 63%;
  left: -20%;
  width: 150px;
  animation-delay: 3.7s;
  animation-duration: 8.4s;
}

.cbm-signal-streaks span:nth-child(4) {
  top: 48%;
  left: -25%;
  width: 95px;
  animation-delay: 5.2s;
  animation-duration: 7.2s;
}

.cbm-signal-streaks span:nth-child(5) {
  top: 75%;
  left: -30%;
  width: 135px;
  animation-delay: 6.4s;
  animation-duration: 9s;
}

/* Cinematic overlay so text stays readable */
.cbm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 52%,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.35) 82%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.58)
    );
}

/* Soft breathing glow */
.cbm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
   background:
    radial-gradient(circle at 50% 53%, rgba(178, 116, 9, 0.16), transparent 35%),
    radial-gradient(circle at 50% 60%, rgba(252, 225, 200, 0.08), transparent 28%);
  mix-blend-mode: screen;
  animation: cbmAmbientPulse 3.8s ease-in-out infinite;
}

.cbm-top-dropdown {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.cbm-top-dropdown span {
  margin-left: 6px;
  font-size: 14px;
}

.cbm-header {
  position: relative;
  z-index: 6;
  width: 100%;
  padding: 42px 7.5% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cbm-mobile-nav.is-open ~ section .cbm-header,
body.nav-open .cbm-header {
  visibility: hidden;
}

.cbm-logo h1 {
  font-size: clamp(28px, 3vw, 43px);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgb(255,240,227);
}

.cbm-logo p {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.62em;
  font-weight: 500;
  opacity: 0.9;
  padding-left: 40px;
  color: rgb(255,240,227);
}

.cbm-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 55px);
}

/* Mature animated nav hover */
.cbm-nav a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 0;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.cbm-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
 background: rgba(178, 116, 9, 0.95);
  box-shadow:
    0 0 10px rgba(178, 116, 9, 0.9),
    0 0 18px rgba(178, 116, 9, 0.45);
  transform: translateX(-50%) scale(0);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.cbm-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
 background: linear-gradient(
    90deg,
    rgba(178, 116, 9, 0),
    rgba(178, 116, 9, 0.95),
    rgba(252, 225, 200, 0.95),
    rgba(178, 116, 9, 0.95),
    rgba(178, 116, 9, 0)
  );
  box-shadow:
    0 0 12px rgba(178, 116, 9, 0.65),
    0 0 18px rgba(252, 225, 200, 0.35);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.cbm-nav a:hover {
  color: #b27409;
  transform: translateY(-2px);
 text-shadow:
    0 0 10px rgba(178, 116, 9, 0.35),
    0 0 18px rgba(252, 225, 200, 0.18);
}

.cbm-nav a:hover::before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.cbm-nav a:hover::after {
  width: 120%;
}

/* Premium animated Get Started button */
.cbm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 19px 35px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 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(178, 116, 9, 0.55),
    rgba(252, 225, 200, 0.35),
    transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.cbm-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  z-index: -2;
  background: #ffffff;
  transition: background 0.3s ease;
}

.cbm-btn span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  transition:
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.cbm-btn:hover {
  transform: translateY(-3px) scale(1.015);
  color: #050505;
  box-shadow:
    0 14px 35px rgba(255, 255, 255, 0.14),
    0 0 22px rgba(244, 181, 54, 0.28),
    0 0 34px rgba(252, 225, 200, 0.16);
}

.cbm-btn:hover::before {
  left: 120%;
}

.cbm-btn:hover::after {
  background:
    linear-gradient(135deg, #ffffff 0%, #fff8e7 48%, #fdf3ec 100%);
}

.cbm-btn:hover span {
  transform: translateX(6px);
  text-shadow:
    0 0 10px rgba(244, 181, 54, 0.6),
    0 0 18px rgba(252, 225, 200, 0.35);
}

.cbm-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.cbm-hero-content {
  position: relative;
  z-index: 6;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 7.5% 30px;
  text-align: center;
  pointer-events: none;
  margin-top: 100px;
}

.cbm-hero-content h2,
.cbm-hero-content p,
.cbm-socials,
.cbm-slider-controls {
  pointer-events: auto;
  transform: translateY(100px);
}

.cbm-hero-content h2 {
  font-size: 70px;
  line-height: 1.13;
  word-spacing: 5pxpx;
  font-weight: 900;
  letter-spacing: 1px;
  color: #f4f1ff;
  text-shadow:
    0 6px 0 rgba(65, 50, 110, 0.42),
    0 0 35px rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.cbm-hero-content p {
  max-width: 920px;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 58px;
}

.cbm-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-bottom: 45px;
}

.cbm-socials a {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    text-shadow 0.25s ease;
}

.cbm-socials a:hover {
  color: #f4b536;
  transform: translateY(-4px) scale(1.08);
  text-shadow: 0 0 16px rgba(244, 181, 54, 0.85);
}

.cbm-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.cbm-slider-controls button {
  width: 42px;
  height: 42px;
  border: none;
  outline: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  font-size: 26px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.cbm-slider-controls button:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cbm-slider-controls button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================= */
/* SERVICES SECTION */
/* ============================= */

.cbm-services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(178, 116, 9, 0.12), transparent 26%),
    radial-gradient(circle at 85% 42%, rgba(252, 225, 200, 0.06), transparent 28%),
    linear-gradient(180deg, #111111 0%, #151515 38%, #101010 100%);
    
  color: #ffffff;
  padding-bottom: 120px;
}

.cbm-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 177, 45, 0.08),
      transparent 24%,
      transparent 76%,
      rgba(252, 225, 200, 0.05)
    ),
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(0, 0, 0, 0.36) 72%);
  z-index: 0;
}

.cbm-services-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 184, 56, 0.08), transparent 62%);
  filter: blur(10px);
  opacity: 0.8;
  z-index: 0;
}

/* Top cinematic moving image strip */
.cbm-image-strip {
   position: relative;
  z-index: 1;
  height: 470px;
  padding: 22px 0;
  overflow: hidden;
  background: #111111;
  cursor: grab;
}

.cbm-image-strip:active {
  cursor: grabbing;
}

.cbm-image-track {
  height: 100%;
  display: flex;
  width: max-content;
  transform: translateX(0);
  will-change: transform;
}

.cbm-strip-image {
  position: relative;
  flex: 0 0 420px;
  height: 420px; /* square */
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.78) saturate(1);
  transform: scale(1);
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s ease;
}

.cbm-strip-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.26) 82%);
  pointer-events: none;
}

.cbm-image-strip:hover .cbm-strip-image {
  filter: brightness(0.82) saturate(1.08);
}

.cbm-strip-image:hover {
   transform: scale(1.03);
  filter: brightness(0.95) saturate(1.05);
}

.cbm-service-image-two {
  background-position: 50% 35%;
}

/* Services title area */
.cbm-services-intro {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 82px 24px 74px;
  text-align: center;
}



.cbm-services-intro h2 {
  font-size: clamp(54px, 6vw, 88px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
  margin-bottom: 34px;
  color: #ffffff;
  text-shadow:
    0 0 34px rgba(255, 255, 255, 0.06),
    0 0 20px rgba(255, 184, 56, 0.08);
}

.cbm-services-intro p {
  max-width: 890px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.35;
  font-weight: 100;
}

/* Service cards wrapper */
.cbm-services-cards {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

/* Service card */
.cbm-service-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 0;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 184, 56, 0.16), transparent 16%),
    linear-gradient(135deg, #fff8ed 0%, #fff2e1 100%);
  color: #050505;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    background 0.45s ease;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.cbm-service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 184, 56, 0.22),
      rgba(252, 225, 200, 0.2),
      rgba(255, 255, 255, 0.36)
    );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0.65;
}

.cbm-service-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -35%;
  width: 45%;
  height: 180%;
  background:
    linear-gradient(
      115deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      rgba(252, 225, 200, 0.14),
      transparent
    );
  transform: rotate(14deg) translateX(-150%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.cbm-service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(255, 184, 56, 0.1),
    0 0 44px rgba(252, 225, 200, 0.07);
}

.cbm-service-card:hover::after {
  transform: rotate(14deg) translateX(420%);
}

/* Card image */
.cbm-service-image {
  min-height: 398px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.88) saturate(0.92);
  transform: translateZ(34px) scale(1.001);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
  overflow: hidden;
}

.cbm-service-card:hover .cbm-service-image {
  filter: brightness(1) saturate(1.05);
  transform: translateZ(48px) scale(1.025);
}

/* Online images for service cards */
.cbm-service-image-one {
  background-image: url("images/digital\ two.jpeg");
}

.cbm-service-image-two {
  background-image: url("images/conti 02.jpg");
}

.cbm-service-image-three {
  background-image: url("images/conti\ 03.jpg");
}

.cbm-service-image-four {
  background-image: url("images/brand\ stratedgy.webp");
}

/* Card text side */
.cbm-service-content {
  position: relative;
  padding: 42px 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateZ(42px);
}

.cbm-service-content h3 {
  font-size: clamp(52px, 4.9vw, 76px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 800;
  margin-bottom: 28px;
  color: #050505;
}

.cbm-service-content p {
  max-width: 520px;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.45;
  font-weight: 500;
}

/* Number badge */
.cbm-service-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff4e2, #ffe2bd);
  color: #b87909;
  font-size: 24px;
  font-weight: 800;
  box-shadow:
    0 12px 30px rgba(184, 121, 9, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.cbm-service-card:hover .cbm-service-number {
  transform: scale(1.08) rotate(6deg);
  box-shadow:
    0 16px 34px rgba(184, 121, 9, 0.22),
    0 0 20px rgba(255, 184, 56, 0.22);
}

/* Second/fourth card slightly warmer like your screenshot */
.cbm-service-card-alt {
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 184, 56, 0.18), transparent 16%),
    linear-gradient(135deg, #fff0de 0%, #ffe7cf 100%);
}

/* See all services button */
.cbm-services-button-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 58px;
}

.cbm-services-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 24px 56px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.cbm-services-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 70%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(178, 116, 9, 0.55),
    rgba(252, 225, 200, 0.35),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.cbm-services-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #ffffff;
  z-index: -2;
  transition: background 0.35s ease;
}

.cbm-services-btn span {
  color: #b87909;
  font-size: 36px;
  line-height: 1;
  transition:
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.cbm-services-btn:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(244, 181, 54, 0.22),
    0 0 42px rgba(252, 225, 200, 0.12);
}

.cbm-services-btn:hover::before {
  left: 120%;
}

.cbm-services-btn:hover::after {
  background:
    linear-gradient(135deg, #ffffff 0%, #fff8e7 48%, #fdf3ec 100%);
}

.cbm-services-btn:hover span {
  transform: translateX(7px);
  text-shadow:
    0 0 12px rgba(244, 181, 54, 0.58),
    0 0 18px rgba(252, 225, 200, 0.32);
}

/* ============================= */
/* BRANDS SECTION */
/* ============================= */

.cbm-brands-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 20%, rgba(252, 225, 200, 0.055), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 184, 56, 0.08), transparent 26%),
    radial-gradient(circle at 18% 85%, rgba(255, 184, 56, 0.055), transparent 26%),
    linear-gradient(180deg, #030506 0%, #000306 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cbm-brands-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68),
      transparent 24%,
      transparent 76%,
      rgba(0, 0, 0, 0.68)
    ),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.36) 78%);
  z-index: 1;
}

.cbm-brands-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      transparent,
      rgba(252, 225, 200, 0.05),
      rgba(255, 184, 56, 0.08),
      transparent
    );
  transform: skewX(-12deg);
  animation: cbmBrandLightSweep 9s ease-in-out infinite;
  z-index: 2;
}

#cbmBrandsCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cbm-brands-inner {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 90px;
}

.cbm-brands-heading {
  text-align: center;
  margin-bottom: 96px;
}

.cbm-brands-heading h2 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f7f7fb;
  margin-bottom: 30px;
  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(252, 225, 200, 0.05);
}

.cbm-brands-heading p {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  color: rgba(230, 240, 250, 0.84);
  font-weight: 100;
}

.cbm-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 118px;
  column-gap: 72px;
  align-items: center;
  justify-items: center;
  animation: cbmLogoGridDrift 8s ease-in-out infinite;
}

.cbm-brand-logo {
  position: relative;
  min-width: 160px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 247, 250, 0.88);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  cursor: default;
  opacity: 0;
  transform: translateY(18px);
  animation:
    cbmLogoReveal 0.9s ease forwards,
    cbmLogoBreathe 4.8s ease-in-out infinite;
  transition:
    color 0.35s ease,
    transform 0.35s ease,
    text-shadow 0.35s ease,
    filter 0.35s ease;
}

.cbm-brand-logo:nth-child(1) {
  animation-delay: 0.1s, 1s;
}

.cbm-brand-logo:nth-child(2) {
  animation-delay: 0.22s, 1.2s;
}

.cbm-brand-logo:nth-child(3) {
  animation-delay: 0.34s, 1.4s;
}

.cbm-brand-logo:nth-child(4) {
  animation-delay: 0.46s, 1.6s;
}

.cbm-brand-logo:nth-child(5) {
  animation-delay: 0.58s, 1.8s;
}

.cbm-brand-logo:nth-child(6) {
  animation-delay: 0.7s, 2s;
}

.cbm-brand-logo:nth-child(7) {
  animation-delay: 0.82s, 2.2s;
}

.cbm-brand-logo:nth-child(8) {
  animation-delay: 0.94s, 2.4s;
}

.cbm-brand-logo::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 140px;
  height: 72px;
  transform: translate(-50%, -50%) scale(0.5);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(252, 225, 200, 0.18), transparent 62%);
  filter: blur(12px);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  z-index: -1;
}

.cbm-brand-logo::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 184, 56, 0.85),
      rgba(252, 225, 200, 0.85),
      transparent
    );
  box-shadow:
    0 0 14px rgba(255, 184, 56, 0.4),
    0 0 18px rgba(252, 225, 200, 0.22);
  transition: width 0.35s ease;
}

.cbm-brand-logo:hover {
  color: #ffffff;
  transform: translateY(-8px) scale(1.035);
  filter: brightness(1.14);
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(252, 225, 200, 0.18),
    0 0 28px rgba(255, 184, 56, 0.14);
}

.cbm-brand-logo:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cbm-brand-logo:hover::after {
  width: 86%;
}

/* Logo style variations */
.cbm-logo-oppo {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.cbm-logo-fila {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.cbm-logo-skoda {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cbm-logo-symbol {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.98), rgba(226, 226, 226, 0.88));
  color: #050505;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.18em;
  text-transform: uppercase;
  box-shadow:
    0 0 34px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(252, 225, 200, 0.06);
}

.cbm-logo-kia {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cbm-logo-nokia {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================= */
/* FOOTER SECTION */
/* ============================= */

.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(252, 225, 200, 0.035), transparent 26%),
    linear-gradient(180deg, #151515 0%, #121212 100%);
}

.cbm-footer-cta h2 {
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: 0.9em;
  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(252, 225, 200, 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(252, 225, 200, 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(252, 225, 200, 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%, #fce1c8 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(252, 225, 200, 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(252, 225, 200, 0.95),
      rgba(255, 220, 145, 0.95),
      transparent
    );
  box-shadow:
    0 0 18px rgba(252, 225, 200, 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(178, 116, 9, 0.55),
    rgba(252, 225, 200, 0.35),
    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(252, 225, 200, 0.12);
}

.cbm-footer-btn:hover::before {
  left: 120%;
}

.cbm-footer-btn:hover::after {
  background:
    linear-gradient(135deg, #ffffff 0%, #fff8e7 48%, #fdf3ec 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(252, 225, 200, 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: ;
}

.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(252, 225, 200, 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(252, 225, 200, 0.85),
      transparent
    );
  box-shadow:
    0 0 12px rgba(244, 181, 54, 0.45),
    0 0 16px rgba(252, 225, 200, 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(252, 225, 200, 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(252, 225, 200, 0);
  }

  50% {
    text-shadow:
      0 0 16px rgba(252, 225, 200, 0.08),
      0 0 22px rgba(255, 184, 56, 0.05);
  }

  100% {
    text-shadow: 0 0 0 rgba(252, 225, 200, 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 */
/* ============================= */

/* Tablet view */
@media (max-width: 980px) {
  .cbm-header {
    padding: 34px 6% 0;
  }

  .cbm-nav {
    display: none;
  }

  .cbm-btn {
    padding: 14px 24px;
    gap: 18px;
    font-size: 15px;
  }

  .cbm-btn span {
    font-size: 26px;
  }

  .cbm-hero-content h2 {
    margin-bottom: 45px;
  }

  .cbm-hero-content p {
    margin-bottom: 42px;
  }

  .cbm-image-strip {
    height: 300px;
  }

  .cbm-strip-image {
    flex-basis: 360px;
    height: 300px;
  }

  .cbm-service-card {
    grid-template-columns: 1fr;
  }

  .cbm-service-image {
    min-height: 340px;
  }

  .cbm-service-content {
    padding: 36px 30px 42px;
  }

  .cbm-service-number {
    top: 24px;
    right: 24px;
  }

  .cbm-services-btn {
    padding: 20px 42px;
    font-size: 20px;
  }

  .cbm-brands-inner {
    padding: 78px 0 80px;
  }

  .cbm-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 78px;
    column-gap: 40px;
  }

  .cbm-footer-cta {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 60px 6%;
  }

  .cbm-footer-connector {
    max-width: 520px;
  }

  .cbm-footer-btn {
    justify-self: start;
    min-width: 340px;
    min-height: 92px;
  }

  .cbm-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cbm-footer-links {
    justify-content: start;
    padding-top: 30px;
    gap: 90px;
  }
}

/* Mobile view */
@media (max-width: 640px) {
  .cbm-header {
    align-items: flex-start;
  }

  .cbm-logo h1 {
    font-size: 28px;
  }

  .cbm-logo p {
    font-size: 10px;
    letter-spacing: 0.48em;
    padding-left: 12px;
  }

  .cbm-btn {
    padding: 12px 18px;
    gap: 16px;
    font-size: 14px;
  }

  .cbm-hero-content {
    padding-top: 90px;
  }

  .cbm-hero-content h2 {
    font-size: 48px;
    line-height: 1.15;
  }

  .cbm-hero-content p {
    font-size: 17px;
    line-height: 1.55;
  }

  .cbm-socials {
    gap: 25px;
  }

  .cbm-signal-streaks span {
    width: 95px;
  }

  .cbm-services-section {
    padding-bottom: 80px;
  }

  .cbm-image-strip {
    height: 240px;
  }

  .cbm-strip-image {
    flex-basis: 300px;
    height: 240px;
  }

  .cbm-services-intro {
    padding: 64px 20px 54px;
  }

  .cbm-services-intro h2 {
    font-size: 52px;
  }

  .cbm-services-intro p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
  }

  .cbm-services-cards {
    width: min(100% - 28px, 1040px);
    gap: 34px;
  }

  .cbm-service-card {
    padding: 12px;
    border-radius: 24px;
    min-height: auto;
  }

  .cbm-service-image {
    min-height: 280px;
    border-radius: 18px;
  }

  .cbm-service-content h3 {
    font-size: 44px;
  }

  .cbm-service-content p {
    font-size: 18px;
  }

  .cbm-service-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .cbm-services-button-wrap {
    padding-top: 44px;
  }

  .cbm-services-btn {
    padding: 17px 30px;
    gap: 18px;
    font-size: 17px;
  }

  .cbm-services-btn span {
    font-size: 30px;
  }

  .cbm-brands-section {
    min-height: auto;
  }

  .cbm-brands-inner {
    width: min(100% - 28px, 1280px);
    padding: 68px 0 76px;
  }

  .cbm-brands-heading {
    margin-bottom: 66px;
  }

  .cbm-brands-heading h2 {
    font-size: 48px;
  }

  .cbm-brands-heading p {
    font-size: 18px;
  }

  .cbm-logo-grid {
    grid-template-columns: 1fr;
    row-gap: 54px;
  }

  .cbm-brand-logo {
    min-height: 56px;
  }

  .cbm-footer-cta {
    padding: 52px 24px;
  }

  .cbm-footer-cta h2 {
    font-size: 44px;
  }

  .cbm-footer-connector {
    height: 80px;
  }

  .cbm-footer-btn {
    min-width: 100%;
    min-height: 78px;
    padding: 22px 28px;
    font-size: 18px;
  }

  .cbm-footer-main {
    padding: 48px 24px 50px;
  }

  .cbm-footer-logo {
    margin-bottom: 44px;
  }

  .cbm-footer-logo h3 {
    font-size: 38px;
  }

  .cbm-footer-logo p {
    padding-left: 20px;
    font-size: 13px;
    letter-spacing: 0.52em;
  }

  .cbm-footer-text,
  .cbm-footer-contact {
    font-size: 18px;
  }

  .cbm-footer-links {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cbm-footer-link-group {
    gap: 20px;
  }

  .cbm-footer-link-group a {
    font-size: 19px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cbm-hero::after,
  .cbm-signal-streaks span,
  .cbm-brands-section::after,
  .cbm-logo-grid,
  .cbm-brand-logo,
  .cbm-footer-map,
  .cbm-connector-line,
  .cbm-connector-node,
  .cbm-connector-pulse {
    animation: none;
  }

  .cbm-nav a,
  .cbm-nav a::before,
  .cbm-nav a::after,
  .cbm-btn,
  .cbm-btn::before,
  .cbm-btn::after,
  .cbm-btn span,
  .cbm-image-track,
  .cbm-strip-image,
  .cbm-service-card,
  .cbm-service-card::after,
  .cbm-service-image,
  .cbm-service-number,
  .cbm-services-btn,
  .cbm-services-btn::before,
  .cbm-services-btn::after,
  .cbm-services-btn span,
  .cbm-brand-logo,
  .cbm-brand-logo::before,
  .cbm-brand-logo::after,
  .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;
  }
}


/* ============================= */
/* BRANDS STATS ROW              */
/* ============================= */

.cbm-brands-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
}

.cbm-brands-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 64px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cbm-brands-stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cbm-brands-stat strong {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #fce1c8 50%, #f4b536 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cbm-brands-stat span {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cbm-brands-stat-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 184, 56, 0.35),
    transparent
  );
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .cbm-brands-stat {
    padding: 0 36px;
  }
}

@media (max-width: 640px) {
  .cbm-brands-stat-row {
    flex-direction: column;
    gap: 36px;
    margin-top: 40px;
  }

  .cbm-brands-stat {
    padding: 0;
  }

  .cbm-brands-stat-divider {
    width: 64px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 184, 56, 0.35),
      transparent
    );
  }
}

.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;
}

/* ============================= */
/* FIX 1: MOBILE NAV OVERLAY     */
/* Must be position:fixed so     */
/* z-index actually takes effect  */
/* and it covers the whole page  */
/* ============================= */

.cbm-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cbm-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cbm-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;            /* covers full width, left to right */
  width: 100%;
  height: 100%;
  z-index: 99999;     /* above everything including the header */
  background: #0d0b08;
  transform: translateX(100%);   /* hidden off-screen to the right */
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 48px 32px;
  visibility: hidden;
}


.cbm-mobile-nav.is-open {
  transform: translateX(0);     /* slides in to cover everything */
  visibility: visible;
}

/* ============================= */
/* FIX 2: MOBILE GLOBE           */
/* Use 100svh so the canvas fills*/
/* the viewport without being    */
/* taller than the screen, which */
/* caused the squashed look      */
/* ============================= */

@media (max-width: 640px) {
  .cbm-hero {
    min-height: 100svh;
  }

  #cbmGlobeCanvas {
    height: 100svh !important;
  }

  .cbm-hero-content {
    margin-top: 60px;
    min-height: auto;
    padding-bottom: 60px;
  }
}