:root {
    --navy: #070c60;
    --navy-2: #010073;
    --white: #ffffff;
    --text: #ffffff;
    --nav-text: #010073;
    --nav-bg: rgba(255, 255, 255, 0.96);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    --radius-xl: 18px;
    --radius-pill: 999px;
    --container: 1180px;
}
* {
    box-sizing: border-box;
}

/* html,body{ width: 100%; } */

body {
    margin: 0;
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-weight: 400;
    /* background: #0b63d0; */
    color: var(--text);
    overflow-x: hidden;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header / Nav */

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 50;
    /* padding: 18px 18px 0; */
}
.nav-shell {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    background: var(--nav-bg);
    /* border-radius: 10px; */
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    padding: 0;
    backdrop-filter: blur(8px);
}
.nav-content {
    max-width: var(--container);
    margin: 0 auto;
    min-height: 66px;
    display: grid;
    grid-template-columns: 180px 1fr 240px;
    align-items: center;
    /* padding: 0 16px; */
    position: relative;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand__logo {
    height: 42px;
    width: auto;
    display: block;
}
.nav {
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
}
.nav__toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}
.nav__toggle-bars {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--navy-2);
    position: relative;
    border-radius: 2px;
}
.nav__toggle-bars::before, .nav__toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--navy-2);
    border-radius: 2px;
}
.nav__toggle-bars::before {
    top: -7px;
}
.nav__toggle-bars::after {
    top: 7px;
}
.nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav__link {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 8px 6px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav__link--dropdown {
    cursor: pointer;
}
.nav__chevron {
    font-size: 12px;
    transition: transform 200ms ease;
}
.nav__dropdown {
    position: relative;
}
.nav__dropdown:hover .nav__dropdown-menu, .nav__dropdown:focus-within .nav__dropdown-menu, .nav__dropdown.is-open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__dropdown:hover .nav__chevron, .nav__dropdown:focus-within .nav__chevron, .nav__dropdown.is-open .nav__chevron {
    transform: rotate(180deg);
}
.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.nav__dropdown-menu li {
    margin: 0;
    padding: 0;
}
.nav__dropdown-link {
    display: block;
    color: var(--navy-2);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}
.nav__dropdown-menu li:last-child .nav__dropdown-link {
    border-bottom: none;
}
.nav__dropdown-link:hover {
    background-color: rgba(1, 0, 115, 0.05);
}
.nav__link[aria-current="page"] {
    font-weight: 500;
}
.btn[aria-current="page"] {
    box-shadow: inset 0 -2px 0 rgba(1, 0, 115, 0.85);
}
.nav-cta {
    display: flex;
    justify-content: end;
    gap: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid transparent;
}
.btn--outline {
    color: var(--navy-2);
    background: transparent;
    border-color: rgba(11, 26, 120, 0.45);
    box-shadow: none;
}
.btn--solid {
    color: var(--white);
    background: var(--navy);
}
.btn--ghost {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
}
.btn--lg {
    padding: 15px 22px;
    border-radius: 5px;
    font-size: 13px;
    min-width: 130px;
}

/* Hero */

.hero {
    position: relative;
    min-height: 640px;
    height: 100vh;
    max-height: 820px;
    padding: 0;
    overflow: hidden;
    touch-action: pan-y;
}

/* About page hero */

.page-hero {
    position: relative;
    min-height: 640px;
    height: 100vh;
    max-height: 820px;
    display: grid;
    align-items: center;
    padding: 98px 18px 46px;
    overflow: hidden;
    color: #ffffff;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./assets/images/about-bg.png") no-repeat;
    background-size: cover;
    z-index: 0;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 340px at 50% 55%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.32) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.22) 35%, rgba(0, 0, 0, 0.22) 65%, rgba(0, 0, 0, 0.22) 100%);
    z-index: 1;
}

/* About page specific hero styles */

.page-about .page-hero::before {
    background: url("./assets/images/about-page-bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.page-about .page-hero::after {
    background: linear-gradient(180deg, rgba(1, 92, 156, 0.8) 0%, rgba(1, 92, 156, 0) 100%);
}
.about-hero__title {
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.44); */
}
@media (max-width: 760px) {
    .about-hero__title {
        font-size: clamp(32px, 8vw, 50px);
    }
}

/* About content section */

.about-content-section {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.about-content-section__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content-section__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-content-section__title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.about-content-section__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-content-section__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    text-align: justify;
}
.about-content-section__right {
    width: 100%;
}
.about-content-section__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    object-fit: cover;
}
@media (max-width: 980px) {
    .about-content-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content-section__image {
        max-width: 100%;
    }
}
@media (max-width: 760px) {
    .about-content-section {
        padding: 60px 18px 80px;
    }
    .about-content-section__title {
        font-size: 26px;
    }
    .about-content-section__text p {
        font-size: 14px;
    }
}

/* About Mission, Vision, Values section */

.about-mvv {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.about-mvv__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 150px;
    align-items: start;
}
.about-mvv__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.about-mvv__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-2);
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
}
.about-mvv__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.about-mvv__title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.about-mvv__text {
    margin: 0;
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}
.about-mvv-values__text {
    margin: 0;
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}
.about-mvv__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.75);
}
.about-mvv__text p:not(:last-child) {
    margin-bottom: 8px;
}
@media (max-width: 980px) {
    .about-mvv__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 760px) {
    .about-mvv {
        padding: 60px 18px 80px;
    }
    .about-mvv__title {
        font-size: 26px;
    }
    .about-mvv__text, .about-mvv__text p {
        font-size: 14px;
    }
}

/* About Services section */

.about-services {
    background: #ffffff;
    padding: 80px 18px 0;
    color: #0b0b0b;
}
.about-services__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
    padding-bottom: 0;
}
.about-services__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 10px;
}
.about-services__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-services__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: auto 0;
}
.about-services__main-title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.about-services__main-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}
.about-services__section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-services__section-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.about-services__section-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}
.about-services__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about-services__list li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    padding-left: 20px;
    position: relative;
}
.about-services__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.75);
}
.about-services__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-services__image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 3;
    overflow: hidden;
    border-radius: 5px;
}
.about-services__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About AI section */

.about-ai {
    background: #ffffff;
    padding: 0 18px 100px;
    color: #0b0b0b;
}
.about-ai__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-ai__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-ai__title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.about-ai__subtitle {
    margin: 0;
    font-size: 24px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
}
.about-ai__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about-ai__list li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    padding-left: 20px;
    position: relative;
}
.about-ai__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.75);
}
.about-ai__right {
    width: 100%;
}
.about-ai__image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}
.about-ai__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 980px) {
    .about-services__header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-services__content, .about-ai__container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
}
@media (max-width: 760px) {
    .about-services {
        padding: 60px 18px 0;
    }
    .about-ai {
        padding: 0 18px 80px;
    }
    .about-services__main-title, .about-ai__title {
        font-size: 26px;
    }
    .about-services__section-title {
        font-size: 20px;
    }
    .about-ai__subtitle {
        font-size: 20px;
    }
    .about-services__main-description, .about-services__section-subtitle, .about-services__list li, .about-ai__list li {
        font-size: 14px;
    }
    .about-services__image-wrapper {
        aspect-ratio: 3 / 4;
    }
    .about-ai__image-wrapper {
        height: 250px;
    }
}

/* About Quality section */

