@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Red Hat Display", sans-serif;
    background-color: #000;
    color: #fff;
}

/* About – Hero */
.about-hero {
    background-color: #1a1a1a;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 3rem);
    min-height: calc(50vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__inner {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
}

.about-hero__heading {
    text-transform: uppercase;
    line-height: 1.12;
    letter-spacing: 0.02em;
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    color: #fff;
}

.about-hero__bold {
    font-weight: 800;
}

.about-hero__light {
    font-weight: 300;
}

@keyframes about-hero-slide-left {
    from {
        opacity: 0;
        transform: translate3d(-32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes about-hero-slide-right {
    from {
        opacity: 0;
        transform: translate3d(32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.about-hero__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

.about-hero__anim--left {
    animation-name: about-hero-slide-left;
    animation-delay: 0.15s;
}

.about-hero__anim--right {
    animation-name: about-hero-slide-right;
    animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
    .about-hero__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
        min-height: calc(30vh - 88px);
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 3rem 1rem;
        min-height: calc(35vh - 88px);
    }

    .about-hero__heading {
        font-size: clamp(1.35rem, 6.5vw, 1.85rem);
        line-height: 1.2;
    }
}

/* Who we are */
.about-who {
    background-color: #222222;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.about-who__inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.about-who__lead {
    flex: 0 1 32%;
    max-width: 32%;
}

.about-who__eyebrow {
    margin: 0 0 1rem;
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    color: #b8b8b8;
}

.about-who__heading {
    text-transform: uppercase;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
}

.about-who__heading-bold {
    font-weight: 800;
}

.about-who__heading-light {
    font-weight: 800;
}

.about-who__content {
    flex: 0 1 68%;
    max-width: 68%;
}

.about-who__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.about-who__text:last-child {
    margin-bottom: 0;
}

/* Scroll reveal (About page) */
@keyframes about-reveal-left {
    from {
        opacity: 0;
        transform: translate3d(-36px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes about-reveal-right {
    from {
        opacity: 0;
        transform: translate3d(36px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes about-reveal-up {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.about-reveal__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.about-reveal.is-visible .about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
}

.about-reveal.is-visible .about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
}

.about-reveal.is-visible .about-reveal__anim--up {
    animation-name: about-reveal-up;
    animation-play-state: running;
}

.about-reveal.is-visible .about-who__eyebrow.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.about-reveal.is-visible .about-who__heading-bold.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.about-reveal.is-visible .about-who__heading-light.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.32s;
}

.about-reveal.is-visible .about-who__text:nth-of-type(1).about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

.about-reveal.is-visible .about-who__text:nth-of-type(2).about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .about-reveal__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .about-who {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .about-who__inner {
        flex-direction: column;
        gap: 2rem;
    }

    .about-who__lead,
    .about-who__content {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .about-who {
        padding: 2.5rem 1rem;
    }

    .about-who__heading {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
    }
}

/* Message from the CEO */
.about-ceo {
    background-color: #1A1A1A;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.about-ceo__inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.about-ceo__lead {
    flex: 0 1 32%;
    max-width: 32%;
}

.about-ceo__heading {
    text-transform: uppercase;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
}

.about-ceo__heading-bold,
.about-ceo__heading-light {
    display: block;
}

.about-ceo__heading-bold {
    font-weight: 800;
}

.about-ceo__heading-light {
    font-weight: 800;
}

.about-ceo__content {
    flex: 0 1 68%;
    max-width: 68%;
}

.about-ceo__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.about-ceo__text:last-child {
    margin-bottom: 0;
}

.about-reveal.is-visible .about-ceo__heading-bold.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.about-reveal.is-visible .about-ceo__heading-light.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.22s;
}

.about-reveal.is-visible .about-ceo__text:nth-of-type(1).about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

.about-reveal.is-visible .about-ceo__text:nth-of-type(2).about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.3s;
}

@media (max-width: 1024px) {
    .about-ceo {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .about-ceo__inner {
        flex-direction: column;
        gap: 2rem;
    }

    .about-ceo__lead,
    .about-ceo__content {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .about-ceo {
        padding: 2.5rem 1rem;
    }

    .about-ceo__heading {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
    }
}

/* Connecting brands */
.about-connect {
    background-color: #222222;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.about-connect__inner {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.about-connect__media {
    flex: 0 1 48%;
    max-width: 48%;
    line-height: 0;
}

.about-connect__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.about-connect__content {
    flex: 0 1 52%;
    max-width: 52%;
}

.about-connect__heading {
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-connect__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 1.25rem;
}

.about-connect__text:last-child {
    margin-bottom: 0;
}

.about-reveal.is-visible .about-connect__media.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.about-reveal.is-visible .about-connect__heading.about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

.about-reveal.is-visible .about-connect__text:nth-of-type(1).about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.28s;
}

.about-reveal.is-visible .about-connect__text:nth-of-type(2).about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.42s;
}

@media (max-width: 1024px) {
    .about-connect {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .about-connect__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }

    .about-connect__media,
    .about-connect__content {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .about-connect {
        padding: 2.5rem 1rem;
    }

    .about-connect__heading {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        margin-bottom: 1.5rem;
    }
}

/* Why Oneroad Media */
.why {
    background-color: #222222;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.why__inner {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
}

.why__heading {
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
}

.why__heading-bold {
    font-weight: 800;
}

.why__heading-light {
    font-weight: 800;
}

.why__text {
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
}

.why__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.why__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.why__stat-value {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.why__stat-label {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 400;
    line-height: 1.35;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 12rem;
}

@keyframes why-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.why__anim {
    opacity: 0;
    animation: why-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.why.is-visible .why__anim--heading {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.why.is-visible .why__text.why__anim {
    animation-play-state: running;
    animation-delay: 0.2s;
}

.why.is-visible .why__stat:nth-child(1).why__anim {
    animation-play-state: running;
    animation-delay: 0.35s;
}

.why.is-visible .why__stat:nth-child(2).why__anim {
    animation-play-state: running;
    animation-delay: 0.45s;
}

.why.is-visible .why__stat:nth-child(3).why__anim {
    animation-play-state: running;
    animation-delay: 0.55s;
}

.why.is-visible .why__stat:nth-child(4).why__anim {
    animation-play-state: running;
    animation-delay: 0.65s;
}

@media (prefers-reduced-motion: reduce) {
    .why__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .why__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .why__stat-label {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .why {
        padding: 2.5rem 1rem;
    }

    .why__text {
        margin-bottom: 2rem;
    }

    .why__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .why__stat-value {
        font-size: clamp(2.25rem, 12vw, 1.5rem);
    }
}

/* Vision & Mission */
.about-vm {
    background-color: #1A1A1A;
}

.about-vm__row {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.about-vm__row--mission {
    padding-top: 0;
}

.about-vm__media {
    flex: 0 1 48%;
    max-width: 48%;
    line-height: 0;
}

.about-vm__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.about-vm__content {
    flex: 0 1 52%;
    max-width: 52%;
}

.about-vm__heading {
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.about-vm__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    margin: 0;
}

.about-vm__items {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-vm__item-title {
    text-transform: uppercase;
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 800;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 0.5rem;
}

.about-vm__item .about-vm__text {
    color: #fff;
}

.about-vm__row--vision.about-reveal.is-visible .about-vm__media.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.about-vm__row--vision.about-reveal.is-visible .about-vm__heading.about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

.about-vm__row--vision.about-reveal.is-visible .about-vm__text.about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.28s;
}

.about-vm__row--mission.about-reveal.is-visible .about-vm__heading.about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.about-vm__row--mission.about-reveal.is-visible .about-vm__item:nth-child(1).about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.22s;
}

.about-vm__row--mission.about-reveal.is-visible .about-vm__item:nth-child(2).about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.34s;
}

.about-vm__row--mission.about-reveal.is-visible .about-vm__item:nth-child(3).about-reveal__anim--left {
    animation-name: about-reveal-left;
    animation-play-state: running;
    animation-delay: 0.46s;
}

.about-vm__row--mission.about-reveal.is-visible .about-vm__media.about-reveal__anim--right {
    animation-name: about-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

@media (max-width: 1024px) {
    .about-vm__row {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .about-vm__row--mission {
        padding-top: 0;
    }

    .about-vm__media,
    .about-vm__content {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .about-vm__row {
        padding: 2.5rem 1rem;
    }

    .about-vm__row--mission {
        padding-top: 0;
    }

    .about-vm__heading {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        margin-bottom: 1.25rem;
    }
}

/* Business process */
.about-process {
    background-color: #1A1A1A;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.about-process__inner {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.about-process__media {
    flex: 0 1 48%;
    max-width: 48%;
    line-height: 0;
}

.about-process__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.about-process__content {
    flex: 0 1 52%;
    max-width: 52%;
}

.about-process__heading {
    text-transform: uppercase;
    font-size: clamp(1.35rem, 3vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.about-process__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #b8b8b8;
    margin: 0;
}

.about-reveal.is-visible .about-process__media.about-reveal__anim--left {
    animation-delay: 0.1s;
}

.about-reveal.is-visible .about-process__heading.about-reveal__anim--right {
    animation-delay: 0.15s;
}

.about-reveal.is-visible .about-process__text.about-reveal__anim--right {
    animation-delay: 0.3s;
}

@media (max-width: 1024px) {
    .about-process {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .about-process__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }

    .about-process__media,
    .about-process__content {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .about-process {
        padding: 2.5rem 1rem;
    }

    .about-process__heading {
        font-size: clamp(1.15rem, 5vw, 1.5rem);
        margin-bottom: 1.25rem;
    }
}

/* Digital leadership */
.about-leadership {
    background-color: #222222;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.about-leadership__inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.about-leadership__lead {
    flex: 0 1 54%;
    max-width: 34%;
}

.about-leadership__heading {
    text-transform: uppercase;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
}

.about-leadership__heading-line {
    display: block;
    font-weight: 800;
}

.about-leadership__content {
    flex: 0 1 60%;
    max-width: 66%;
}

.about-leadership__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.about-leadership__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.about-leadership__feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.about-leadership__icon {
    display: block;
    color: #fff;
    line-height: 0;
}

.about-leadership__icon svg {
    display: block;
}

.about-leadership__feature-text {
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

.about-reveal.is-visible .about-leadership__heading-line:nth-child(1).about-reveal__anim--left {
    animation-delay: 0.1s;
}

.about-reveal.is-visible .about-leadership__heading-line:nth-child(2).about-reveal__anim--left {
    animation-delay: 0.22s;
}

.about-reveal.is-visible .about-leadership__text.about-reveal__anim--up {
    animation-delay: 0.15s;
}

.about-reveal.is-visible .about-leadership__feature:nth-child(1).about-reveal__anim--up {
    animation-delay: 0.28s;
}

.about-reveal.is-visible .about-leadership__feature:nth-child(2).about-reveal__anim--up {
    animation-delay: 0.4s;
}

@media (max-width: 1024px) {
    .about-leadership {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .about-leadership__inner {
        flex-direction: column;
        gap: 2rem;
    }

    .about-leadership__lead,
    .about-leadership__content {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .about-leadership {
        padding: 2.5rem 1rem;
    }

    .about-leadership__heading {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
    }

    .about-leadership__text {
        margin-bottom: 1.75rem;
    }

    .about-leadership__features {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}


/* Clients */
.clients {
    background-color: #1A1A1A;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.partners {
    background-color: #1A1A1A;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}

.clients__inner {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.clients__heading {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
}

.clients__heading-bold {
    font-weight: 800;
}

.clients__heading-light {
    font-weight: 800;
}

.clients__track {
    display: flex;
    width: max-content;
    animation: clients-marquee 48s linear infinite;
    animation-play-state: paused;
}

.clients.is-visible .clients__track {
    animation-play-state: running;
}

.partners.is-visible .clients__track {
    animation-play-state: running;
}

.clients__marquee:hover .clients__track {
    animation-play-state: paused;
}

.clients.is-visible .clients__marquee:hover .clients__track {
    animation-play-state: paused;
}

.partners.is-visible .clients__marquee:hover .clients__track {
    animation-play-state: paused;
}

@keyframes clients-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.clients__grid {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    list-style: none;
    margin: 0;
    padding: 0 0.5rem;
}

.clients__item {
    flex-shrink: 0;
}

.clients__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 14vw, 180px);
    height: clamp(120px, 14vw, 180px);
    border-radius: 50%;
    background-color: #222222;
    padding: clamp(1rem, 2vw, 1.5rem);
}

.clients__logo-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@keyframes clients-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.clients__anim {
    opacity: 0;
    animation: clients-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.clients.is-visible .clients__anim--heading {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.partners.is-visible .clients__anim--heading {
    animation-play-state: running;
    animation-delay: 0.05s;
}

@media (prefers-reduced-motion: reduce) {
    .clients__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }

    .clients__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .clients__grid[aria-hidden="true"] {
        display: none;
    }

    .clients__marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 640px) {
    .clients {
        padding: 2.5rem 1rem;
    }

    .partners {
        padding: 2rem 1rem 2.5rem;
    }

    .clients__heading {
        margin-bottom: 2rem;
    }

    .clients__logo-wrap {
        width: 110px;
        height: 110px;
        padding: 0.85rem;
    }

    .clients__grid {
        gap: 1rem;
    }

    .clients__track {
        animation-duration: 48s;
    }
}

/* Contact CTA */
.about-contact-cta {
    background-color: #000;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.about-contact-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #1a1a1a;
}

.about-contact-cta__lead {
    flex: 0 1 48%;
    max-width: 48%;
}

.about-contact-cta__eyebrow {
    margin: 0 0 0.65rem;
    font-size: clamp(0.95rem, 1.35vw, 1.25rem);
    font-weight: 400;
    color: #fff;
}

.about-contact-cta__heading {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.12;
    color: #fff;
}

.about-contact-cta__heading-bold {
    display: block;
    font-size: clamp(1.6rem, 3.6vw, 3rem);
    font-weight: 800;
}

.about-contact-cta__heading-light {
    display: block;
    margin-top: 0.2rem;
    font-size: clamp(1.6rem, 3.6vw, 3rem);
    font-weight: 800;
}

.about-contact-cta__action {
    flex: 0 1 42%;
    max-width: 500px;
}

.about-contact-cta__text {
    margin: 0 0 1.4rem;
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
}

.about-contact-cta__btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.about-contact-cta__btn:hover {
    background-color: #666;
}

.about-contact-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.about-reveal.is-visible .about-contact-cta__eyebrow.about-reveal__anim--left {
    animation-delay: 0.1s;
}

.about-reveal.is-visible .about-contact-cta__heading-bold.about-reveal__anim--left {
    animation-delay: 0.2s;
}

.about-reveal.is-visible .about-contact-cta__heading-light.about-reveal__anim--left {
    animation-delay: 0.32s;
}

.about-reveal.is-visible .about-contact-cta__text.about-reveal__anim--right {
    animation-delay: 0.15s;
}

.about-reveal.is-visible .about-contact-cta__btn.about-reveal__anim--right {
    animation-delay: 0.3s;
}

@media (max-width: 1024px) {
    .about-contact-cta {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .about-contact-cta__inner {
        gap: 2.25rem;
        padding: 2rem 1.5rem;
    }

    .about-contact-cta__lead {
        flex: 1 1 46%;
        max-width: 46%;
    }

    .about-contact-cta__action {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 640px) {
    .about-contact-cta {
        padding: 2.5rem 1rem;
    }

    .about-contact-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
        padding: 1.5rem 1rem;
    }

    .about-contact-cta__lead,
    .about-contact-cta__action {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .about-contact-cta__heading-bold,
    .about-contact-cta__heading-light {
        font-size: clamp(1.45rem, 7vw, 2.1rem);
    }
}
