* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #101010;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
}

.cbm-services-page {
    width: 100%;
    min-height: 100vh;
}

/* ============================= */
/* SERVICES HERO */
/* ============================= */

.cbm-services-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #111111;
}

/* Background video */
.cbm-services-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* PUSH VIDEO DOWN */
    object-position: center 35%;

    filter: brightness(0.72) saturate(0.82);

    /* MORE ZOOM */
    transform: scale(1.2);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Fallback image in case video fails */
.cbm-video-fallback {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
        url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=75");
    background-size: cover;
    background-position: center;
}

/* Dark overlay */
.cbm-services-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.28) 34%,
            rgba(0, 0, 0, 0.58) 100%),
        radial-gradient(circle at 50% 48%, rgba(255, 184, 56, 0.08), transparent 34%),
        radial-gradient(circle at 80% 78%, rgba(184, 121, 9, 0.08), transparent 28%);
}

/* ============================= */
/* HEADER */
/* ============================= */

.cbm-services-header {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 150px;
    padding: 34px 7.2%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    background: rgba(20, 12, 4, 0.88);
    backdrop-filter: blur(10px);

    border-bottom: none;
}

.cbm-services-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;

    background: rgba(184, 121, 9, 0.18);
}

.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, 255, 255);
}

.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(184, 121, 9, 0.9),
            rgba(255, 184, 56, 0));

    box-shadow:
        0 0 12px rgba(255, 184, 56, 0.45),
        0 0 18px rgba(184, 121, 9, 0.22);
}

.cbm-nav a:hover,
.cbm-nav a.active {
    color: #fff4df;
    text-shadow:
        0 0 12px rgba(255, 184, 56, 0.24),
        0 0 18px rgba(184, 121, 9, 0.18);
}

.cbm-nav a:hover::after,
.cbm-nav a.active::after {
    width: 100%;
}

/* Get Started button */
.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(184, 121, 9, 0.25) 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(244, 181, 54, 0.25);
}

.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);
}

/* ============================= */
/* CENTER PLAY BUTTON */
/* ============================= */

.cbm-play-button {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    width: 155px;
    height: 155px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%);
    box-shadow:
        0 22px 80px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
    animation: cbmPlayPulse 3.8s ease-in-out infinite;
}

.cbm-play-button::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0.8;
    animation: cbmPlayRing 3.8s ease-in-out infinite;
}

.cbm-play-button span {
    position: absolute;
    left: 56%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
    border-left: 48px solid #ffffff;
    filter:
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 18px rgba(255, 184, 56, 0.16));
}

.cbm-play-button:hover {
    transform: translate(-50%, -50%) scale(1.06);
    background: rgba(255, 255, 255, 0.28);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.42),
        0 0 30px rgba(255, 184, 56, 0.12),
        0 0 44px rgba(244, 181, 54, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* ============================= */
/* HERO CONTENT */
/* ============================= */

.cbm-services-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 0 7.2% 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 42px;
}

.cbm-services-copy {
    max-width: 900px;
    opacity: 0;
    transform: translateY(24px);
    animation: cbmHeroTextIn 0.9s ease forwards 0.2s;
}

.cbm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #ffd7a7;
    font-size: 15px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.cbm-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: #ffd7a7;
}

.cbm-services-copy h2 {
    color: #ffffff;
    font-size: clamp(50px, 6vw, 86px);
    line-height: 1;
    letter-spacing: -0.065em;
    font-weight: 850;
    margin-bottom: 26px;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cbm-services-copy p {
    max-width: 880px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(24px, 2.4vw, 38px);
    line-height: 1.18;
    font-weight: 650;
    letter-spacing: -0.045em;
}

/* See details button */
.cbm-details-btn {
    position: relative;
    min-width: 280px;
    min-height: 68px;
    padding: 18px 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #ffffff;
    color: #101010;
    text-decoration: none;
    font-size: 18px;
    font-weight: 850;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(24px);
    animation: cbmHeroTextIn 0.9s ease forwards 0.4s;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cbm-details-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-details-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: #ffffff;
    z-index: -2;
    transition: background 0.3s ease;
}

.cbm-details-btn span {
    color: #111111;
    font-size: 30px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.cbm-details-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(255, 184, 56, 0.18),
        0 0 34px rgba(94, 220, 255, 0.12);
}

.cbm-details-btn:hover::before {
    left: 120%;
}

.cbm-details-btn:hover::after {
    background:
        linear-gradient(135deg, #ffffff 0%, #fff8e7 48%, #eefbff 100%);
}

.cbm-details-btn:hover span {
    transform: translateY(5px);
}

/* ============================= */
/* NEXT SECTION PLACEHOLDER */
/* ============================= */

.cbm-service-details {
    position: relative;
    padding: 110px 7.2%;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 184, 56, 0.08), transparent 28%),
        linear-gradient(180deg, #111111 0%, #050608 100%);
    color: #ffffff;
}

.cbm-service-details-inner {
    max-width: 1100px;
}

.cbm-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #f4b536;
    font-size: 15px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.cbm-section-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: #f4b536;
}