.about-quality {
    position: relative;
    min-height: 630px;
    background: url("./assets/images/about-quality.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 18px;
    overflow: hidden;
}
.about-quality__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}
.about-quality__title {
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
@media (max-width: 760px) {
    .about-quality {
        min-height: 400px;
        padding: 60px 18px;
    }
    .about-quality__title {
        font-size: clamp(32px, 8vw, 50px);
    }
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    justify-items: center;
    text-align: center;
}
.page-hero__title {
    margin: 0;
    font-size: clamp(32px, 4.2vw, 58px);
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

/* Why asmep page hero */

.page-why-asmep .page-hero::before {
    background: url("./assets/images/why-asmep.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

/* .page-why-asmep .page-hero::after {
    background: radial-gradient(900px 340px at 50% 55%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.20) 35%, rgba(0, 0, 0, 0.20) 65%, rgba(0, 0, 0, 0.65) 100%);
} */

.why-asmep-hero__title {
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
@media (max-width: 760px) {
    .why-asmep-hero__title {
        font-size: clamp(32px, 8vw, 50px);
    }
}

/* Leadership page hero */

.page-leadership .page-hero::before {
    background: url("./assets/images/leadership.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.page-leadership .page-hero::after {
    background: radial-gradient(900px 340px at 50% 55%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.32) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.22) 35%, rgba(0, 0, 0, 0.22) 65%, rgba(0, 0, 0, 0.22) 100%);
}
.leadership-hero__title {
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
@media (max-width: 760px) {
    .leadership-hero__title {
        font-size: clamp(32px, 8vw, 50px);
    }
}

/* Leadership content section */

.leadership-content {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.leadership-content__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.leadership-content__title {
    margin: 0 0 24px;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.leadership-content__subtitle {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.3;
}
.leadership-content__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.leadership-content__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    text-align: justify;
}
@media (max-width: 760px) {
    .leadership-content {
        padding: 60px 18px 80px;
    }
    .leadership-content__title {
        font-size: 26px;
    }
    .leadership-content__subtitle {
        font-size: 20px;
    }
    .leadership-content__text p {
        font-size: 14px;
    }
}

/* Hero message section (Leadership page) */

.hero-message {
    position: relative;
    min-height: 600px;
    background: url("./assets/images/leadership-hero.jpg") no-repeat center top;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 18px;
    overflow: hidden;
}
.hero-message::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 340px at 50% 55%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.32) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.22) 35%, rgba(0, 0, 0, 0.22) 65%, rgba(0, 0, 0, 0.22) 100%);
    z-index: 1;
}
.hero-message__content {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-message__text {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
}
.hero-message__highlight {
    color: var(--navy-2);
    font-weight: 500;
}
.hero-message__title {
    margin: 0;
    margin-left: -8px;
    font-size: 128px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
}
@media (max-width: 980px) {
    .hero-message__title {
        font-size: 96px;
    }
    .hero-message__text {
        font-size: 28px;
    }
}
@media (max-width: 760px) {
    .hero-message {
        min-height: 500px;
        padding: 60px 18px;
    }
    .hero-message__title {
        font-size: 64px;
        letter-spacing: -1px;
    }
    .hero-message__text {
        font-size: 24px;
    }
}

/* Life at asmep content section */

.life-at-asmep-content {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.life-at-asmep-content__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.life-at-asmep-content__image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 40px;
    border-radius: 8px;
}
.life-at-asmep-content__title {
    margin: 0 0 24px;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.life-at-asmep-content__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.life-at-asmep-content__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}
@media (max-width: 760px) {
    .life-at-asmep-content {
        padding: 60px 18px 80px;
    }
    .life-at-asmep-content__title {
        font-size: 30px;
    }
    .life-at-asmep-content__text p {
        font-size: 14px;
    }
}

/* Brand Promise section (Why asmep page) */

.brand-promise {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.brand-promise__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.brand-promise__header {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.brand-promise__header-left {
    flex: 0 0 auto;
    text-align: center;
}
.brand-promise__header-right {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}
.brand-promise__title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.brand-promise__subtitle {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    text-align: center;
}
.brand-promise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.brand-promise-card {
    background: #ffffff;
    border: 2px solid var(--navy-2);
    border-radius: 5px;
    padding: 52px 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    align-items: center;
}
.brand-promise-card--highlighted {
    border: 2px solid var(--navy-2);
    box-shadow: 0 4px 12px rgba(1, 0, 115, 0.15);
}
.brand-promise-card__icon {
    width: auto;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-promise-card__icon img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}
.brand-promise-card__title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-align: center;
}
.brand-promise-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    text-align: justify;
    flex: 1;
}
@media (max-width: 980px) {
    .brand-promise__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 760px) {
    .brand-promise {
        padding: 60px 18px 80px;
    }
    .brand-promise__header {
        flex-direction: column;
        gap: 16px;
    }
    .brand-promise__header-right {
        padding-top: 0;
    }
    .brand-promise__title {
        font-size: 26px;
    }
    .brand-promise__subtitle {
        font-size: 28px;
    }
    .brand-promise__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .brand-promise-card {
        padding: 24px 20px;
    }
    .brand-promise-card__title {
        font-size: 20px;
    }
    .brand-promise-card__text {
        font-size: 14px;
    }
}

/* Services page hero */

.page-services .page-hero::before {
    background: url("./assets/images/services.png") no-repeat;
    background-size: cover;
    background-position: right center;
}
.page-services .page-hero::after {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.16) 68%, rgba(0, 0, 0, 0.02) 100%);
}
.page-services .page-hero__inner {
    justify-items: start;
    text-align: left;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

/* Contact page hero */

.page-contact .page-hero::before {
    background: url("./assets/images/contact-bg-new.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.page-contact .page-hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.63) 20.28%, rgba(0, 0, 0, 0) 98.58%);
}
.contact-hero__inner {
    justify-items: start;
    align-items: flex-end;
    text-align: left;
}
.contact-hero__content {
    max-width: 520px;
}
.contact-hero__title {
    margin: 0;
    font-size: 50px;
    /* 1. main heading (desktop) */
    font-weight: 500;
    line-height: 1.05;
    color: var(--navy-2);
}
@media (max-width: 760px) {
    .contact-hero__inner {
        /* justify-items: center; */
        text-align: left;
    }
    .contact-hero__content {
        max-width: 92vw;
    }
    .contact-hero__title {
        font-size: 40px;
    }
    .contact-hero__copy {
        font-size: 16px;
    }
}

/* Career page hero */

.page-career .page-hero::before {
    background: url("./assets/images/careers-bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.page-career .page-hero::after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
}
.career-hero__inner {
    justify-items: center;
    text-align: center;
}
.career-hero__content {
    max-width: 620px;
}
.career-hero__title {
    margin: 0;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.05;
    color: #ffffff;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.career-hero__copy {
    margin: 18px 0 0;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    max-width: 520px;
}
@media (max-width: 760px) {
    .career-hero__inner {
        justify-items: center;
    }
    .career-hero__content {
        max-width: 92vw;
    }
    .career-hero__title {
        font-size: clamp(32px, 8vw, 50px);
    }
    .career-hero__copy {
        font-size: 14px;
    }
}

/* Career page - Life at ASMEP */

.page-career .career-moonshot {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.page-career .career-moonshot__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: center;
}
.page-career .career-moonshot__left {
    display: flex;
    flex-direction: column;
}
.page-career .career-moonshot__title {
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.page-career .career-moonshot__right {
    width: 100%;
}
.page-career .career-moonshot__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    object-fit: cover;
}
@media (max-width: 980px) {
    .page-career .career-moonshot__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-career .career-moonshot__image {
        max-width: 100%;
    }
}
@media (max-width: 760px) {
    .page-career .career-moonshot {
        padding: 60px 18px 80px;
    }
    .page-career .career-moonshot__title {
        font-size: 32px;
    }
}

/* Career page - Current Openings band */

.page-career .career-openings {
    background: #ffffff;
    color: var(--navy-2);
    padding: 40px 18px;
    padding-bottom: 0px;
}
.page-career .career-openings__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.page-career .career-openings__title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
}
@media (max-width: 760px) {
    .page-career .career-openings {
        padding: 30px 18px;
    }
    .page-career .career-openings__title {
        font-size: 24px;
    }
}

/* Career page - Jobs (tabs + filters + grid) */

.page-career .career-jobs {
    background: #ffffff;
    padding: 24px 18px 84px;
    color: #0b0b0b;
}
.page-career .career-jobs__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.page-career .career-jobs__tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}
.page-career .career-jobs__tab {
    border: 1px solid var(--navy-2);
    background: #ffffff;
    color: var(--navy-2);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.page-career .career-jobs__tab--active {
    background: var(--navy-2);
    color: #ffffff;
    border-color: var(--navy-2);
    font-family: "Montserrat", sans-serif;
}
.page-career .career-jobs__filters {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.page-career .career-jobs__filter {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.page-career .career-jobs__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
    border-radius: 5px;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    color: #0b0b0b;
    min-width: 160px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}
.page-career .career-jobs__chev {
    position: absolute;
    right: 14px;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}
.page-career .career-jobs__header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 80px;
}
.page-career .career-jobs__category-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy-2);
}
.page-career .career-jobs__category-subtitle {
    margin: 0;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}
.page-career .career-jobs__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.page-career .job-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.page-career .job-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.page-career .job-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #0b0b0b;
    flex: 1;
    line-height: 1.2;
}
.page-career .job-card__badge {
    background: #E5E7EB;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 16px;
    white-space: nowrap;
}
.page-career .job-card__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.page-career .job-card__details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.page-career .job-card__detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #0b0b0b;
}
.page-career .job-card__detail i {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
}
.page-career .job-card__detail--right {
    margin-left: auto;
}
.page-career .job-card__role-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.page-career .job-card__role-content[aria-hidden="false"] {
    max-height: 500px;
    margin-bottom: 16px;
}
.page-career .job-card__role-list {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}
.page-career .job-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
}
.page-career .job-card__view-role {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #0b0b0b;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.page-career .job-card__view-role:hover {
    color: var(--navy-2);
}
.page-career .job-card__view-role i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.page-career .job-card__view-role[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.page-career .job-card__apply {
    background: var(--navy-2);
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.page-career .job-card__apply:hover {
    background: #010073;
}
.page-career .career-jobs__footer {
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.page-career .career-jobs__footer-title {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}
.page-career .career-jobs__footer-button {
    background: #ffffff;
    border: 1px solid var(--navy-2);
    color: var(--navy-2);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.page-career .career-jobs__footer-button:hover {
    background: rgba(1, 0, 115, 0.05);
    border-color: #010073;
}
.page-career .career-jobs__footer-button:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.4);
    outline-offset: 2px;
}
.page-career .career-jobs__divider {
    margin-top: 60px;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
    .page-career .career-jobs__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 980px) {
    .page-career .career-jobs__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 760px) {
    .page-career .career-jobs {
        padding: 40px 18px 60px;
    }
    .page-career .career-jobs__tabs {
        margin-bottom: 30px;
    }
    .page-career .career-jobs__tab {
        font-size: 14px;
        padding: 10px 24px;
    }
    .page-career .career-jobs__filters {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 30px;
    }
    .page-career .career-jobs__select {
        width: 100%;
        min-width: auto;
    }
    .page-career .career-jobs__header {
        margin-bottom: 30px;
    }
    .page-career .career-jobs__category-title {
        font-size: 24px;
    }
    .page-career .career-jobs__category-subtitle {
        font-size: 18px;
    }
    .page-career .job-card {
        padding: 20px;
        gap: 16px;
    }
    .page-career .job-card__title {
        font-size: 24px;
    }
    .page-career .job-card__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .page-career .job-card__apply {
        width: 100%;
    }
}
@media (max-width: 520px) {
    .page-career .career-jobs {
        padding: 32px 12px 64px;
    }
}

/* Career page - Resume submission */

.page-career .career-resume {
    background: #ffffff;
    /* match screenshot section background */
    padding: 44px 18px 84px;
    color: #0b0b0b;
}
.page-career .career-resume__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.page-career .career-resume__header {
    margin-bottom: 40px;
}
.page-career .career-resume__title {
    margin: 0 0 8px;
    text-align: left;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy-2);
}
.page-career .career-resume__subtitle {
    margin: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}
.page-career .career-resume__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 22px;
    align-items: start;
}
.page-career .career-resume__left {
    display: grid;
    gap: 16px;
}
.page-career .career-resume__right {
    display: grid;
    gap: 16px;
}
.page-career .career-upload {
    display: grid;
    gap: 8px;
}
.page-career .career-upload__label {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.70);
}
.page-career .career-upload__drop {
    position: relative;
    display: grid;
    place-items: center;
    /* border: 2px dashed rgba(12, 85, 110, 0.35); */
    border-radius: 10px;
    height: 150px;
    padding: 12px;
    cursor: pointer;
    background: #ffffff;
    /* light blue upload area */
}
.page-career .career-upload__drop:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}
.page-career .career-upload__drop.is-drag {
    border-color: rgba(1, 0, 115, 0.55);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}
