html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'CXO-Regular';
    src: url('../fonts/Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'CXO-Medium';
    src: url('../fonts/Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CXO-Light';
    src: url('../fonts/Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'CXO-Book';
    src: url('../fonts/Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    color: #1D1D1F;
    font-family: 'CXO-Book', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: transparent;
    transition: background-color 0.4s ease, padding 0.3s ease;
}

.site-header.menu-active {
    background-color: #1D1D1F;
    transition-delay: 0s;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    max-width: 235px;
    height: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.header-cta {
    border-radius: 80px;
    border: 1px solid #ffffff;
    padding: 15px 30px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.header-cta:hover {
    background-color: #ffffff;
    color: #1D1D1F;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    z-index: 3001;
    width: 25px;
    height: 25px;
    position: relative;
}

.hamburger-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: visible;
}

.hamburger-svg line {
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: center;
    transform-box: fill-box;
}

.site-header.menu-active .hamburger-svg line:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.site-header.menu-active .hamburger-svg line:nth-child(2) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1D1D1F;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 150px;
}

.mobile-menu-overlay.open {
    transform: translateY(0);
    transition-delay: 0.2s;
}

.mobile-links-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 90%;
    margin: auto;
    margin-top: 97px;
}

.mobile-menu-link {
    display: block;
    font-family: 'CXO-Regular', sans-serif;
    font-weight: 400;
    font-size: 42px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.01em;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-link:first-child {
    border-top: none;
}

.mobile-menu-overlay.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(1) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(2) {
    transition-delay: 0.45s;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(3) {
    transition-delay: 0.5s;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(4) {
    transition-delay: 0.55s;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(5) {
    transition-delay: 0.6s;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

.mobile-footer {
    background-color: #FFFFFF;
    width: 100%;
    padding: 24px 7.95%;
    margin-top: auto;
    position: relative;
}

.mobile-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-footer-text {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.01em;
    font-weight: 500;
}

.mobile-footer-socials {
    display: flex;
    gap: 24px;
    align-items: center;
}

.mobile-social-icon {
    width: 24px;
    height: 24px;
    display: block;
    filter: invert(1);
    transition: opacity 0.3s ease;
}

.mobile-social-icon:hover {
    opacity: 0.7;
}

h1 {
    font-family: 'CXO-Regular', sans-serif;
    font-weight: 400;
    font-size: 58px;
    line-height: 68px;
}

h2 {
    font-family: 'CXO-Regular', sans-serif;
    font-size: 38px;
    line-height: 46px;
    color: #1D1D1F;
}

h3 {
    font-family: 'CXO-Medium', sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #1D1D1F;
}

h4 {
    font-family: 'CXO-Medium', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #1D1D1F;
}

h5 {
    font-family: 'CXO-Medium', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

h6 {
    font-family: 'CXO-Medium', sans-serif;
    font-size: 14px;
    color: #1D1D1F;
}

p {
    font-family: 'CXO-Book', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #48484D;
}

.mobile-break {
    display: none;
}

.hero-h1-text {
    font-family: 'CXO-Regular', sans-serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 68px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.sub-hero {
    font-family: 'CXO-Regular', sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.01em;
    margin-bottom: 48px;
    opacity: 1;
    color: #FFFFFF;
    font-weight: 400;
}

.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.btn-white {
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 15px 30px;
    border-radius: 80px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.size-button-enquire {
    width: 318px;
    text-align: center;
}

.btn-white:hover {
    background-color: #FFFFFF;
    color: #1D1D1F;
}

.button-text {
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 15px 30px;
    border-radius: 80px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #1D1D1F;
    border: 1px solid #1D1D1F;
}

.button-text:hover {
    background-color: #1D1D1F !important;
    color: #fff;
}

.new-bio-btn-wrapper .button-text {
    width: 100%;
    text-align: center;
    display: block;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1D1D1F;
    overflow: hidden;
    background-image: url('../img/rectangle-120.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    width: 100%;
    max-width: 824px;
    color: #FFFFFF;
}

.hero-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 15px 30px;
    border: 1px solid #ffffff;
    border-radius: 80px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    gap: 10px;
    width: max-content;
}

.hero-btn-text {
    color: #ffffff;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
    position: relative;
    transition: color 0.3s ease;
}

.hero-btn:hover {
    background-color: #FFFFFF;
}

.hero-btn:hover .hero-btn-text {
    color: #1D1D1F;
}

.scroll-down-btn {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block;
}

.scroll-down-btn:hover {
    opacity: 0.7;
}

.scroll-down-btn img {
    display: block;
}

.cxo-section-2 {
    background: #F7F8F8;
    padding: 76px 0px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cxo-section-2-container {
    display: flex;
    justify-content: space-between;
    gap: clamp(40px, 5vw, 102px);
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.cxo-left-col {
    width: 100%;
    max-width: 583px;
    position: relative;
}

.cxo-left-title {
    color: #1D1D1F;
    font-family: 'CXO-Regular', sans-serif;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.01em;
    font-weight: 400;
    margin-bottom: 24px;
}

.cxo-left-desc {
    color: #48484D;
    font-family: 'CXO-Book', sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.01em;
    font-weight: 400;
    margin-top: 40px;
}

.cxo-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 659px;
}

.cxo-right-header {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 14px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
}

.cxo-list-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}

.cxo-divider {
    border-top: 1px solid #B0BBBC;
    width: 100%;
    height: 0px;
}

.cxo-list-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    cursor: pointer;
}

.website_accrodigtext {
    padding-top: 24px;
}

.cxo-item-head {
    position: relative;
    width: 100%;
    height: 32px;
}

.cxo-item-title {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.01em;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
}

.cxo-item-icon {
    width: 21px;
    height: 21px;
    position: absolute;
    right: 0;
    top: 5px;
}

.cxo-item-body {
    color: #48484D;
    font-family: 'CXO-Regular', sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.01em;
    font-weight: 400;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

.cxo-list-item.active .cxo-item-body {
    opacity: 1;
}

.approach-section {
    background-color: #FFFFFF;
    padding-top: 76px;
    padding-bottom: 76px;
}

.motivated_by {
    max-width: 766px;
    margin-bottom: 73px;
    font-weight: 400;
}

.approch {
    text-transform: uppercase;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 24px;
}

.approach-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.approach-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.aprochh3 {
    font-weight: 500;
}

.custompara {
    font-weight: 300 !important;
    transition: font-weight 0.3s ease;
}

.approach-item:hover .custompara {
    font-weight: 600 !important;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    padding: 36px 28px;
    border-top: 1px solid #B0BBBC;
    transition: background-color 0.3s ease;
}

.approach-item:hover {
    background-color: #F5F5F7;
}

.number-badge {
    width: 35px;
    height: 35px;
    background-color: #1D1D1F;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 14px;
    margin-right: 41px;
    flex-shrink: 0;
}

.approach-title-col {
    width: 40%;
    padding-right: 20px;
}

.approach-desc-col {
    width: 50%;
    max-width: 366px;
    margin-right: 20px;
    margin-left: auto;
}

.new-bio-section {
    background: #FFFFFF;
    padding: 76px 0px;
    width: 90%;
    margin: auto;
    max-width: 1440px;
}

.new-bio-container {
    display: flex;
    justify-content: space-between;
    gap: clamp(40px, 8vw, 144px);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.new-bio-left {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 550px;
}

.new-bio-titles {
    margin-bottom: 250px;
}

.new-bio-sub {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 14px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.new-bio-name {
    color: #1D1D1F;
    font-family: 'CXO-Regular', sans-serif;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.01em;
    font-weight: 400;
}

.new-bio-stats-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.new-bio-stat-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.new-bio-stat-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.new-bio-stat-text {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.01em;
    font-weight: 500;
    text-decoration: underline;
}

.new-bio-desc {
    color: #48484D;
    font-family: 'CXO-Book', sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.01em;
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 60px;
}

#more-bio-text {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-in-out;
}

.more-bio-inner {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#more-bio-text.expanded {
    grid-template-rows: 1fr;
}

#more-bio-text.expanded .more-bio-inner {
    opacity: 1;
}

.new-bio-link {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
    margin-top: auto;
}

.new-bio-right {
    position: relative;
    width: 100%;
    max-width: 546px;
    display: flex;
    flex-direction: column;
}

.new-bio-img {
    width: 100%;
    max-height: 635px;
    object-fit: cover;
    display: block;
}

.new-bio-btn-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.image-break-container {
    width: 100%;
    background-color: #FFFFFF;
    padding-bottom: 76px;
}

.break-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.principles-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #FFFFFF;
}

.principles-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.principles-left {
    flex: 0 0 40%;
    max-width: 568px;
    padding-top: 40px;
}

.principles-left h2 {
    font-family: 'CXO-Regular', sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: clamp(36px, 4.2vw, 46px);
    color: #1D1D1F;
    font-weight: 400;
    margin-bottom: 0;
}

.principles-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.circle-bounds {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.circle-wrapper {
    position: relative;
    width: clamp(280px, 40vw, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #B0BBBC;
    margin: 0 auto;
}

.circle-center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.circle-empty-state {
    color: #9E1B25;
    font-family: 'CXO-Regular', sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    line-height: clamp(24px, 2.5vw, 32px);
    letter-spacing: 0.01em;
    font-weight: 400;
}

.circle-active-title {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    line-height: clamp(24px, 2.5vw, 32px);
    letter-spacing: 0.01em;
    font-weight: 500;
    margin-bottom: 0px;
}

.circle-active-subtitle {
    color: #1D1D1F;
    font-family: 'CXO-Regular', sans-serif;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: clamp(22px, 2.5vw, 32px);
    letter-spacing: 0.01em;
    font-weight: 400;
    margin-bottom: 16px;
}

.circle-active-text {
    color: #48484D;
    font-family: 'CXO-Book', sans-serif;
    font-size: clamp(13px, 1.3vw, 18px);
    line-height: clamp(20px, 1.8vw, 28px);
    letter-spacing: 0.01em;
    font-weight: 400;
}

.circle-node {
    position: absolute;
    width: clamp(50px, 6vw, 80px);
    height: clamp(50px, 6vw, 80px);
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.circle-node svg {
    width: 100%;
    height: 100%;
    display: block;
}

.circle-node svg circle {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.circle-node svg path {
    transition: stroke 0.3s ease;
}

.circle-node:hover svg circle,
.circle-node.active svg circle {
    fill: #9E1B25;
    stroke: #9E1B25;
}

.circle-node:hover svg path,
.circle-node.active svg path {
    stroke: #FFFFFF;
}

.circle-label {
    position: absolute;
    font-family: 'CXO-Medium', sans-serif;
    font-size: clamp(14px, 1.5vw, 24px);
    color: #1D1D1F;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
    font-weight: 500;
    z-index: 2;
    transition: color 0.3s ease;
}

.node-discipline {
    top: 0%;
    left: 50%;
}

.node-people {
    top: 34.55%;
    left: 97.55%;
}

.node-partnership {
    top: 90.45%;
    left: 79.39%;
}

.node-presence {
    top: 90.45%;
    left: 20.61%;
}

.node-humility {
    top: 34.55%;
    left: 2.45%;
}

.label-discipline {
    top: 0%;
    left: 50%;
    transform: translate(-50%, calc(-100% - 48px));
}

.label-people {
    top: 34.55%;
    left: 97.55%;
    transform: translate(48px, -50%);
}

.label-partnership {
    top: 90.45%;
    left: 79.39%;
    transform: translate(34px, 34px);
}

.label-presence {
    top: 90.45%;
    left: 20.61%;
    transform: translate(calc(-100% - 34px), 34px);
    text-align: right;
}

.label-humility {
    top: 34.55%;
    left: 2.45%;
    transform: translate(calc(-100% - 48px), -50%);
    text-align: right;
}

.principles-accordion-mobile {
    display: none;
    width: 100%;
}

.working-section {
    background-image: linear-gradient(to left, rgba(29, 29, 31, 0.15), rgba(29, 29, 31, 0.15)), url('https://moku.rodeo/cxo_1/img/Rectangle%202344.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 76px;
    padding-bottom: 76px;
    color: #FFFFFF;
}

.working-header-wrapper {
    margin-bottom: 60px;
    max-width: 670px;
}

.working-header-wrapper h2 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-weight: 400;
}

.working-header-wrapper p {
    color: #FFFFFF;
    font-weight: 400;
}

.working-grid {
    display: flex;
    gap: 0px;
    width: 100%;
}

.working-card {
    background: rgba(0, 0, 0, 0.5);
    border: 0.25px solid rgba(72, 72, 77, 0.5);
    padding: 42px 24px 56px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.working-card+.working-card {
    border-left: none;
}

.working-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.working-card-title {
    color: #FFFFFF;
    font-weight: 500;
    margin: 0;
    padding-right: 15px;
}

.working-card-top-icon {
    width: auto;
    height: 58px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.working-card-top-icon path {
    transition: fill-opacity 0.4s ease, fill 0.4s ease;
}

.working-card-sprint {
    color: #FFFFFF;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.working-card-desc {
    color: #FFFFFF;
    font-family: 'CXO-Book', sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 48px;
}

.working-card-label {
    color: #FFFFFF;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.working-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
    list-style: none;
}

.working-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.working-list-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    object-fit: contain;
}

.working-list-text {
    color: #FFFFFF;
    font-family: 'CXO-Book', sans-serif;
    font-size: 18px;
    line-height: 28px;
}

.working-outcome-text {
    color: #FFFFFF;
    font-family: 'CXO-Book', sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 48px;
}

.btn-outline-full {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 80px;
    border: 1px solid #FFFFFF;
    padding: 15px 30px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-full:hover {
    background-color: #FFFFFF;
    color: #1D1D1F;
}

@media (min-width: 768px) {
    .working-card {
        transition: all 0.4s ease;
    }

    .working-card:hover {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    }

    .working-card:hover .btn-outline-full {
        background-color: #FFFFFF;
        color: #1D1D1F;
        border-color: #FFFFFF;
    }

    .working-card:hover .working-card-top-icon path {
        fill-opacity: 1 !important;
        fill: #FFFFFF !important;
    }
}

.insights-section {
    background-color: #B0BBBC;
    padding-top: 76px;
    padding-bottom: 76px;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.insights-header h2 {
    color: #FFFFFF;
    margin-bottom: 0;
    font-weight: 400;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #FFFFFF;
}

.insight-card {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border-right: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    min-height: 450px;
}

.insight-card:nth-child(3n) {
    border-right: none;
}

.insight-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
}

.insight-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-category {
    font-family: 'CXO-Medium', sans-serif;
    font-size: 18px;
    color: #48484D;
    margin-bottom: 8px;
    font-weight: 500;
}

.insight-card h3 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-weight: 500;
}

.read-more-btn {
    margin-top: auto;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 12px 24px;
    border-radius: 80px;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #FFFFFF;
    color: #1D1D1F;
}

.testimonials-section {
    background-color: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 0px;
}

.testimonials-heading {
    margin-bottom: 76px;
    max-width: 465px;
    font-weight: 400;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 76px;
}

.testimonial-card {
    background-color: #F7F8F8;
    padding: 48px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    color: #48484D;
    font-family: 'CXO-Book', sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 48px;
}

.testimonial-author h4 {
    color: #1D1D1F;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 500;
}

.testimonial-author span {
    color: #48484D;
    font-family: 'CXO-Book', sans-serif;
    font-size: 14px;
    line-height: 20px;
    display: block;
}

.logos-container {
    padding-bottom: 0px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #B0BBBC;
}

.logos-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100px;
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: #B0BBBC;
}

.form_heading {
    margin-bottom: 24px;
    font-size: 42px;
    font-weight: 400;
}

.contact-section {
    background-color: #FFFFFF;
    padding-top: 76px;
    padding-bottom: 87px;
}

.contact-content {
    max-width: 670px;
}

.contact-form {
    margin-top: 60px;
    width: 100%;
    max-width: 670px;
}

.form-group {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #B0BBBC;
    padding-top: 0 !important;
    padding-bottom: 17px !important;
    margin-left: 0px;
    margin-right: 0px;
    font-family: 'CXO-Book', sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #1D1D1F;
    outline: none;
    border-radius: 0;
}

.form-input::placeholder {
    color: rgba(72, 72, 77, 0.5);
    font-family: 'CXO-Book', sans-serif;
    font-size: 24px;
    opacity: 1;
}

.form-input:focus {
    border-bottom-color: #1D1D1F;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.form-col {
    width: 48%;
}

textarea.form-input {
    resize: none;
    min-height: 40px;
    overflow: hidden;
}

.footer-section {
    width: 100%;
    height: 334px;
    position: relative;
    background-color: #1D1D1F;
    overflow: hidden;
    background-image: url('../img/footer-background0.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-title {
    color: #FFFFFF;
    font-family: 'CXO-Regular', sans-serif;
    font-size: 38px;
    line-height: 46px;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    fill: #FFFFFF;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-text {
    color: #FFFFFF;
    font-family: 'CXO-Medium', sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.back-to-top {
    position: fixed;
    bottom: 48px;
    right: 48px;
    width: 60px;
    height: 60px;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    background: transparent;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top img {
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width: 767px) {
    .header-nav {
        display: none;
    }

    .site-header {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .header-logo img {
        max-width: 190px;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero-section {
        height: 100vh;
    }

    .hero-container {
        align-items: flex-start;
        justify-content: center;
        height: 100%;
    }

    .hero-h1-text {
        margin-bottom: 16px;
        font-weight: 400;
        font-size: 42px;
        line-height: 100%;
    }

    .mobile-break {
        display: block;
    }

    .hero-content {
        max-width: 100%;
        width: 87.27%;
        margin: 0 auto;
    }

    h1 {
        font-size: 42px;
        line-height: 100%;
        letter-spacing: 0.01em;
    }

    .sub-hero {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 24px;
        font-weight: 400;
    }

    .motivated_by {
        max-width: 766px;
        margin-bottom: 76px;
        font-weight: 400;
        line-height: 40px;
    }

    .approch {
        margin-bottom: 28px;
    }

    .approach-item {
        padding: 18px 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .approach-item:hover {
        background-color: #B0BBBC;
    }

    .aprochh3 {
        font-size: 20px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .approach-container {
        flex-direction: column;
    }

    .approach-title-col {
        width: auto;
        flex: 1;
        margin-bottom: 0px;
        padding-right: 0;
    }

    .approach-desc-col {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 15px;
    }

    .number-badge {
        margin-bottom: 0px;
        margin-right: 22px;
    }

    .new-bio-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .new-bio-left {
        display: contents;
    }

    .new-bio-right {
        display: contents;
    }

    .new-bio-titles {
        order: 1;
        margin-bottom: 24px;
    }

    .new-bio-img {
        order: 2;
        margin-bottom: 24px;
        width: 100%;
    }

    .new-bio-stats-container {
        order: 3;
        margin-bottom: 24px;
    }

    .new-bio-btn-wrapper {
        order: 4;
        margin-top: 24px;
        margin-bottom: 40px;
        width: 100%;
    }

    .new-bio-name {
        font-size: 30px;
        line-height: 40px;
    }

    .new-bio-stat-text {
        font-size: 20px;
        line-height: 28px;
    }

    .new-bio-desc {
        order: 5;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
        padding-top: 32px;
        border-top: 1px solid #B0BBBC;
    }

    #bio-toggle-btn {
        order: 6;
        margin-top: 15px;
    }

    .image-break-container {
        padding-bottom: 0px;
    }

    .principles-section {
        padding-top: 55px;
        padding-bottom: 44px;
    }

    .principles-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .principles-left {
        flex: 1 1 100%;
        max-width: 100%;
        padding-top: 0;
    }

    .principles-right {
        width: 100%;
        justify-content: center;
        padding-top: 20px;
    }

    .circle-bounds {
        max-width: 300px;
        display: none !important;
    }

    .principles-accordion-mobile {
        display: block;
    }

    .circle-wrapper {
        max-width: 260px;
    }

    .circle-node {
        width: clamp(45px, 8vw, 60px);
        height: clamp(45px, 8vw, 60px);
    }

    .circle-label {
        font-size: 14px;
    }

    .circle-active-title {
        font-size: 20px;
        line-height: 28px;
    }

    .circle-active-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 12px;
    }

    .circle-active-text {
        font-size: 14px;
        line-height: 20px;
    }

    .circle-empty-state {
        font-size: 18px;
        line-height: 24px;
    }

    .label-discipline {
        transform: translate(-50%, calc(-100% - 38px));
    }

    .label-people {
        transform: translate(38px, -50%);
    }

    .label-partnership {
        transform: translate(27px, 27px);
    }

    .label-presence {
        transform: translate(calc(-100% - 27px), 27px);
        text-align: right;
    }

    .label-humility {
        transform: translate(calc(-100% - 38px), -50%);
        text-align: right;
    }

    .break-img {
        height: 250px;
    }

    .working-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .working-section .container {
        width: 100%;
        max-width: 100%;
    }

    .working-header-wrapper {
        margin-bottom: 40px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .working-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0px;
        padding-bottom: 10px;
        padding-right: 5vw;
    }

    .working-grid::-webkit-scrollbar {
        display: none;
    }

    .working-card {
        width: 85%;
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 32px 20px;
    }

    .working-card:first-child {
        margin-left: 5vw;
        scroll-margin-left: 5vw;
    }

    .insights-header {
        align-items: flex-start;
        gap: 20px;
    }

    .insights-grid {
        flex-direction: column;
        border-left: none;
    }

    .insight-card {
        width: 100%;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid #FFFFFF;
        padding-left: 0px;
        padding-right: 0px;
        min-height: 0px;
    }

    .insight-card:first-child {
        border-top: none;
    }

    .insight-card:nth-child(n+4) {
        display: none;
    }

    .insight-img {
        display: none;
    }

    .insight-card h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .read-more-btn {
        margin-top: 0px;
    }

    .testimonials-section {
        padding-top: 60px;
    }

    .testimonials-section .container {
        width: 100%;
        max-width: 100%;
    }

    .testimonials-heading {
        margin-bottom: 40px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 14px;
        margin-bottom: 48px;
        padding-bottom: 10px;
        padding-right: 5vw;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        width: 85%;
        flex: 0 0 85%;
        max-width: 324px;
        min-height: 525px;
        scroll-snap-align: start;
        padding: 32px 24px;
    }

    .testimonial-card:first-child {
        margin-left: 5vw;
        scroll-margin-left: 5vw;
    }

    .logos-container {
        padding-bottom: 50px;
        width: 100%;
        max-width: 100%;
    }

    .logos-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 40px;
        padding-bottom: 10px;
        padding-right: 5vw;
    }

    .logos-grid::-webkit-scrollbar {
        display: none;
    }

    .logos-grid img {
        width: auto;
        max-width: 180px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .logos-grid img:first-child {
        margin-left: 5vw;
        scroll-margin-left: 5vw;
    }

    .contact-form {
        margin-top: 48px;
    }

    .form-row {
        flex-direction: column;
        gap: 40px;
    }

    .form-col {
        width: 100%;
    }

    .form-input {
        font-size: 24px;
    }

    .form-input::placeholder {
        font-size: 24px;
    }

    .footer-section {
        height: auto;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
    }

    .footer-container {
        padding: 0px;
        gap: 192px;
    }

    .ceo_name {
        font-weight: 400;
        line-height: 40px;
    }

    .bio-top-row {
        margin-bottom: 48px;
    }

    .bio-divider {
        margin-bottom: 36px;
    }

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

    .social-icon {
        width: 22px;
    }

    .back-to-top {
        right: 24px;
        bottom: 24px;
    }

    .cxo-section-2-container {
        flex-direction: column;
        gap: 32px;
    }

    .cxo-left-col {
        width: 100%;
        max-width: 100%;
    }

    .cxo-right-col {
        width: 100%;
        max-width: 100%;
        gap: 32px;
    }

    .cxo-left-title {
        font-size: 30px;
        line-height: 40px;
    }

    .cxo-left-desc {
        margin-top: 32px;
    }

    .cxo-item-title {
        font-size: 20px;
    }

    .cxo-item-body {
        font-size: 18px;
        line-height: 26px;
    }

    .insights-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .insights-header {
        margin-bottom: 32px;
    }

    .form_heading {
        font-size: 42px;
        line-height: 52px;
        font-weight: 400;
    }

    .cxo-list-item {
        gap: 0px;
    }

    .website_accrodigtext {
        padding-top: 24px;
    }

    .bio-top-row {
        display: flex;
        flex-direction: column;
    }

    .bio-content-left {
        display: contents;
        width: 100%;
    }

    .bio-header {
        order: 1;
        margin-bottom: 24px;
    }

    .bio-image-right {
        order: 2;
        width: 100%;
        margin-bottom: 24px;
    }

    .bio-bottom-content {
        order: 3;
        width: 100%;
    }

    .bio-text-row {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 0px;
    }

    .bio-text-col {
        width: 100%;
    }
}