.cbm-service-details h2 {
    max-width: 980px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    margin-bottom: 26px;
}

.cbm-service-details p {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.35;
}

/* ============================= */
/* GROWTH SYSTEM STACK */
/* ============================= */

.cbm-growth-system {
    position: relative;
    overflow: hidden;
    padding: 110px 7.2% 120px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 184, 56, 0.12), transparent 24%),
        radial-gradient(circle at 88% 74%, rgba(94, 220, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    color: #111111;
}

.cbm-growth-system::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.36;
    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: 58px 58px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.cbm-growth-light {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(circle,
            rgba(255, 184, 56, 0.18),
            rgba(94, 220, 255, 0.08) 38%,
            transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(12px);
    opacity: 0.5;
    z-index: 0;
}

/* faint rotating system orb */
.cbm-system-orb {
    position: absolute;
    right: -120px;
    top: 180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
    animation: cbmSystemOrbFloat 9s ease-in-out infinite;
}

.cbm-system-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-system-orb span:nth-child(1) {
    transform: rotateX(68deg) rotateZ(12deg);
}

.cbm-system-orb span:nth-child(2) {
    transform: rotateY(62deg) rotateZ(-18deg);
}

.cbm-system-orb span:nth-child(3) {
    transform: scale(0.68);
    border-color: rgba(94, 220, 255, 0.16);
}

/* header */
.cbm-growth-header {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto 86px;
    text-align: center;
}

.cbm-growth-header h2 {
    color: #252525;
    font-size: clamp(52px, 5.7vw, 88px);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: -0.07em;
    margin-bottom: 28px;
}

.cbm-growth-header p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(17, 17, 17, 0.48);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.32;
    font-weight: 650;
}

/* rows */
.cbm-growth-list {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    perspective: 1200px;
}

.cbm-growth-row {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
    min-height: 205px;
    padding: 44px 0;
    margin: 0 34px;
    border-top: 2px solid rgba(184, 121, 9, 0.58);
    transform-style: preserve-3d;
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

.cbm-growth-row:last-child {
    border-bottom: 2px solid rgba(184, 121, 9, 0.58);
}

.cbm-growth-row::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -34px;
    width: 0;
    height: 2px;
    background:
        linear-gradient(90deg,
            rgba(184, 121, 9, 0),
            rgba(184, 121, 9, 0.95),
            rgba(94, 220, 255, 0.65),
            rgba(184, 121, 9, 0));
    box-shadow:
        0 0 14px rgba(184, 121, 9, 0.28),
        0 0 20px rgba(94, 220, 255, 0.12);
    animation: cbmGrowthLineTravel 4.8s ease-in-out infinite;
}

.cbm-growth-row::after {
    content: "";
    position: absolute;
    inset: 16px -34px;
    border-radius: 24px;
    background:
        radial-gradient(circle at var(--mx, 20%) var(--my, 50%), rgba(255, 184, 56, 0.12), transparent 28%),
        radial-gradient(circle at 82% 60%, rgba(94, 220, 255, 0.065), transparent 30%),
        rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.cbm-growth-row:hover {
    background: rgba(255, 255, 255, 0.62);
    box-shadow:
        0 26px 90px rgba(0, 0, 0, 0.075),
        0 0 30px rgba(255, 184, 56, 0.055),
        0 0 38px rgba(94, 220, 255, 0.04);
}

.cbm-growth-row:hover::after {
    opacity: 1;
}

.cbm-growth-title,
.cbm-growth-copy {
    position: relative;
    z-index: 2;
}

/* left title */
.cbm-growth-title {
    display: flex;
    align-items: center;
    gap: 36px;
    transform: translateZ(34px);
}

.cbm-growth-title span {
    color: #b87909;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    min-width: 64px;
    flex-shrink: 0;
    transition:
        transform 0.35s ease,
        text-shadow 0.35s ease;
    margin-left: 50px;
}

.cbm-growth-title h3 {
    color: #050505;
    font-size: clamp(36px, 3.7vw, 58px);
    line-height: 1.04;
    font-weight: 840;
    letter-spacing: -0.065em;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.cbm-growth-row:hover .cbm-growth-title span {
    transform: translateX(6px) scale(1.08);
    text-shadow:
        0 0 16px rgba(184, 121, 9, 0.28),
        0 0 20px rgba(94, 220, 255, 0.08);
}

.cbm-growth-row:hover .cbm-growth-title h3 {
    transform: translateX(8px);
    color: #111111;
}

/* right copy card */
.cbm-growth-copy {
    max-width: 650px;
    padding: 26px 30px;
    border-radius: 22px;
    transform: translateZ(50px);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.cbm-growth-row:hover .cbm-growth-copy {
    transform: translateZ(70px) translateX(-4px);
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.055),
        inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.cbm-growth-copy h4 {
    color: #b87909;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.045em;
    font-weight: 780;
    margin-bottom: 12px;
}

.cbm-growth-copy p {
    color: rgba(17, 17, 17, 0.68);
    font-size: clamp(20px, 1.6vw, 27px);
    line-height: 1.36;
    font-weight: 520;
}

/* reveal animation */
.cbm-growth-header,
.cbm-growth-row {
    opacity: 0;
    transform: translateY(24px);
}

.cbm-growth-system.is-visible .cbm-growth-header {
    animation: cbmGrowthReveal 0.8s ease forwards;
}

.cbm-growth-system.is-visible .cbm-growth-row {
    animation: cbmGrowthReveal 0.8s ease forwards;
}

.cbm-growth-system.is-visible .cbm-growth-row:nth-child(1) {
    animation-delay: 0.1s;
}

.cbm-growth-system.is-visible .cbm-growth-row:nth-child(2) {
    animation-delay: 0.18s;
}

.cbm-growth-system.is-visible .cbm-growth-row:nth-child(3) {
    animation-delay: 0.26s;
}

.cbm-growth-system.is-visible .cbm-growth-row:nth-child(4) {
    animation-delay: 0.34s;
}

.cbm-growth-system.is-visible .cbm-growth-row:nth-child(5) {
    animation-delay: 0.42s;
}

.cbm-growth-system.is-visible .cbm-growth-row:nth-child(6) {
    animation-delay: 0.5s;
}

/* animated blueprint canvas behind the white service system */
#cbmGrowthBlueprint {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.75;
}

/* large faint system rings */
.cbm-growth-system::after {
    content: "";
    position: absolute;
    right: -180px;
    top: 260px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background:
        repeating-radial-gradient(circle,
            rgba(184, 121, 9, 0.09) 0px,
            rgba(184, 121, 9, 0.09) 1px,
            transparent 1px,
            transparent 72px);
    mask-image: radial-gradient(circle, black 0%, transparent 72%);
    animation: cbmGrowthRingsRotate 18s linear infinite;
}


/* ============================= */
/* 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(94, 220, 255, 0.035), transparent 26%),
        linear-gradient(180deg, #151515 0%, #121212 100%);
}

.cbm-footer-cta h2 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.006em;
    color: #f2f2f2;
    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: 23px;
    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%;
}

/* Footer animations */
@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;
    }
}

/* Footer responsive */
@media (max-width: 980px) {
    .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;
    }
}