.page-career .career-upload__drop-inner {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px dashed rgba(12, 85, 110, 0.22);
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 14px;
}
.page-career .career-upload__icon {
    font-size: 42px;
    color: rgba(12, 85, 110, 0.45);
    line-height: 1;
}
.page-career .career-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.page-career .career-upload__hint {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.72);
}
.page-career .career-resume__actions {
    display: grid;
    justify-items: end;
    gap: 12px;
    padding-top: 12px;
}
.page-career .career-resume__terms {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.70);
}
.page-career .career-resume__checkbox {
    width: 14px;
    height: 14px;
}
.page-career .career-resume__submit {
    border: 1px solid var(--navy-2);
    background: #ffffff;
    color: var(--navy-2);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.page-career .career-resume__submit:hover {
    background: rgba(1, 0, 115, 0.05);
    border-color: #010073;
}
@media (max-width: 760px) {
    .page-career .career-resume__grid {
        grid-template-columns: 1fr;
    }
    .page-career .career-resume__actions {
        justify-items: center;
    }
}
@media (max-width: 760px) {
    .page-career .career-resume__title {
        font-size: 24px;
    }
    .page-career .career-resume__subtitle {
        font-size: 14px;
    }
}
.page-career .career-resume__divider {
    margin-top: 60px;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 520px) {
    .page-career .career-resume {
        padding: 36px 12px 64px;
    }
    .page-career .career-resume__header {
        margin-bottom: 30px;
    }
    .page-career .career-resume__title {
        font-size: 20px;
    }
    .page-career .career-upload__drop {
        height: 130px;
    }
    .page-career .career-jobs__divider, .page-career .career-resume__divider {
        margin-top: 40px;
    }
}

/* Contact page - locations section (tabs + map) */

.page-contact .contact-locations {
    background: #ffffff;
    padding: 68px 18px 84px;
    color: #0b0b0b;
}
.page-contact .contact-locations__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.page-contact .contact-locations__header {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}
.page-contact .contact-locations__title {
    margin: 0;
    font-size: 30px;
    /* 3. ready to build together (desktop) */
    font-weight: 500;
    color: var(--navy-2);
}
.page-contact .contact-locations__subtitle {
    margin: 0;
    font-size: 16px;
    /* 4. subheading (desktop) */
    color: rgba(0, 0, 0, 0.70);
}
.page-contact .contact-locations__tabs {
    display: inline-flex;
    gap: 12px;
    justify-self: start;
    margin-top: 18px;
}
.page-contact .contact-locations__tab {
    border: 0;
    cursor: pointer;
    background: var(--navy-2);
    color: #ffffff;
    font-weight: 500;
    padding: 15px 28px;
    border-radius: 5px;
    font-size: 14px;
    min-width: 88px;
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
    font-family: "Montserrat", sans-serif;
}
.page-contact .contact-locations__tab.is-active {
    background: var(--navy-2);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
.page-contact .contact-locations__tab:active {
    transform: translateY(0);
}
.page-contact .contact-locations__tab:hover {
    transform: translateY(-1px);
}
.page-contact .contact-locations__tab:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.45);
    outline-offset: 3px;
}
.page-contact .contact-locations__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: start;
    margin-top: 18px;
}
.page-contact .contact-locations__map-shell {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(1, 0, 115, 0.9);
    background: #e9e9e9;
}
.page-contact .contact-locations__map {
    width: 100%;
    height: 420px;
    /* desktop-like */
    display: block;
}
.page-contact .contact-locations__info-section {
    margin-bottom: 24px;
}
.page-contact .contact-locations__info-section:last-child {
    margin-bottom: 0;
}
.page-contact .contact-locations__info-title {
    margin: 0 0 12px;
    font-size: 24px;
    /* 5. head office / opening hours (desktop) */
    font-weight: 500;
    color: var(--navy-2);
}
.page-contact .contact-locations__info-title--mt {
    margin-top: 22px;
}
.page-contact .contact-locations__info-section p {
    margin: 0;
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    line-height: 1.55;
}
.page-contact .contact-locations__info-email {
    margin: 8px 0 0;
}
.page-contact .contact-locations__info-email .contact-locations__info-link {
    font-size: 16px;
    color: var(--navy-2);
    text-decoration: underline;
}
.page-contact .contact-locations__info-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.page-contact .contact-locations__info-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    /* 6. address and other info (desktop) */
    line-height: 1.55;
}
.page-contact .contact-locations__info-ico {
    color: var(--navy-2);
    line-height: 1;
    margin-top: 2px;
}
.page-contact .contact-locations__info-link {
    color: rgba(0, 0, 0, 0.70);
    text-decoration: none;
}
.page-contact .contact-locations__info-link:hover {
    text-decoration: underline;
}
.page-contact .contact-locations__hours {
    margin: 10px 0 0;
    color: rgba(0, 0, 0, 0.70);
    font-size: 20px;
    /* 7. opening hours text (desktop) */
    line-height: 1.55;
}
@media (max-width: 980px) {
    .page-contact .contact-locations__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .page-contact .contact-locations__tabs {
        justify-self: start;
    }
    .page-contact .contact-locations__map {
        height: 360px;
    }
}
@media (max-width: 520px) {
    .page-contact .contact-locations {
        padding: 56px 12px 64px;
    }
    .page-contact .contact-locations__title {
        font-size: 32px;
    }
    .page-contact .contact-locations__subtitle {
        font-size: 16px;
    }
    .page-contact .contact-locations__info-title {
        font-size: 18px;
    }
    .page-contact .contact-locations__info-item {
        font-size: 14px;
    }
    .page-contact .contact-locations__hours {
        font-size: 14px;
    }
    .page-contact .contact-locations__tabs {
        width: 100%;
        justify-content: center;
    }
    .page-contact .contact-locations__tab {
        flex: 1;
    }
    .page-contact .contact-locations__map {
        height: 320px;
    }
}
.services-hero__title {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.4vw, 18px);
    line-height: 1.02;
    /* keep letters tight; gap controls line spacing */
}
.services-hero__title>span {
    display: block;
}
.services-hero__subtitle {
    margin: 16px 0 0;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

/* Services - Creating Values (matches screenshot: alternating rows + half-bleed images) */

.values {
    position: relative;
    background: #ffffff;
    padding: 72px 0 84px;
    overflow: hidden;
}
.values::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background: url("./assets/images/left-background.png") top left/contain no-repeat;
    opacity: 1;
    pointer-events: none;
}
.values__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    padding: 0 18px;
    color: #0b0b0b;
}
.values__header {
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 46px;
}
.values__title {
    margin: 0;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    color: var(--navy-2);
}
.values__lede {
    margin: 0;
    max-width: 660px;
    font-size: clamp(16px, 2.2vw, 24px);
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.72);
}
.values-row {
    position: relative;
    padding: 10px 0 34px;
    min-height: 450px;
    /* reserve space so absolutely-positioned media never overlaps text below */
}
.values-row:last-of-type {
    padding-bottom: 0;
}
.values-row__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    padding: 0 18px;
    position: relative;
    z-index: 2;
    /* keep text above media */
}
.values-row__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}
.values-block {
    display: grid;
    gap: 10px;
    max-width: 520px;
}
.values-block__title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 500;
    color: var(--navy-2);
}
.values-block__subtitle {
    margin: 0;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(0, 0, 0, 0.70);
}
.values-block__list {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    font-size: clamp(13px, 1.6vw, 16px);
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.70);
}

/* Services page typography (desktop targets + responsive scaling) */

.page-services .page-hero__title {
    font-size: clamp(44px, 6.4vw, 73px);
}

/* Row alignment: Design text on left, Build text on right */

.values-row--design .values-block {
    grid-column: 1;
}
.values-row--build .values-block {
    grid-column: 2;
    padding-top: 40px;
}
.values-row--ai .values-block {
    padding-top: 40px;
}

/* Half-bleed media: starts at 50vw and extends to the page edge */

.values-row__media {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    padding: 0 18px;
    pointer-events: none;
    z-index: 1;
}
.values-row__media--right {
    left: 50vw;
    right: 0;
    justify-content: flex-start;
}
.values-row__media--left {
    left: 0;
    right: 50vw;
    justify-content: flex-end;
}
.values-row__frame {
    margin: 0;
    width: min(520px, 100%);
    height: 450px;
    /* desktop target */
    border-radius: 14px;
    overflow: hidden;
    background: #f2f2f2;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
}
.values-row__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
@media (max-width: 980px) {
    .values-row {
        min-height: 0;
    }
    .values-row__grid {
        grid-template-columns: 1fr;
    }
    .values-row--build .values-block {
        grid-column: 1;
        justify-self: start;
    }
    .values-row__media {
        position: relative;
        inset: auto;
        padding: 18px 18px 0;
        pointer-events: auto;
    }
    .values-row__media--left, .values-row__media--right {
        left: auto;
        right: auto;
        justify-content: flex-start;
    }
    .values-row__frame {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 16 / 10;
    }
}
@media (max-width: 520px) {
    .values {
        padding: 56px 0 64px;
    }
    .values__container, .values-row__container {
        padding: 0 12px;
    }
    .values__header {
        margin-bottom: 30px;
    }
    .values-row__media {
        padding: 16px 12px 0;
    }
}

/* Services - Quality banner (full-bleed background + bottom aligned text) */

.page-services .quality-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    /* bottom align */
    padding: 64px 18px;
    /* equal top/bottom padding */
    overflow: hidden;
    color: #ffffff;
}
.page-services .quality-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./assets/images/quality-services.png") no-repeat center / cover;
    z-index: 0;
}
.page-services .quality-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(2, 0, 80, 0.68) 62%, rgba(1, 0, 115, 0.86) 100%);
    z-index: 1;
}
.page-services .quality-banner__container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 10px;
}
.page-services .quality-banner__title {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.page-services .quality-banner__copy {
    margin: 0;
    max-width: 920px;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
@media (max-width: 520px) {
    .page-services .quality-banner {
        min-height: 360px;
        padding: 52px 12px;
    }
}
.about-content {
    background: #ffffff;
    padding: 52px 18px 64px;
}
.about-content__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    color: #0b0b0b;
    display: grid;
    gap: 10px;
}
.about-content__heading {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #010073;
}
.about-content__copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.72);
    max-width: 760px;
}

/* About split section (below hero) */

.about-split {
    /* full-bleed split background (white left, blue gradient right) */
    background: linear-gradient( 90deg, #ffffff 0%, #ffffff 50%, rgba(3, 2, 41, 0.92) 50%, rgba(1, 0, 115, 0.92) 100%);
    padding: 0;
}
.about-split__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    /* equal heights */
    padding: 0 18px;
}
.about-split__left {
    display: grid;
    align-items: center;
    padding: 64px 18px;
}
.about-split__inner {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}
.about-split__heading {
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    color: #0b0b0b;
}
.about-split__copy {
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.70);
    max-width: 440px;
}
.about-split__right {
    background: transparent;
    /* background comes from full-bleed .about-split */
    display: grid;
    place-items: center;
    padding: 100px 18px;
}
.about-split__logo {
    width: min(520px, 84%);
    height: auto;
    display: block;
}

/* Mission & Vision section (about page) */

.mv {
    position: relative;
    background: #ffffff;
    padding: 74px 18px 86px;
    overflow: hidden;
}
.mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background: url("./assets/images/left-background.png") top left/contain no-repeat;
    opacity: 1;
    pointer-events: none;
}
.mv__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}
.mv__header {
    text-align: center;
    display: grid;
    gap: 10px;
    margin-bottom: 54px;
}
.mv__heading {
    margin: 0;
    font-size: 38px;
    font-weight: 500;
    color: #0b0b0b;
}
.mv__subheading {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #0b0b0b;
}
.mv__row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: center;
    justify-items: center;
    gap: 40px;
}
.mv__sep {
    width: 2px;
    height: 220px;
    background: linear-gradient( 180deg, rgba(1, 0, 115, 0.00) 0%, rgba(1, 0, 115, 0.55) 25%, rgba(83, 161, 255, 0.00) 50%, rgba(1, 0, 115, 0.55) 75%, rgba(1, 0, 115, 0.00) 100%);
    border-radius: 999px;
}
.mv-card {
    width: min(260px, 100%);
    background: rgba(245, 245, 245, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 26px;
    padding: 22px 18px 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mv-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    /* gradient border bottom only */
    background: linear-gradient(90deg, #010073 0%, #53a1ff23 100%);
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
}
.mv-card__cap {
    width: 120px;
    height: 72px;
    margin: 0 auto 12px;
    background: #010073;
    border-radius: 26px;
    box-shadow: 0 8px 18px rgba(1, 0, 115, 0.18);
}
.mv-card__title {
    margin: 0;
    position: relative;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #0b0b0b;
}
.mv-card__title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient( 90deg, rgba(1, 0, 115, 0.00) 0%, rgba(1, 0, 115, 0.85) 50%, rgba(1, 0, 115, 0.00) 100%);
}
.mv-card__copy {
    margin: 10px 0 0;
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.70);
}

/* Work Methodology (about page) */

.method {
    position: relative;
    background: url("./assets/images/work-methodalogy.png") center/cover no-repeat;
    padding: 86px 18px 96px;
    overflow: hidden;
    color: #ffffff;
}
.method__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 520px at 30% 35%, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.62) 70%), linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.30) 55%, rgba(0, 0, 0, 0.60) 100%);
    pointer-events: none;
}
.method__container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.method__heading {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.method__subheading {
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}
.method__cards {
    margin-top: 54px;
    display: flex;
    gap: 46px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.method-card {
    width: 180px;
    height: 220px;
    background: #010073;
    color: #ffffff;
    border-radius: 14px;
    padding: 22px 18px 18px;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    clip-path: polygon(0 0, 100% 0, 100% 84%, 50% 100%, 0 84%);
}
.method-card--outline {
    border: 2px solid rgba(83, 161, 255, 0.80);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}
.method-card__icon {
    width: 54px;
    height: 54px;
    margin-top: 4px;
}
.method-card__text {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    max-width: 140px;
    margin-top: 25px;
}

/* Our Industry Experts (about page) */

.experts {
    background: #ffffff;
}
.experts__header {
    background: #010073;
    color: #ffffff;
    padding: 44px 18px 34px;
}
.experts__body {
    padding: 26px 18px 70px;
}
.experts__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.experts__heading {
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.experts__subheading {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}
.experts__copy {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
}
.experts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    justify-items: center;
}
.expert-card {
    width: min(170px, 100%);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    padding: 14px 12px 12px;
    text-align: center;
}
.expert-card__avatar {
    width: 112px;
    height: 112px;
    margin: 2px auto 10px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #ffffff;
}
.expert-card__avatar-img {
    width: 96px;
    height: 96px;
    display: block;
}
.expert-card__name {
    font-size: 12px;
    font-weight: 500;
    color: #0b0b0b;
}
.expert-card__role {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.62);
}
@media (max-width: 860px) {
    .experts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 520px) {
    .experts__header {
        padding: 36px 16px 28px;
    }
    .experts__body {
        padding: 22px 16px 56px;
    }
    .experts__heading {
        font-size: 28px;
    }
    .experts__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .expert-card {
        width: min(260px, 100%);
    }
}
@media (max-width: 760px) {
    .method {
        padding: 60px 16px 72px;
    }
    .method__cards {
        margin-top: 34px;
        gap: 18px;
    }
    .method-card {
        width: 160px;
        height: 210px;
    }
}
@media (max-width: 520px) {
    .method__heading {
        font-size: 24px;
    }
    .method__subheading {
        font-size: 13px;
    }
    .method__cards {
        justify-content: center;
    }
    .method-card {
        width: min(240px, 86vw);
        height: 210px;
    }
    .method-card__text {
        max-width: 180px;
    }
}

/* About page typography (desktop sizes) */

.page-about .page-hero__title {
    font-size: 50px;
    margin-top: -130px;
    /* 1. main heading */
}
.page-about .about-split__heading {
    font-size: 24px;
    /* 2. about asmep heading */
}
.page-about .about-split__copy {
    font-size: 16px;
    /* 3. text content */
    line-height: 1.55;
}
.page-about .mv__heading {
    font-size: 40px;
    /* 4. mission & vision */
}
.page-about .mv__subheading {
    font-size: 24px;
    /* 5. subheading */
}
.page-about .mv-card__title {
    font-size: 24px;
    /* 6. mission title */
}
.page-about .mv-card__copy {
    font-size: 16px;
    /* 7. text */
    line-height: 1.55;
}
.page-about .method__heading {
    font-size: 24px;
    /* 8. methodology title */
}
.page-about .method__subheading {
    font-size: 24px;
    /* 9. subheading */
}
.page-about .method-card__text {
    font-size: 16px;
    /* 10. text */
    line-height: 1.2;
    max-width: 170px;
}
.page-about .method-card {
    width: 220px;
    height: 270px;
}
.page-about .experts__heading {
    font-size: 24px;
    /* 11. our industry expert */
}
.page-about .experts__subheading {
    font-size: 24px;
    /* 12. subheading */
}
.page-about .experts__copy {
    font-size: 16px;
    /* 12. text */
}
.page-about .expert-card__name {
    font-size: 20px;
    /* 12. names of people */
}
.page-about .expert-card__role {
    font-size: 20px;
    /* 12. role text */
}

/* About page typography (mobile adjustments) */

@media (max-width: 760px) {
    .page-about .page-hero__title {
        font-size: 40px;
    }
    .page-about .about-split__heading {
        font-size: 28px;
    }
    .page-about .about-split__copy {
        font-size: 14px;
    }
    .page-about .mv__heading {
        font-size: 30px;
    }
    .page-about .mv__subheading {
        font-size: 18px;
    }
    .page-about .mv-card__title {
        font-size: 18px;
    }
    .page-about .mv-card__copy {
        font-size: 14px;
    }
    .page-about .method__heading {
        font-size: 28px;
    }
    .page-about .method__subheading {
        font-size: 18px;
    }
    .page-about .method-card {
        width: min(240px, 86vw);
        height: 240px;
    }
    .page-about .method-card__text {
        font-size: 14px;
        max-width: 190px;
    }
    .page-about .experts__heading {
        font-size: 28px;
    }
    .page-about .experts__subheading {
        font-size: 18px;
    }
    .page-about .experts__copy {
        font-size: 14px;
    }
    .page-about .expert-card__name {
        font-size: 14px;
    }
    .page-about .expert-card__role {
        font-size: 12px;
    }
}
@media (max-width: 860px) {
    .mv__row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .mv__sep {
        display: none;
    }
    .mv-card {
        width: min(360px, 100%);
    }
}
@media (max-width: 520px) {
    .mv {
        padding: 54px 16px 64px;
    }
    .mv__header {
        margin-bottom: 34px;
    }
    .mv__heading {
        font-size: 30px;
    }
    .mv__subheading {
        font-size: 16px;
    }
}

/* Hero Slider */

.hero-slider__viewport {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 720ms ease;
    will-change: opacity;
}
.hero-slide.is-active {
    opacity: 1;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slide 1: Dark overlay from right */

.hero-slide--overlay-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 47.64%, rgba(0, 0, 0, 0.85) 92.99%);
}

/* Slide 2: White overlay from right */

.hero-slide--overlay-2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 37.64%, rgba(0, 0, 0, 0.8) 79.72%);
}

/* Slide 3: Dark overlay from left (inverted) */

.hero-slide--overlay-3::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 28.33%, rgba(0, 0, 0, 0) 47.74%);
}

/* Slide 4: No overlay */

.hero-slide--overlay-4::after {
    display: none;
}
.hero-slider__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}
.hero-slider__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hero-slider__stack {
    position: relative;
    width: 100%;
}
.hero-slide__content {
    display: none;
    position: relative;
    max-width: 720px;
}
.hero-slide__content.is-active {
    display: block;
}
.hero-slide__title {
    margin: 0;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0.2px;
    line-height: 1.08;
    color: #ffffff;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    text-align: left;
}
.hero-slide__content[data-hero-index="0"] .hero-slide__title {
    font-size: 40px;
    color: #ffffff;
}
.hero-slide__content[data-hero-index="0"] .hero-slide__copy {
    font-size: 16px;
    color: #ffffff;
    margin-top: 20px;
    text-align: justify;
}
.hero-slide__content[data-hero-index="1"] .hero-slide__title {
    font-size: 40px;
    color: #ffffff;
    text-shadow: none;
}
.hero-slide__content[data-hero-index="1"] .hero-slide__copy {
    font-size: 16px;
    color: var(--navy-2);
    text-align: justify;
    text-shadow: none;
}
.hero-slide__content[data-hero-index]:not([data-hero-index="0"]):not([data-hero-index="1"]) .hero-slide__title {
    font-size: 40px;
    color: #ffffff;
}
.hero-slide__content[data-hero-index]:not([data-hero-index="0"]):not([data-hero-index="1"]) .hero-slide__copy {
    font-size: 16px;
    color: #ffffff;
    text-align: justify;
}
.hero-slide__subtitle {
    margin: 10px 0 0;
    font-weight: 500;
    font-size: 24px;
    color: #010073;
    text-shadow: none;
    text-align: justify;
}
.hero-slide__copy {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 640px;
    text-align: justify;
}
.hero-slide__actions {
    margin-top: 56px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    flex-wrap: nowrap;
}
.hero-slider__controls {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-slider__arrow {
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(0, 0, 0, 0.22);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.hero-slider__arrow:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.30);
    border-color: rgba(255, 255, 255, 0.42);
}
.hero-slider__arrow:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
}
.hero-slider__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    padding: 0;
    transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}
.hero-slider__dot.is-active {
    background: rgba(255, 255, 255, 0.92);
    width: 26px;
}
.hero-slider__dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
}

/* Invert dot colors for slide 2 (white overlay) */

.hero-slider--slide-2-active .hero-slider__dot {
    background: rgba(1, 0, 115, 0.40);
}
.hero-slider--slide-2-active .hero-slider__dot.is-active {
    background: rgba(1, 0, 115, 0.85);
}
.hero-slider--slide-2-active .hero-slider__dot:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.55);
    outline-offset: 3px;
}

/* Home page - About us section */