@media (max-width: 640px) {
    .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;
    }
}

@media (max-width: 640px) {
    #cbmGrowthBlueprint {
        opacity: 0.35;
    }

    .cbm-growth-system::after {
        display: none;
    }
}

@keyframes cbmGrowthRingsRotate {
    from {
        transform: rotate(0deg) scale(1);
        opacity: 0.42;
    }

    50% {
        transform: rotate(180deg) scale(1.04);
        opacity: 0.72;
    }

    to {
        transform: rotate(360deg) scale(1);
        opacity: 0.42;
    }
}

/* animations */
@keyframes cbmGrowthReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cbmGrowthLineTravel {
    0% {
        width: 0;
        left: 0;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    48% {
        width: 42%;
        left: 30%;
        opacity: 0.9;
    }

    82% {
        width: 0;
        left: 100%;
        opacity: 0;
    }

    100% {
        width: 0;
        left: 100%;
        opacity: 0;
    }
}

@keyframes cbmSystemOrbFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-18px, -12px, 0) rotate(12deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

/* responsive */
@media (max-width: 980px) {
    .cbm-growth-system {
        padding: 86px 6% 96px;
    }

    .cbm-growth-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 38px 20px;
    }

    .cbm-growth-copy {
        max-width: 100%;
        padding: 20px 0 0;
    }

    .cbm-growth-row:hover .cbm-growth-copy {
        transform: none;
        background: transparent;
        box-shadow: none;
    }

    .cbm-system-orb {
        width: 320px;
        height: 320px;
        right: -180px;
    }
}