.home-about {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.home-about__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.home-about__title {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.2;
}
.home-about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* margin-bottom: 30px; */
}
.home-about__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    text-align: justify;
}
.home-about__button {
    display: inline-block;
    background: var(--navy-2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 15px 22px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease;
    width: fit-content;
}
.home-about__button:hover {
    background: #010073;
    text-decoration: none;
    color: #ffffff;
}
@media (max-width: 760px) {
    .home-about {
        padding: 60px 18px 80px;
    }
    .home-about__title {
        font-size: 24px;
    }
    .home-about__text {
        font-size: 14px;
    }
    .home-about__button {
        font-size: 14px;
        padding: 10px 28px;
    }
}

/* entrance animation hooks (hero only) */

.hero [data-animate] {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform, opacity;
}
.hero [data-animate="hero-left"] {
    transform: translateX(-56px);
}
.hero [data-animate="hero-right"] {
    transform: translateX(56px);
}
.hero .is-in[data-animate] {
    opacity: 1;
    transform: translateX(0);
}

/* Feature (Architecture) */

.feature {
    background: #ffffff;
    padding: 46px 18px 64px;
}

/* Feature Slider (2nd section) */

.feature-slider {
    color: #0b0b0b;
}
.feature-slider__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.feature-slider__frame {
    /* border: 1px solid rgba(1,0,115,0.70); */
    border-radius: 6px;
    background: #ffffff;
    padding: 16px 0px;
    width: 100%;
    position: relative;
    --feature-brand-gap: 16px;
    --feature-brand-offset: 78px;
    touch-action: pan-y;
}
.feature-slider__brand {
    position: absolute;
    top: 30%;
    left: 0;
    transform: translateY(calc(-50% - var(--feature-brand-offset)));
    font-family: "Squada One", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    font-size: 128px;
    line-height: 0.95;
    color: #010073;
    letter-spacing: -5px;
    text-transform: lowercase;
    z-index: 2;
    pointer-events: none;
    /* padding-left: 18px; */
}
.feature-slider__brand::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 10px;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, #ADADAD 0%, #FFFFFF 100%);
}
.feature-slide {
    display: none;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: stretch;
}
.feature-slide.is-active {
    display: grid;
}
.feature-slide__left {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: calc(26px + var(--feature-brand-offset) + var(--feature-brand-gap)) 18px 26px 0px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 24px;
    top: 100px;
}

/* Left side custom border (same style as old .feature__panel) */


/* .feature-slide__left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: top left, bottom left, left top, right top;
    background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
    background-image: linear-gradient(90deg, #010073 0%, #ffffff 35%, #ffffff 100%), linear-gradient(90deg, #010073 0%, #ffffff 35%, #ffffff 100%), linear-gradient( 180deg, #010073 0%, #010073 8%, rgba(1, 0, 115, 0.35) 14%, #ffffff 20%, #ffffff 80%, rgba(1, 0, 115, 0.35) 86%, #010073 92%, #010073 100%), linear-gradient(180deg, rgba(1, 0, 115, 0) 0%, rgba(1, 0, 115, 0) 100%);
    z-index: 0;
    pointer-events: none;
} */

.feature-slide__left>* {
    position: relative;
    z-index: 1;
}
.feature-slide__brand {
    position: relative;
    font-family: "Squada One", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    font-size: 128px;
    line-height: 0.95;
    color: #010073;
    letter-spacing: -5px;
    text-transform: lowercase;
}
.feature-slide__brand::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #ADADAD 0%, #FFFFFF 100%);
}
.feature-slide__title {
    margin: 0;
    margin-top: 15px;
    color: var(--navy-2);
    font-size: 30px;
    font-weight: 500;
    /* text-decoration: underline; */
    text-underline-offset: 4px;
}
.feature-slide__copy {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    text-align: justify;
}
.feature-slide__copy p {
    margin: 0 0 14px;
}
.feature-slide__copy p:last-child {
    margin-bottom: 0;
}
.feature-slide__right {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 26px 26px 26px 18px;
}
.feature-slide__image-shell {
    width: 642px;
    height: 646px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: none;
}
.feature-slide__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
@keyframes featureInLeft {
    from {
        opacity: 0;
        transform: translateX(-52px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes featureInRight {
    from {
        opacity: 0;
        transform: translateX(52px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.feature-slide.is-active .feature-slide__left {
    animation: featureInLeft 720ms cubic-bezier(.2, .8, .2, 1) both;
}
.feature-slide.is-active .feature-slide__right {
    animation: featureInRight 720ms cubic-bezier(.2, .8, .2, 1) both;
}
.feature-slider__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    align-self: center;
}
.feature-slider__arrow {
    border: 1px solid rgba(1, 0, 115, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: #010073;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.feature-slider__arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    border-color: rgba(1, 0, 115, 0.55);
}
.feature-slider__arrow:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.40);
    outline-offset: 3px;
}
.feature-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--navy-2);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.feature-slider__dot:hover {
    background: rgba(1, 0, 115, 0.2);
}
.feature-slider__dot.is-active {
    background: var(--navy-2);
    border-color: var(--navy-2);
}
.feature-slider__dot:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.40);
    outline-offset: 2px;
}

/* Global Presence Section */

.global-presence {
    position: relative;
    background: #ffffff;
    padding: 80px 18px;
    overflow: hidden;
}
.global-presence__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* gap: 24px; */
    align-items: center;
}
.global-presence__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.global-presence__heading {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: #010073;
    letter-spacing: 0.2px;
    line-height: 1.2;
}
.global-presence__content {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    max-width: 580px;
}
.global-presence__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}
.global-presence__stat-card {
    background: #010073;
    border-radius: 0;
    padding: 40px 24px;
    text-align: center;
    box-shadow: none;
    min-height: 120px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.global-presence__stat-number {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}
.global-presence__stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}
.global-presence__right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.global-presence__map {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}
@media (max-width: 980px) {
    .global-presence {
        padding: 60px 18px;
    }
    .global-presence__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .global-presence__right {
        order: -1;
    }
    .global-presence__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .global-presence__left {
        gap: 28px;
    }
}
@media (max-width: 520px) {
    .global-presence {
        padding: 48px 16px;
    }
    .global-presence__container {
        gap: 32px;
    }
    .global-presence__left {
        gap: 24px;
    }
    .global-presence__heading {
        font-size: 26px;
    }
    .global-presence__content {
        font-size: 15px;
    }
    .global-presence__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .global-presence__stat-card {
        padding: 24px 20px;
        min-height: 100px;
    }
    .global-presence__stat-number {
        font-size: 36px;
    }
    .global-presence__stat-label {
        font-size: 13px;
    }
}
.feature__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: stretch;
}
.feature__panel {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 44px 54px;
    min-height: 520px;
    height: 520px;
    display: grid;
    align-content: start;
    gap: 18px;
}
.feature__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: top left, bottom left, left top, right top;
    background-size: 100% 2px, /* top border */
    100% 2px, /* bottom border */
    2px 100%, /* left border */
    2px 100%;
    /* right border */
    background-image: linear-gradient(90deg, #010073 0%, #ffffff 35%, #ffffff 100%), linear-gradient(90deg, #010073 0%, #ffffff 35%, #ffffff 100%), linear-gradient( 180deg, #010073 0%, #010073 8%, rgba(1, 0, 115, 0.35) 14%, #ffffff 20%, #ffffff 80%, rgba(1, 0, 115, 0.35) 86%, #010073 92%, #010073 100%), linear-gradient(180deg, rgba(1, 0, 115, 0) 0%, rgba(1, 0, 115, 0) 100%);
    z-index: 0;
    pointer-events: none;
}
.feature__panel>* {
    position: relative;
    z-index: 1;
}
.feature__mark {
    display: grid;
    gap: 10px;
}
.feature__mark-word {
    font-weight: 500;
    font-size: 56px;
    line-height: 0.95;
    color: var(--navy-2);
    letter-spacing: 0.2px;
    text-transform: lowercase;
}
.feature__mark-line {
    height: 1px;
    width: 210px;
    background: linear-gradient(90deg, #adadad 0%, #ffffff 100%);
}
.feature__title {
    margin: 34px 0 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 24px;
    font-weight: 500;
}
.feature__quote {
    margin: 14px 0 0;
    color: rgba(0, 0, 0, 0.70);
    font-size: 13px;
    line-height: 1.65;
}
.feature__media {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
}
.feature__image {
    width: 100%;
    max-width: 560px;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Feature entrance animation (scroll) */

.feature [data-animate] {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 820ms ease, transform 820ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform, opacity;
}
.feature [data-animate="feature-left"] {
    transform: translateX(-56px);
}
.feature [data-animate="feature-right"] {
    transform: translateX(56px);
}
.feature .is-in[data-animate] {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile nav */

@media (max-width: 980px) {
    .nav-content {
        grid-template-columns: 150px 1fr 210px;
    }
    .nav__menu {
        gap: 18px;
    }
}
@media (max-width: 860px) {
    .nav-content {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }
    .nav {
        justify-content: flex-end;
    }
    .nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav__menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: var(--nav-bg);
        border-radius: 12px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
        padding: 14px 14px;
        display: grid;
        gap: 6px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }
    .nav__menu.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav__link {
        padding: 12px 10px;
        font-size: 14px;
    }
    .nav__dropdown {
        position: static;
    }
    .nav__dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: #f5f5f5;
        padding: 0;
        margin-top: 4px;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: opacity 200ms ease, visibility 200ms ease, max-height 200ms ease;
        border-radius: 4px;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    .nav__dropdown.is-open .nav__dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
    .nav__dropdown-link {
        padding: 8px 10px;
        font-size: 14px;
    }
    .nav-cta {
        gap: 10px;
    }
    .feature-slide {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .feature-slide__left {
        min-height: 0;
        padding: calc(24px + var(--feature-brand-offset) + var(--feature-brand-gap)) 18px 24px;
    }
    .feature-slider__brand {
        font-size: 64px;
        top: 50%;
    }
    .feature-slide__right {
        justify-content: center;
        padding: 0 0px 18px;
        align-items: center;
    }
    .feature-slide__image-shell {
        width: min(642px, 100%);
        aspect-ratio: 642 / 646;
        height: auto;
        border-radius: 5px;
        max-height: none;
    }
}
@media (max-width: 760px) {
    .hero {
        height: auto;
        max-height: none;
        min-height: 560px;
    }
    .page-hero {
        height: auto;
        max-height: none;
        min-height: 420px;
        padding-top: 94px;
        padding-bottom: 40px;
    }
    .about-split__container {
        grid-template-columns: 1fr;
    }
    .about-split__left {
        padding: 44px 16px;
    }
    .about-split__right {
        background: linear-gradient(90deg, rgba(3, 2, 41, 0.92) 0%, rgba(1, 0, 115, 0.92) 63.96%);
        padding: 52px 16px;
    }
    .about-split__heading {
        font-size: 28px;
    }
    .hero-slider__content {
        align-items: center;
        justify-content: center;
        padding: 94px 16px 80px;
        min-height: calc(100vh - 94px);
    }
    .hero-slider__container {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-slider__stack {
        min-height: 0;
    }
    .hero-slide__content {
        max-width: 100%;
        text-align: left;
        margin-top: 0;
    }
    .hero-slide__content[data-hero-index="0"] .hero-slide__title {
        font-size: clamp(28px, 7vw, 40px);
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .hero-slide__content[data-hero-index]:not([data-hero-index="0"]) .hero-slide__title {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.3;
        margin-bottom: 14px;
    }
    .hero-slide__copy {
        margin-top: 0;
        font-size: clamp(14px, 3.5vw, 16px);
        text-align: justify;
        line-height: 1.6;
    }
    .hero-slide__subtitle {
        font-size: 18px;
    }
    .hero-slider__controls {
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 18px;
        justify-content: flex-start;
    }
    .hero-slider__dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    .hero-slider__arrow {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .feature-slider__frame {
        padding: 12px;
        --feature-brand-offset: 56px;
    }
    .feature-slider__brand {
        font-size: 52px;
        top: 10%;
    }
    .feature-slide__left {
        padding: calc(24px + var(--feature-brand-offset) + var(--feature-brand-gap)) 0px 24px;
    }
    .feature-slide__image-shell {
        border-radius: 5px;
    }
    .feature-slide__brand {
        font-size: 52px;
    }
    .feature-slide__title {
        font-size: 20px;
    }
    .feature-slide__copy {
        font-size: 12px;
        max-width: none;
    }
}
@media (max-width: 520px) {
    .nav-content {
        padding: 10px 12px;
    }
    .nav-cta .btn {
        padding: 9px 12px;
        font-size: 12px;
    }
    .hero {
        min-height: 520px;
    }
    .hero-slider__content {
        padding: 90px 12px 80px;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 90px);
    }
    .hero-slider__container {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-slide__content {
        max-width: 100%;
        margin-top: 0;
    }
    .hero-slide__content[data-hero-index="0"] .hero-slide__title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 14px;
    }
    .hero-slide__content[data-hero-index]:not([data-hero-index="0"]) .hero-slide__title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .hero-slide__copy {
        margin-top: 0;
        font-size: 14px;
        line-height: 1.6;
    }
    .hero-slide__actions {
        margin-top: 24px;
    }
    .hero-slide__actions {
        width: 100%;
        gap: 12px;
        flex-wrap: wrap;
    }
    .hero-slider__controls {
        width: 100%;
        justify-content: center;
    }
    .hero-slider__arrow {
        display: none;
    }
    .hero-slider__dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        justify-content: center;
        z-index: 3;
    }
    .btn--lg {
        min-width: 0;
        width: 100%;
    }
    .feature-slide__brand {
        font-size: 46px;
    }
    .feature-slide__rule {
        width: 190px;
    }
    .feature-slide__image-shell {
        border-radius: 5px;
    }
    .feature-slider__brand {
        font-size: 102px;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }
    .hero [data-animate] {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .btn, .nav__link {
        transition: none;
    }
}

/* Verticals section */

.verticals {
    background: #ffffff;
    padding: 60px 18px;
}
.verticals__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.verticals__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.verticals__header h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: #010073;
    letter-spacing: 0.2px;
    line-height: 1.2;
}
.verticals__lede {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    max-width: 600px;
    margin-bottom: 40px;
}
.verticals__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.verticals__card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
}
.verticals__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.verticals__card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.verticals__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.verticals__card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    z-index: 1;
}
.verticals__card-title {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    padding: 0 20px;
    word-wrap: break-word;
}
.verticals__cta {
    display: flex;
    align-items: center;
    margin-top: 8px;
}
@media (max-width: 980px) {
    .verticals {
        padding: 60px 18px;
    }
    .verticals__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .verticals__card {
        min-height: 320px;
    }
    .verticals__card-title {
        font-size: 28px;
    }
}
@media (max-width: 520px) {
    .verticals {
        padding: 48px 16px;
    }
    .verticals__container {
        gap: 32px;
    }
    .verticals__header h2 {
        font-size: 28px;
    }
    .verticals__lede {
        font-size: 15px;
    }
    .verticals__card {
        min-height: 280px;
    }
    .verticals__card-title {
        font-size: 24px;
    }
}

/* Services CTA */

.services-cta {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 26px 18px 56px;
}
.services-cta__btn {
    justify-content: center;
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 999px;
    background: #010073;
    color: #ffffff;
    min-width: 160px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.services-cta__btn:hover {
    transform: translateY(-1px);
}

/* Global presence */

.global {
    position: relative;
    background: /* base solid */
    linear-gradient(0deg, #02007390, #010073), /* center glow (more prominent) */
    radial-gradient(120px 170px at 52% 50%, rgba(60, 185, 255, 0.85) 0%, rgba(60, 185, 255, 0.00) 62%), radial-gradient(1100px 300px at 52% 50%, rgba(9, 143, 246, 0.55) 0%, rgba(140, 205, 255, 0.12) 65%, rgba(140, 205, 255, 0.00) 78%), /* darker edges + lighter center */
    linear-gradient( 90deg, rgba(6, 6, 72, 0.85) 0%, rgba(1, 0, 115, 0.62) 28%, rgba(255, 255, 255, 0.06) 50%, rgba(1, 0, 115, 0.62) 72%, rgba(6, 6, 72, 0.85) 100%);
    color: #ffffff;
    padding: 40px 18px 40px;
    overflow: hidden;
}
.global__watermark {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    height: auto;
    opacity: 0.16;
    pointer-events: none;
    user-select: none;
}
.global__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.global__container h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.global__lede {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.92;
}
.global__copy {
    margin: 2px 0 0;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.92;
}
@media (max-width: 520px) {
    .global {
        padding: 18px 16px 20px;
    }
    .global__container {
        gap: 6px;
    }
    .global__container h2 {
        font-size: 28px;
    }
    .global__watermark {
        right: -140px;
        width: 560px;
    }
}

/* Map section */

.map {
    background: #ffffff;
    padding: 32px 18px 48px;
}
.map__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.map__image {
    width: auto;
    max-width: 70%;
    height: auto;
    display: block;
}

/* Stats section */

.stats {
    position: relative;
    background: linear-gradient(0deg, #010073, #010073), linear-gradient(90deg, rgba(6, 6, 72, 0.82) 5.83%, rgba(1, 0, 115, 0.55) 34.39%, rgba(255, 255, 255, 0.045) 64.04%, rgba(255, 255, 255, 0.045) 97.33%);
    padding: 40px 18px 40px;
    overflow: hidden;
}
.stats__overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 0;
}
.stats__watermark {
    position: absolute;
    right: 10px;
    top: 30%;
    transform: translateY(-50%);
    width: 560px;
    height: auto;
    opacity: 0.16;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.stats__container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    color: #ffffff;
}
.stats__heading {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
}
.stats__lede {
    margin: 0 0 42px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stats__card {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 22px 18px 20px;
    text-align: center;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}
.stats__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}
.stats__number {
    font-size: 46px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
    text-shadow: none;
}
.stats__label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
}
@media (max-width: 980px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 520px) {
    .stats {
        padding: 48px 18px 56px;
    }
    .stats__heading {
        font-size: 32px;
    }
    .stats__lede {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stats__card {
        padding: 24px 16px;
    }
    .stats__number {
        font-size: 48px;
    }
    .stats__watermark {
        right: -140px;
        width: 560px;
    }
}

/* Featured Projects */

.projects {
    background: #ffffff;
    padding: 50px 18px 84px;
}
.projects__container {
    max-width: var(--container);
    margin: 0 auto;
    text-align: left;
}
.projects__heading {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: #010073;
}
.projects__subheading {
    margin: 12px 0 0;
    font-size: 18px;
    font-weight: 500;
    color: #0b0b0b;
}
.projects__copy {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.70);
}
.projects__carousel {
    position: relative;
    height: 360px;
    margin: 56px auto 0;
    max-width: 980px;
    touch-action: pan-y;
}
.projects__card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 552px;
    height: 477px;
    transform: translateX(-50%) scale(0.88);
    opacity: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
    transition: transform 650ms cubic-bezier(.2, .8, .2, 1), opacity 650ms ease, filter 650ms ease;
    filter: saturate(0.98);
}
.projects__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(1.28deg, #000000 1.1%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}
.projects__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.projects__caption {
    position: absolute;
    top: 18px;
    left: 22px;
    z-index: 1;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    max-width: 260px;
}

/* coverflow positions */

.projects__card.is-active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    z-index: 5;
}
.projects__card.is-left1 {
    opacity: 1;
    transform: translateX(calc(-50% - 220px)) scale(0.92);
    z-index: 4;
}
.projects__card.is-left2 {
    opacity: 1;
    transform: translateX(calc(-50% - 360px)) scale(0.86);
    z-index: 3;
}
.projects__card.is-right1 {
    opacity: 1;
    transform: translateX(calc(-50% + 220px)) scale(0.92);
    z-index: 4;
}
.projects__card.is-right2 {
    opacity: 1;
    transform: translateX(calc(-50% + 360px)) scale(0.86);
    z-index: 3;
}
.projects__card.is-hidden {
    opacity: 0;
    transform: translateX(-50%) scale(0.82);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 980px) {
    .projects__carousel {
        max-width: 860px;
    }
    .projects__card {
        width: 480px;
        height: 415px;
    }
    .projects__card.is-left2 {
        transform: translateX(calc(-50% - 320px)) scale(0.84);
    }
    .projects__card.is-right2 {
        transform: translateX(calc(-50% + 320px)) scale(0.84);
    }
}
@media (max-width: 760px) {
    .projects {
        padding: 54px 18px 66px;
    }
    .projects__carousel {
        height: 320px;
        margin-top: 36px;
        overflow: hidden;
        /* prevent any mobile overflow */
    }
    .projects__card {
        width: min(552px, 92vw);
        height: 477px;
    }
    /* mobile: original single-card view to avoid overflow */
    .projects__card.is-left1, .projects__card.is-left2, .projects__card.is-right1, .projects__card.is-right2 {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) scale(0.98);
    }
    .projects__nav {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 18px;
    }
}

/* Partnership Section */

.partnership {
    background: #ffffff;
    padding: 80px 18px;
    padding-top: 90px;
}
.partnership__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.partnership__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    max-width: 900px;
}
@media (max-width: 520px) {
    .partnership {
        padding: 0px 16px;
    }
    .partnership__container {
        gap: 20px;
    }
    .partnership__text {
        font-size: 15px;
    }
}
@media (max-width: 520px) {
    .projects__heading {
        font-size: 26px;
    }
    .projects__subheading {
        font-size: 16px;
    }
    .projects__caption {
        font-size: 16px;
        left: 16px;
        top: 14px;
    }
    .projects__card {
        height: 280px;
    }
    .footer-col {
        padding: 0 16px;
    }
    .footer-brand {
        padding: 0 5px;
    }
}

/* Industries served */

.industries {
    position: relative;
    background: #ffffff;
    padding: 50px 18px 60px;
}
.industries__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.industries__heading {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: #010073;
    letter-spacing: 0.2px;
    line-height: 1.2;
}
.industries__description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    max-width: 900px;
}
@media (max-width: 520px) {
    .industries {
        padding: 60px 16px 48px;
    }
    .industries__container {
        gap: 20px;
        margin-bottom: 32px;
    }
    .industries__heading {
        font-size: 28px;
    }
    .industries__description {
        font-size: 15px;
    }
}

/* Industries cards slider */

.industry-slider {
    background: #ffffff;
    padding: 0;
}
.industry-slider__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.industry-slider__viewport {
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
}
.industry-slider__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.industry-card {
    position: relative;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    height: 500px;
    /* border: 2px solid #010073; */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
    z-index: 1;
    pointer-events: none;
}
.industry-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.industry-card__title {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    margin: 0;
}