@media (max-width: 640px) {
    .cbm-growth-system {
        padding: 72px 22px 82px;
    }

    .cbm-growth-header {
        margin-bottom: 54px;
        text-align: left;
    }

    .cbm-growth-header h2 {
        font-size: 44px;
    }

    .cbm-growth-header p {
        font-size: 20px;
        margin: 0;
    }

    .cbm-growth-row {
        min-height: auto;
        padding: 34px 0;
    }

    .cbm-growth-title {
        gap: 18px;
    }

    .cbm-growth-title span {
        font-size: 27px;
        min-width: 28px;
    }

    .cbm-growth-title h3 {
        font-size: 34px;
    }

    .cbm-growth-copy h4 {
        font-size: 25px;
    }

    .cbm-growth-copy p {
        font-size: 18px;
    }

    .cbm-growth-light,
    .cbm-system-orb {
        display: none;
    }
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */

@keyframes cbmVideoSlowZoom {
    0% {
        transform: scale(1.04);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.04);
    }
}

@keyframes cbmPlayPulse {
    0% {
        box-shadow:
            0 22px 80px rgba(0, 0, 0, 0.35),
            inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    }

    50% {
        box-shadow:
            0 28px 90px rgba(0, 0, 0, 0.42),
            0 0 26px rgba(255, 184, 56, 0.14),
            0 0 38px rgba(94, 220, 255, 0.08),
            inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow:
            0 22px 80px rgba(0, 0, 0, 0.35),
            inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    }
}

@keyframes cbmPlayRing {
    0% {
        transform: scale(0.96);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.96);
        opacity: 0.45;
    }
}

@keyframes cbmHeroTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
    .cbm-services-header {
        min-height: auto;
        padding: 32px 6%;
    }

    .cbm-nav {
        display: none;
    }

    .cbm-services-hero-content {
        grid-template-columns: 1fr;
        bottom: 0;
        padding: 0 6% 58px;
    }

    .cbm-details-btn {
        width: fit-content;
    }
}

@media (max-width: 640px) {
    .cbm-services-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-play-button {
        width: 104px;
        height: 104px;
    }

    .cbm-play-button span {
        border-top-width: 23px;
        border-bottom-width: 23px;
        border-left-width: 34px;
    }

    .cbm-services-hero-content {
        padding: 0 22px 44px;
    }

    .cbm-services-copy h2 {
        font-size: 46px;
    }

    .cbm-services-copy p {
        font-size: 24px;
    }

    .cbm-details-btn {
        width: 100%;
        min-width: auto;
    }

    .cbm-service-details {
        padding: 76px 22px;
    }

    .cbm-service-details h2 {
        font-size: 42px;
    }

    .cbm-service-details p {
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .cbm-services-video,
    .cbm-play-button,
    .cbm-play-button::before,
    .cbm-services-copy,
    .cbm-details-btn,
    .cbm-nav a,
    .cbm-nav a::after,
    .cbm-btn,
    .cbm-btn::before,
    .cbm-btn::after,
    .cbm-btn span {
        animation: none;
        transition: none;
    }
}

.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;
}

.cbm-services-video::-webkit-media-controls {
    display: none !important;
}

.cbm-services-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.cbm-services-video::--webkit-media-controls-panel {
    display: none !important;
}

.cbm-services-video {
    transform: translateZ(0);
    will-change: transform;
}

.cbm-video-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('images/video-poster.png') center / cover no-repeat;
    transition: opacity 0.8s ease;
}

.cbm-services-video.is-playing~.cbm-video-fallback {
    opacity: 0;
    pointer-events: none;
}