/* Industry Slider Navigation */

.industry-slider__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}
.industry-slider__arrow {
    border: 1px solid rgba(1, 0, 115, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: #010073;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.industry-slider__arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    border-color: rgba(1, 0, 115, 0.55);
}
.industry-slider__arrow:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.40);
    outline-offset: 3px;
}
.industry-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.industry-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--navy-2);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.industry-slider__dot:hover {
    background: rgba(1, 0, 115, 0.2);
}
.industry-slider__dot.is-active {
    background: var(--navy-2);
    border-color: var(--navy-2);
}
.industry-slider__dot:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.40);
    outline-offset: 2px;
}
@media (max-width: 980px) {
    .industry-card {
        flex: 0 0 calc(50% - 12px);
        height: 360px;
    }
    .industry-card__title {
        font-size: 24px;
    }
}
@media (max-width: 760px) {
    .industry-slider__container {
        padding: 0 16px;
    }
    .industry-card {
        flex: 0 0 100%;
        height: 320px;
    }
    .industry-card__title {
        font-size: 22px;
        top: 20px;
        left: 20px;
    }
    .industry-slider__nav {
        gap: 12px;
    }
    .industry-slider__arrow {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 980px) {
    .industry-slider__track {
        gap: 22px;
    }
    .industry-card {
        flex-basis: 280px;
        height: 420px;
    }
}
@media (max-width: 760px) {
    .industry-slider {
        padding: 38px 0 56px;
    }
    .industry-slider__container {
        padding: 0 16px;
    }
    .industry-slider__track {
        gap: 16px;
    }
    .industry-card {
        flex-basis: 250px;
        height: 350px;
    }
}

/* Our Clientele */

.clientele {
    position: relative;
    background: #ffffff;
    padding: 80px 18px;
    overflow: hidden;
}
.clientele__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.clientele__heading {
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    color: #010073;
    letter-spacing: 0.2px;
    line-height: 1.2;
}
.clientele__description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    max-width: 900px;
}
.clientele__logos {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    width: 100%;
}
.clientele__logos-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: clientLogosSlide 10s linear infinite;
    will-change: transform;
}
.clientele__logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 24px;
}
.clientele__logo-img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease; */
}
.clientele__logo-item:hover .clientele__logo-img {
    filter: grayscale(0%);
    opacity: 1;
}
@keyframes clientLogosSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.clientele__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 760px) {
    .clientele__logos {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .clientele__logos-track {
        animation: none;
        width: max-content;
    }
    .clientele__logo-item {
        scroll-snap-align: center;
    }
}
@media (max-width: 520px) {
    .clientele {
        padding: 60px 16px;
    }
    .clientele__container {
        gap: 24px;
    }
    .clientele__heading {
        font-size: 28px;
    }
    .clientele__description {
        font-size: 15px;
    }
    .clientele__logo-item {
        height: 60px;
        padding: 0 16px;
    }
    .clientele__logo-img {
        max-width: 120px;
        max-height: 60px;
    }
    .clientele__logos-track {
        gap: 32px;
    }
}

/* Contact section */

.contact {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0) 100%), url("./assets/images/footer-form.jpg") center/cover no-repeat;
    padding: 120px 0 120px;
    overflow: hidden;
}
.contact__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}
.contact__container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}
.contact__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}
.contact__heading {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.2px;
}
.contact__subheading {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
}
.contact__form {
    width: 100%;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}
.contact__col {
    display: grid;
    gap: 16px;
}
.field {
    display: grid;
    gap: 6px;
}
.field__label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}
.field__input, .field__textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.96);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.field__input {
    height: 44px;
}
.field__textarea {
    min-height: 140px;
    resize: vertical;
}
.field__input:focus, .field__textarea:focus {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}
.field__textarea::placeholder {
    color: rgba(255, 255, 255, 0.60);
}
.field__input::placeholder {
    color: rgba(255, 255, 255, 0.60);
}

/* Career page form fields (separate from home contact form) */

.page-career .career-field {
    display: grid;
    gap: 6px;
}
.page-career .career-field__label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.72);
}
.page-career .career-field__input, .page-career .career-field__textarea {
    width: 100%;
    border: 1.5px solid var(--navy-2);
    border-radius: 6px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    background: #ffffff;
    color: rgba(0, 0, 0, 0.90);
    outline: none;
}
.page-career .career-field__input {
    height: 36px;
}
.page-career .career-field__textarea {
    min-height: 106px;
    resize: none;
}
.page-career .career-field__input:focus, .page-career .career-field__textarea:focus {
    border-color: rgba(1, 0, 115, 0.95);
    box-shadow: 0 0 0 3px rgba(1, 0, 115, 0.12);
}
.page-career .career-field__input::placeholder, .page-career .career-field__textarea::placeholder {
    color: rgba(20, 20, 20, 0.60);
}
.contact__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 20px;
}
.contact__terms {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}
.contact__checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);
    accent-color: #010073;
    cursor: pointer;
}
.contact__submit {
    height: 44px;
    min-width: 140px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: #010073;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.contact__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.20);
}
.contact__submit:active {
    transform: translateY(0);
}
@media (max-width: 760px) {
    .contact {
        padding: 80px 0 100px;
    }
    .contact__header {
        margin-bottom: 28px;
    }
    .contact__heading {
        font-size: 28px;
    }
    .contact__subheading {
        font-size: 15px;
    }
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .contact__submit {
        width: 100%;
        max-width: 200px;
    }
}

/* Footer */

.site-footer {
    background: #010073;
    color: #ffffff;
    padding: 42px 0 26px;
}
.site-footer__container {
    max-width: var(--container);
    margin: 0 auto;
    /* padding: 0 18px; */
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-brand {
    width: 100%;
}
.footer-brand__logo {
    width: 200px;
    height: auto;
    display: block;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}
.footer-col__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}
.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.90);
    text-decoration: none;
    font-size: 16px;
    padding: 7px 0;
}
.footer-link:hover {
    color: #ffffff;
}
.footer-social {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.90);
    text-decoration: none;
    font-size: 16px;
    padding: 7px 0;
}
.footer-social:hover {
    color: #ffffff;
}
.footer-social__icon {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 11px;
    line-height: 1;
}
.footer-social__icon .bi {
    display: inline-block;
    font-size: 11px;
    line-height: 1;
}
.site-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    margin: 26px 0 18px;
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}
.site-footer__legal {
    display: flex;
    gap: 18px;
}
.footer-legal {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}
.footer-legal:hover {
    color: #ffffff;
}
@media (max-width: 860px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }
}
@media (max-width: 520px) {
    .site-footer__top {
        gap: 24px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }
    .site-footer__legal {
        flex-wrap: wrap;
        gap: 12px 16px;
    }
}

/* Projects nav (mobile only; hidden by default on desktop) */

.projects__nav {
    display: none;
}
.projects__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1.5px solid #010073;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.projects__nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
.projects__nav-btn:active {
    transform: translateY(0);
}
.projects__nav-btn:focus-visible {
    outline: 2px solid rgba(1, 0, 115, 0.35);
    outline-offset: 3px;
}
.projects__nav-icon {
    width: 10px;
    height: 10px;
    border-left: 2px solid #010073;
    border-bottom: 2px solid #010073;
    transform: rotate(45deg);
}
.projects__nav-icon--right {
    transform: rotate(-135deg);
}

/* ============================================================
   Projects Page - Exclusive Styles
   ============================================================ */


/* Projects Page Hero - Exclusive to Projects Page */

.page-projects .projects-hero {
    position: relative;
    min-height: 640px;
    height: 100vh;
    max-height: 820px;
    display: grid;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    padding: 0;
}
.page-projects .projects-hero__video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.page-projects .projects-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-projects .projects-hero__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(1, 0, 115, 0.85) 0%, rgba(1, 0, 115, 0.75) 100%); */
    z-index: 1;
}
.page-projects .projects-hero__pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 0 0;
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
}
.page-projects .projects-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 18px;
    display: grid;
    align-items: center;
    justify-items: center;
    text-align: center;
}
.page-projects .projects-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}
.page-projects .projects-hero__title {
    margin-top: -250px;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.page-projects .projects-hero__play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}
.page-projects .projects-hero__play:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}
.page-projects .projects-hero__play i {
    font-size: 32px;
    margin-left: 4px;
}
@media (max-width: 980px) {
    .page-projects .projects-hero__inner {
        gap: 30px;
    }
    .page-projects .projects-hero__play {
        width: 70px;
        height: 70px;
    }
    .page-projects .projects-hero__play i {
        font-size: 28px;
    }
}
@media (max-width: 760px) {
    .page-projects .projects-hero__inner {
        gap: 24px;
    }
    .page-projects .projects-hero__title {
        font-size: clamp(36px, 8vw, 56px);
    }
    .page-projects .projects-hero__play {
        width: 60px;
        height: 60px;
    }
    .page-projects .projects-hero__play i {
        font-size: 24px;
    }
}
@media (max-width: 520px) {
    .page-projects .projects-hero__title {
        font-size: clamp(32px, 7vw, 48px);
    }
    .page-projects .projects-hero__play {
        width: 56px;
        height: 56px;
    }
    .page-projects .projects-hero__play i {
        font-size: 20px;
    }
}

/* Design Projects Page: Industry Wide Experience Section */

.page-projects .design-projects-experience {
    background: #ffffff;
    padding: 80px 18px 100px;
    color: #0b0b0b;
}
.page-projects .design-projects-experience__container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.page-projects .design-projects-experience__header {
    margin-bottom: 60px;
}
.page-projects .design-projects-experience__title {
    margin: 0 0 20px;
    font-size: 30px;
    font-weight: 500;
    color: #0b0b0b;
    line-height: 1.2;
}
.page-projects .design-projects-experience__description {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    max-width: 800px;
}
.page-projects .design-projects-experience__tabs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.page-projects .design-projects-experience__tab {
    display: inline-block;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #ffffff;
    color: #0b0b0b;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.page-projects .design-projects-experience__tab:hover {
    background: rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #0b0b0b;
}
.page-projects .design-projects-experience__tab--active {
    background: var(--navy-2);
    color: #ffffff;
    border-color: var(--navy-2);
}
.page-projects .design-projects-experience__tab--active:hover {
    background: #010073;
    color: #ffffff;
}
.page-projects .design-projects-experience__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.page-projects .design-project-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.page-projects .design-project-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.page-projects .design-project-card__image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 3.25;
    overflow: hidden;
    background: #f5f5f5;
}
.page-projects .design-project-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-projects .design-project-card__title {
    margin: 0;
    padding: 20px 24px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy-2);
    line-height: 1.3;
}
.page-projects .design-project-card__details {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.page-projects .design-project-card__detail {
    display: flex;
    gap: 8px;
    font-size: 16px;
    line-height: 1;
    color: #0b0b0b;
}
.page-projects .design-project-card__label {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}
.page-projects .design-project-card__value {
    color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 980px) {
    .page-projects .design-projects-experience__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 760px) {
    .page-projects .design-projects-experience {
        padding: 60px 18px 80px;
    }
    .page-projects .design-projects-experience__header {
        margin-bottom: 40px;
    }
    .page-projects .design-projects-experience__title {
        font-size: 24px;
    }
    .page-projects .design-projects-experience__description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .page-projects .design-projects-experience__tab {
        font-size: 14px;
        padding: 10px 24px;
    }
    .page-projects .design-project-card__title {
        font-size: 18px;
        padding: 16px 20px 0;
    }
    .page-projects .design-project-card__details {
        padding: 12px 20px 20px;
    }
    .page-projects .design-project-card__detail {
        font-size: 14px;
    }
}

/* Design Projects Page: CTA Section */

.page-projects .design-projects-cta {
    position: relative;
    min-height: 600px;
    background: url("./assets/images/projects-cta-new.jpg") no-repeat center top;
    background-size: cover;
    display: grid;
    align-items: center;
    overflow: hidden;
}
.page-projects .design-projects-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270.01deg, rgba(1, 0, 115, 0) 32.92%, rgba(1, 0, 115, 0.76) 99.99%);
    z-index: 1;
}
.page-projects .design-projects-cta__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 18px;
}
.page-projects .design-projects-cta__inner {
    max-width: 600px;
}
.page-projects .design-projects-cta__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 980px) {
    .page-projects .design-projects-cta {
        min-height: 400px;
    }
    .page-projects .design-projects-cta__content {
        padding: 60px 18px;
    }
}
@media (max-width: 760px) {
    .page-projects .design-projects-cta {
        min-height: 350px;
    }
    .page-projects .design-projects-cta__content {
        padding: 50px 18px;
    }
    .page-projects .design-projects-cta__title {
        font-size: clamp(28px, 6vw, 42px);
    }
}

/* Projects Page: Industry Wide Experience Section - Exclusive to Projects Page */

.page-projects .projects-experience {
    position: relative;
    background: #ffffff;
    padding: clamp(60px, 8vw, 100px) 18px;
    overflow: hidden;
}
.page-projects .projects-experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background: url("./assets/images/left-background.png") top left/contain no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
.page-projects .projects-experience__container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}
.page-projects .projects-experience__title {
    margin: 0 0 clamp(16px, 2vw, 24px);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #252323;
    letter-spacing: -0.5px;
}
.page-projects .projects-experience__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #252323;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 760px) {
    .page-projects .projects-experience {
        padding: clamp(50px, 6vw, 80px) 18px;
    }
    .page-projects .projects-experience__title {
        font-size: clamp(28px, 6vw, 36px);
    }
    .page-projects .projects-experience__subtitle {
        font-size: clamp(14px, 3vw, 18px);
    }
}
@media (max-width: 520px) {
    .page-projects .projects-experience {
        padding: clamp(40px, 5vw, 60px) 18px;
    }
    .page-projects .projects-experience__title {
        font-size: clamp(24px, 5.5vw, 32px);
    }
    .page-projects .projects-experience__subtitle {
        font-size: clamp(13px, 2.8vw, 16px);
    }
}

/* Projects Page: Sectors Section - Exclusive to Projects Page */

.page-projects .projects-sectors {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 200px);
    background: #ffffff;
}
.page-projects .projects-cta {
    position: relative;
    background: url("./assets/images/projects-cta.jpg") center/cover no-repeat;
    color: #ffffff;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(48px, 8vw, 96px) 18px;
}
.page-projects .projects-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 0;
}
.page-projects .projects-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    display: grid;
    gap: 16px;
}
.page-projects .projects-cta__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    line-height: 1.25;
}
.page-projects .projects-cta__subtitle {
    margin: 0;
    font-size: clamp(18px, 2.8vw, 22px);
    font-weight: 500;
    line-height: 1.4;
}
.page-projects .projects-cta__body {
    margin: 0;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    color: #f2f4ff;
}
.page-projects .projects-tagline {
    padding: 82px 18px 92px;
    text-align: center;
}
.page-projects .projects-tagline__rule {
    max-width: 1080px;
    height: 1px;
    margin: 0 auto 18px;
    background: #d9d9d9;
}
.page-projects .projects-tagline__content {
    display: grid;
    gap: 6px;
}
.page-projects .projects-tagline__title {
    margin: 0;
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 500;
    color: #0b0b0b;
}
.page-projects .projects-tagline__subtitle {
    margin: 0;
    font-size: clamp(14px, 2.2vw, 16px);
    font-weight: 500;
    color: #2b2b2b;
}
.page-projects .projects-sectors__sidebar {
    background: #010073;
    color: #ffffff;
    padding: 24px 0;
    position: relative;
}
.page-projects .projects-sectors__menu-toggle {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}
.page-projects .projects-sectors__sidebar-title {
    margin: 0 0 32px;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}
.page-projects .projects-sectors__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-projects .projects-sectors__item {
    margin: 0;
}
.page-projects .projects-sectors__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}
.page-projects .projects-sectors__link:hover {
    background: rgba(255, 255, 255, 0.1);
}
.page-projects .projects-sectors__link.is-active {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 500;
}
.page-projects .projects-sectors__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-projects .projects-sectors__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}
.page-projects .projects-sectors__content {
    background: #ffffff;
    padding: 40px 48px;
    overflow-y: auto;
}
.page-projects .projects-sectors__accordion {
    display: grid;
    gap: 16px;
}
.page-projects .projects-sector-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    background: #ffffff;
    overflow: visible;
    position: relative;
}
.page-projects .projects-sector-item.is-open {
    border-bottom-color: #010073;
}
.page-projects .projects-sector-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}
.page-projects .projects-sector-item__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #252323;
    flex: 1;
}
.page-projects .projects-sector-item__icon {
    flex-shrink: 0;
    margin-left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252323;
    font-size: 16px;
    transition: transform 0.2s ease;
}
.page-projects .projects-sector-item__icon i {
    display: block;
}
.page-projects .projects-sector-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.page-projects .projects-sector-item.is-open .projects-sector-item__body {
    max-height: 2000px;
}
.page-projects .projects-sector-item__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 24px 24px 24px;
    position: relative;
    overflow: visible;
}
.page-projects .projects-sector-item__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.page-projects .projects-sector-item__left--bordered {
    border: 2px dashed #010073;
    border-radius: 8px;
    padding: 28px 32px 20px 20px;
    background: #ffffff;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}
.page-projects .projects-sector-item__badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    padding: 0;
    background: #010073;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    color: transparent;
    z-index: 20;
    pointer-events: none;
}
.page-projects .projects-sector-item__badge::after {
    content: "Ongoing";
    position: absolute;
    top: 30%;
    right: 18px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    transform: rotate(45deg);
    transform-origin: center;
    white-space: nowrap;
}
.page-projects .projects-sector-item__detail {
    font-size: 14px;
    color: #252323;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}
.page-projects .projects-sector-item__detail-top {
    font-size: 14px;
    color: #252323;
    line-height: 1.6;
}
.page-projects .projects-sector-item__badge+.projects-sector-item__detail .projects-sector-item__detail-top {
    padding-right: 50px;
}
.page-projects .projects-sector-item__detail-bottom {
    margin-top: auto;
    font-size: 20px;
    font-weight: 500;
    color: #010073;
    line-height: 1.6;
}
.page-projects .projects-sector-item__detail strong {
    font-weight: 500;
    color: #010073;
}
.page-projects .projects-sector-item__right {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 5 / 4;
    width: 100%;
}
.page-projects .projects-sector-item__image-single {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-projects .projects-sector-item__image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 4;
}
.page-projects .projects-sector-item__image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.page-projects .projects-sector-item__image-slide.is-active {
    opacity: 1;
    position: relative;
}
.page-projects .projects-sector-item__image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-projects .projects-sector-item__slider-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.page-projects .projects-sector-item__slider-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #010073;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease;
}
.page-projects .projects-sector-item__slider-btn:hover {
    background: #ffffff;
}
.page-projects .projects-sector-item__slider-dots {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.page-projects .projects-sector-item__slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}
.page-projects .projects-sector-item__slider-dot.is-active {
    background: #ffffff;
}
@media (max-width: 1200px) {
    .page-projects .projects-sectors {
        grid-template-columns: 240px 1fr;
    }
    .page-projects .projects-sectors__content {
        padding: 32px 36px;
    }
}
@media (max-width: 980px) {
    .page-projects .projects-sectors {
        grid-template-columns: 1fr;
    }
    .page-projects .projects-sectors__sidebar-title {
        display: none;
    }
    .page-projects .projects-sectors__sidebar {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none;
        padding: 12px 18px 15px;
        background: #010073;
        /* match desktop sidebar */
        z-index: 2;
    }
    .page-projects .projects-sectors__menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 14px;
        border: 1px solid #4a54d8;
        border-radius: 8px;
        background: #010073;
        /* same as sidebar */
        color: #ffffff;
        font-weight: 500;
        cursor: pointer;
        width: 90%;
        justify-content: space-between;
        margin: 0 auto;
    }
    .page-projects .projects-sectors__nav {
        display: none;
        margin-top: 12px;
        background: #010073;
        /* match sidebar */
        border: 1px solid #4a54d8;
        border-radius: 10px;
        padding: 8px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    }
    .page-projects .projects-sectors__sidebar.is-open .projects-sectors__nav {
        display: block;
    }
    .page-projects .projects-sectors__list {
        display: grid;
        gap: 4px;
    }
    .page-projects .projects-sectors__link {
        color: #ffffff;
        background: transparent;
        border-radius: 8px;
        border: 1px solid transparent;
    }
    .page-projects .projects-sectors__link:hover, .page-projects .projects-sectors__link.is-active {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.24);
    }
    .page-projects .projects-sectors__content {
        padding: 28px 20px 32px;
    }
    .page-projects .projects-sector-item__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-projects .projects-sector-item__right {
        width: 100%;
    }
    .page-projects .projects-sector-item__slider-controls {
        bottom: 12px;
        right: 12px;
    }
}
@media (max-width: 520px) {
    .page-projects .projects-sectors__content {
        padding: 22px 16px 28px;
    }
    .page-projects .projects-sector-item__header {
        padding: 14px 14px;
    }
    .page-projects .projects-sector-item__title {
        font-size: 15px;
    }
    .page-projects .projects-sector-item__content {
        padding: 0 14px 14px;
        gap: 16px;
    }
    .page-projects .projects-sector-item__left--bordered {
        padding: 22px 24px 16px 16px;
    }
    .page-projects .projects-sector-item__badge {
        width: 96px;
        height: 96px;
        top: 0;
        right: 0;
    }
    .page-projects .projects-sector-item__badge::after {
        right: 14px;
        font-size: 11px;
    }
    .page-projects .projects-sector-item__slider-controls {
        bottom: 10px;
        right: 10px;
    }
    .page-projects .projects-sector-item__slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}