/* =============================================
   NAVSEA — navsea.css
   Naval Defence Homepage Stylesheet
   ============================================= */

:root {
    --navy: #0a0e1a;
    --navy-mid: #111827;
    --blue-accent: #1a3aff;
    --blue-light: #2563eb;
    --white: #ffffff;
    --off-white: #f4f5f7;
    --grey: #8898aa;
    --grey-light: #e8eaf0;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Space Grotesk', 'Barlow', sans-serif;
    --font-inter: 'Inter', 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header { position: static; }

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn--primary {
    background: var(--blue-accent);
    color: var(--white);
    border: 1px solid var(--blue-accent);
}
.btn--primary:hover { background: #0f28cc; border-color: #0f28cc; }

.btn--dark {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}
.btn--dark:hover { background: #1c2a45; }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }

.btn--outline-blue {
    background: transparent;
    color: var(--blue-accent);
    border: 1px solid var(--blue-accent);
}
.btn--outline-blue:hover { background: var(--blue-accent); color: var(--white); }

.btn--blue {
    display: inline-flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: #0000CC;
    border: none;
    padding: 16px 30px;
    border-radius: 4px;
    transition: background 0.2s;
    cursor: pointer;
}
.btn--blue:hover { background: #0f28cc; }

/* ---- SECTION TAGS ---- */
.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #86A0BF;
    padding-bottom: 1.2rem;
}
.section-tag--light { color: rgba(255,255,255,0.6); }

/* ---- SECTIONS ---- */
.section {  
    padding: 5rem 0;
}
.section--light {
    background: var(--off-white);
}

/*.section h2:not(.about__title) {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--navy);
}*/

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(to bottom, rgba(5,8,20,0.55) 0%, transparent 100%);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: #000033;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 0;
}

.navbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
}

.navbar__logo-img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-prefix,
.logo-suffix,
.logo-strike,
.logo-strike::after { display: none; }

.navbar__links {
    display: flex;
    gap: 4px;
    margin-right: 8px;
}

.navbar__links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    height: 44px;
    border-radius: 4px;
    transition: color 0.2s;
    position: relative;
}

.navbar__links a::before,
.navbar__links a::after {
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}
.navbar__links a::before {
    content: '[';
    margin-right: 4px;
    transform: translateX(4px);
}
.navbar__links a::after {
    content: ']';
    margin-left: 4px;
    transform: translateX(-4px);
}

.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::before,
.navbar__links a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.btn--book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #000033;
    background: #F4F4F9;
    border: none;
    padding: 12px 16px;
    height: 44px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s;
    cursor: pointer;
}
.btn--book:hover {
    background: var(--blue-accent);
    color: #F4F4F9;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 72px;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,14,26,0.25) 0%,
        rgba(10,14,26,0.15) 40%,
        rgba(10,14,26,0.55) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
}


.hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-top: auto;
}

.hero__sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #DEE3ED;
    text-transform: uppercase;
    line-height: 1.6;
    max-width: 560px;
}

.hero__explore {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}

.hero__explore-img {
    height: 44px;
    width: auto;
    display: block;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background: #eef0f8;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
}

#about {
    scroll-margin-top: 72px;
}

#approach {
    scroll-margin-top: 72px;
}

.about__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.about__bg-img {
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 85%;
    height: auto;
    opacity: 0.15;
}

.about .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.about__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #86A0BF;
    margin-bottom: 1.2rem;
}

.about__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: #000033;
    max-width: 1102px;
    margin-bottom: 3rem;
}

.about__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 880px;
    align-self: flex-end;
    text-align: right;
}

.about__desc {
    color: #000033;
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    line-height: 1.75;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: right;
}

.about__grid,
.about__left,
.about__right,
.about__blueprint,
.about__blueprint-img { display: none; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-bar {
    background: #000033;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    line-height: 1.1;
    padding-bottom: 15px;
    animation: marquee 24s linear infinite;
}

    .marquee-track span {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 120px;
        line-height: 1.1;
        font-weight: 400;
        letter-spacing: -6px;
        color: #86A0BF;
        padding-right: 0;
    }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   EXPERIENCE
   ============================================= */
.experience {
    background: #eef0f8;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
}

.experience__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.experience__bg-img {
    position: absolute;
    left: -27%;
    top: 45%;
    transform: translateY(-10%);
    width: 110%;
    height: auto;
    opacity: 0.15;
}

.experience .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.experience__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #86A0BF;
    margin-bottom: 1.2rem;
}


.experrise__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #86A0BF;
    margin-bottom: 1.2rem;
}

.experience__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    color: #000033;
    max-width: 860px;
    margin-bottom: 2.5rem;
}

.experience__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    width: 70%;
}

.stats-row {
    display: flex;
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.stat-card {
    flex: 1;
    background: rgba(200, 210, 235, 0.5);
    border-radius: 8px;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stat__number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 120px;
    font-weight: 500;
    color: #0000CC;
    line-height: 1;
}

.stat__label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #86A0BF;
    text-transform: uppercase;
    line-height: 28px;
}

.experience__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 760px;
}

.experience__desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #000033;
    max-width: 760px;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 20px;
    text-align: right;
}

/* =============================================
   EXPERTISE
   ============================================= */
.expertise {
    position: relative;
    padding: 5rem 0;
    background: #080c18 url('/images/section-expertise-bg.png') center 70%/100% no-repeat;
    overflow: hidden;
}

    .expertise .section-tag {
        margin-bottom: 1.5rem;
        display: block;
    }

.expertise__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(60, 72, 86, 0.85);
}

.expertise .container {
    position: relative;
    z-index: 1;
}

.expertise__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.expertise__header-left {
    max-width: 860px;
}

.expertise__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.expertise__desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #F4F4F9;
    line-height: 1.7;
    max-width: 840px;
}

.expertise__header-right {
    flex-shrink: 0;
}

.expertise__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.expertise-card {
    border-radius: 8px;
    padding: 1.8rem;
    grid-column: span 2;
    height: 312px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expertise-card--wide { grid-column: span 3; }

.expertise-card--wide,
.expertise-card--wide ~ .expertise-card { height: 312px; }

.expertise-card--blue         { background: #0000CC; }
.expertise-card--navy         { background: #000033; }
.expertise-card--light        { background: #86A0BF; }
.expertise-card--verylight    { background: #C8D2E2; }
.expertise-card--slightlydarkblue { background: #00008F; }

.expertise-card__icon { display: none; }

.expertise-card__icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.expertise-card__icon-img--dark { filter: brightness(0); }
.expertise-card__title--dark { color: #0d1220; }

.expertise-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.expertise-card__num {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,1);
    flex-shrink: 0;
}

.expertise-card__num--dark {
    border-color: rgba(0,0,0,1);
    color: rgba(0,0,0,1);
}

.expertise-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #F4F4F9;
    line-height: 1.35;
    margin-top: auto;
    letter-spacing: -1.5px;
}

/* =============================================
   TECHNOLOGY
   ============================================= */
.technology { background: #f0f1f5; }

.technology__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #86A0BF;
    margin-bottom: 1.2rem;
}

.technology__row-one {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.technology__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.12;
    color: #000033;
    margin: 0;
    letter-spacing: -2.5px;
    max-width: 50%;
}

.technology__row-two {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.technology__row-two-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    width: 50%;
}

.technology__desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #000033;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.01em;
    text-align: right;
    max-width: 940px;
    margin-bottom: 1.5rem;
}

.technology__btn { flex-shrink: 0; }

.accordion {
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #0000CC;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
    min-height: 80px;
}

.accordion__item:last-child { border-bottom: none; }
.accordion__item:hover { background: #0000dd; }

.accordion__item-one   { background: #0000CC; }
.accordion__item-two   { background: #0000AD; }
.accordion__item-three { background: #00008F; }
.accordion__item-four  { background: #000052; }

.accordion__item-one:hover   { background: #0000e8; }
.accordion__item-two:hover   { background: #0000cc; }
.accordion__item-three:hover { background: #0000ad; }
.accordion__item-four:hover  { background: #000070; }

.accordion__item {
    flex-direction: column;
    align-items: flex-start;
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
}

.accordion__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding 0.4s ease;
    width: 55%;
    padding: 0 2.5rem;
    overflow: hidden;
}

.accordion__body-inner {
    overflow: hidden;
}

.accordion__item.open .accordion__body {
    grid-template-rows: 1fr;
    font-size: 20px;
    padding: 0 2.5rem 2rem;
}

.accordion__body p {
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.accordion__item.open .accordion__label {
    text-decoration: underline;
    font-size: 40px;
    text-underline-offset: 4px;
}


/* =============================================
   INFRASTRUCTURE IMAGE
   ============================================= */
.infra-image {
    position: relative;
    height: 700px;
    background: var(--navy) url('/images/section-infrastructure-bg.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 3rem 3rem;
}

.infra-image__overlay { display: none; }

.infra-image__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #86A0BF;
    margin-bottom: 1.2rem;
}

.infra-image__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.infra-image__title-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.infra-image__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    width: 100%;
}

.infra-image__content p {
    color: rgba(255,255,255,0.85);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    max-width: 760px;
    line-height: 1.65;
    font-size: 20px;
    margin: 0;
}

/* =============================================
   PARTNERS (homepage section)
   ============================================= */
.partners { background: #f0f1f5; }

.partners__tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #86A0BF;
    display: block;
    margin-bottom: 1.6rem;
}

.partners__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #000033;
    letter-spacing: -2.5px;
    max-width: 1080px;
    margin-bottom: 2.5rem;
}

/* Single-partner layout */
.partners__single-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.partners__card--single {
    width: 320px;
    border: 1px solid #c8cfe0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f0f1f5;
}

.partners__card--single .partners__card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
}

.partners__logo-img--single {
    width: 200px;
    height: 80px;
    object-fit: contain;
    opacity: 0.7;
}

.partners__single-footer {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    display: flex;
    color: #374151;
    font-size: 20px;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 680px;
    gap: 1.2rem;
}

.partners__card-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a8aaa;
}

.partners__desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #374151;
    font-size: 20px;
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   NEWSROOM
   ============================================= */
.news { background: #DEE3ED; }

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.news__tag {
    color: #4a5a8a;
    letter-spacing: 0.12em;
    margin-bottom: 0;
}

.news__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.news__image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--navy);
}

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

.news__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

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

.news__category {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4a5a8a;
}

.news__date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #8898aa;
}

.news__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.news__dot--announcement { background: #8898aa; }
.news__dot--news         { background: #f5c518; }
.news__dot--publication  { background: #e040fb; }
.news__dot--update       { background: #29b6f6; }

.news__featured-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 600;
    line-height: 1.25;
    color: #000033;
    margin: 0;
}

.news__featured-desc {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.news__featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.news__readtime {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8898aa;
}

.news__read-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.news-card {
    border-radius: 8px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    gap: 1.5rem;
}

.news-card--blue  { background: #0000CC; }
.news-card--navy  { background: #000033; }
.news-card--slate { background: #7a8faa; }

.news-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card__cat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.news-card__date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}

.news-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    margin: 0;
}

/* =============================================
   BOTTOM HERO
   ============================================= */
.bottom-hero {
    position: relative;
    min-height: 950px;
    background: var(--navy) url('/images/section-closing-bg.png') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.bottom-hero__overlay { display: none; }

.bottom-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

    .bottom-hero__content .bottom-hero__text {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 400;
        color: #F4F4F9;
        font-size: 80px;
        line-height: 1.2;
        letter-spacing: -3px;
        max-width: 1049px;
        margin: 0;
    }

.bottom-hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.bottom-hero__content p {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #FFFFFF;
    max-width: 820px;
    line-height: 1.7;
    font-size: 20px;
    margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #0000CC;
    color: rgba(255,255,255,0.85);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 4rem;
    padding-bottom: 4rem;
    gap: 4rem;
}

.footer__brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
    min-width: 400px;
}

.footer__logo {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: #F4F4F9;
    margin: 0;
}

.footer__links {
    display: flex;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 3rem;
}

.footer__col--bordered {
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.footer__col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #86A0BF;
    margin-bottom: 0.5rem;
}

.footer__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #F4F4F9;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer__link:hover { opacity: 0.7; }

.footer__address {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: #F4F4F9;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 4rem;
    gap: 1rem;
}

.footer__copy {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.footer__bottom-links { display: flex; gap: 2rem; }

.footer__bottom-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer__bottom-link:hover { opacity: 1; color: #fff; }

.footer__scroll-top {
    position: absolute;
    right: 0;
}
.footer__scroll-top:hover { background: rgba(255,255,255,0.1); }

.footer__scroll-icon {
    width: 18px;
    height: 18px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 0.6rem;
    line-height: 1;
    flex-shrink: 0;
}

#who {
    scroll-margin-top: 72px;
}


#partnership {
    scroll-margin-top: 72px;
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }

    .about__title { font-size: 48px; }
    .experience__title { font-size: 52px; }
    .expertise__title { font-size: 48px; }
    .technology__title { font-size: 42px; max-width: 70%; }
    .partners__title { font-size: 42px; }

    .stat__number { font-size: 80px; }
    .expertise__grid { grid-template-columns: repeat(4, 1fr); }
    .expertise-card { grid-column: span 2; height: 280px; }
    .expertise-card--wide { grid-column: span 2; }
}

/* =============================================
   RESPONSIVE — MOBILE/TABLET (max 768px)
   ============================================= */
@media (max-width: 768px) {
    .navbar__links {
        display: none;
    }

    .navbar__inner {
        padding: 0 1.25rem;
    }

    .navbar__cta {
        display: none;
    }
    /* hide desktop CTA */
    .navbar__hamburger {
        display: flex;
    }
    /* ← ADD THIS */
    /* --- GLOBAL --- */
    body { font-size: 14px; }

    .container { padding: 0 1.25rem; }

    .btn--blue {
        font-size: 14px;
        padding: 14px 22px;
    }

    .section { padding: 3.5rem 0; }

    .section-tag {
        font-size: 16px;
        padding-bottom: 0.8rem;
    }

    /* --- NAVBAR --- */
    .navbar__links { display: none; }

    .navbar__inner { padding: 0 1.25rem; }

    /* --- HERO --- */
    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -0.02em;
    }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero__sub {
        font-size: 0.75rem;
        max-width: 100%;
    }

    .hero__explore { display: none; }

    /* --- ABOUT --- */
    .about { padding: 3rem 0 3.5rem; }

    .about__tag { margin-bottom: 1rem; }

    .about__title {
        font-size: 32px;
        margin-bottom: 2rem;
        line-height: 1.15;
    }

    .about__bottom {
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        align-self: flex-start;
    }

    .about__desc {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.25rem;
    }

    /* --- MARQUEE --- */
    .marquee-track span {
        font-size: 64px;
        letter-spacing: -3px;
    }

    /* --- EXPERIENCE --- */
    .experience { padding: 3rem 0 3.5rem; }

    .experience__title {
        font-size: 32px;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .experience__right {
        width: 100%;
        margin-left: 0;
    }

    .stats-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1.5rem 1.5rem;
        gap: 0.8rem;
    }

    .stat__number { font-size: 80px; line-height: 1; }

    .stat__label { font-size: 14px; }

    .experience__bottom {
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
    }

    .experience__desc {
        font-size: 16px;
        text-align: left;
        margin-bottom: 1.25rem;
    }

    /* --- EXPERTISE --- */
    .expertise { padding: 3rem 0 3.5rem; }

    .expertise__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .expertise__header-left { max-width: 100%; }

    .expertise__title {
        font-size: 32px;
        margin-bottom: 0.75rem;
    }

    .expertise__desc { font-size: 16px; }

    .expertise__header-right { width: 100%; }

    .expertise__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .expertise-card {
        grid-column: span 1;
        height: auto;
        min-height: 180px;
        padding: 1.5rem;
    }

    .expertise-card__icon { display: flex; }

    .expertise-card__title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    /* --- TECHNOLOGY --- */
    .technology { padding: 3rem 0 3.5rem; }

    .technology__title {
        font-size: 32px;
        max-width: 100%;
        letter-spacing: -1px;
    }

    .technology__row-one { margin-bottom: 16px; }

    .technology__row-two {
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    .technology__row-two-right {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .technology__desc {
        font-size: 16px;
        text-align: left;
    }

    .accordion__header { padding: 1.25rem 1.5rem; }

    .accordion__label { font-size: 22px; }

    .accordion__item.open .accordion__label { font-size: 22px; }

    .accordion__body {
        width: 100%;
        padding: 0 1.5rem;
    }

    .accordion__item.open .accordion__body { padding: 0 1.5rem 1.5rem; }

    .accordion__body p { font-size: 16px; }

    /* --- INFRA IMAGE --- */
    .infra-image {
        height: auto;
        min-height: 400px;
        padding: 2rem 1.25rem 2rem;
    }

    .infra-image__title-block h2 {
        font-size: 32px;
        letter-spacing: -0.01em;
    }

    .infra-image__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .infra-image__content p { font-size: 16px; }

    /* --- PARTNERS --- */
    .partners { padding: 3rem 0 3.5rem; }

    .partners__title {
        font-size: 32px;
        letter-spacing: -1.5px;
        margin-bottom: 2rem;
    }

    .partners__single-layout { align-items: flex-start; }

    .partners__card--single {
        width: 100%;
        border-radius: 8px;
    }

    .partners__desc { font-size: 16px; }

    /* --- NEWSROOM --- */
    .news { padding: 3rem 0 3.5rem; }

    .news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .news__featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .news__image { aspect-ratio: 16/9; }

    .news__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .news-card { min-height: 160px; padding: 1.5rem; }

    /* --- BOTTOM HERO --- */
    .bottom-hero { min-height: 480px; }

    .bottom-hero__content {
        padding: 2rem 1.25rem;
        gap: 1.25rem;
    }

        .bottom-hero__content .bottom-hero__text {
            color: #ffffff;
            font-size: 36px;
        }

    .bottom-hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .bottom-hero__content p {
        font-size: 16px;
        max-width: 100%;
    }

    /* --- FOOTER --- */
    .footer__inner {
        flex-direction: column;
        gap: 2rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .footer__brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        min-width: unset;
    }

    .footer__logo { height: 70px; }

    .footer__tagline { font-size: 28px; }

    .footer__links {
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .footer__col {
        padding: 0;
        border: none;
    }

    .footer__col--bordered {
        border: none;
    }

    .footer__bottom {
        position: relative;
        padding: 20px 120px; /* left/right space so text doesn't overlap button */
    }

    .footer__bottom-links { flex-wrap: wrap; gap: 1rem; }
}

/* =============================================
   RESPONSIVE — SMALL PHONES (max 480px)
   ============================================= */
@media (max-width: 480px) {
    .about__title { font-size: 28px; }
    .experience__title { font-size: 28px; }
    .expertise__title { font-size: 28px; }
    .technology__title { font-size: 28px; }
    .partners__title { font-size: 28px; }
    .bottom-hero__content .bottom-hero__text { font-size: 28px; letter-spacing: -0.5px; }

    .stat__number { font-size: 64px; }
    .expertise-card__title { font-size: 24px; }
    .accordion__label { font-size: 20px; }
    .accordion__item.open .accordion__label { font-size: 20px; }

    .marquee-track span { font-size: 48px; letter-spacing: -2px; }
}


/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page__hero {
    background: #f0f1f5;
    padding-top: calc(72px + 3.5rem);
    padding-bottom: 0;
}

.about-page__hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    color: #000033;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.about-page__divider {
    border: none;
    border-top: 1px solid #c8cfe0;
    margin: 0 0 2rem 0;
}

.about-page__hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 3rem;
}

.about-page__explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000033;
    border: 1px solid #000033;
    padding: 0.6rem 1.1rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.about-page__explore-btn:hover { background: #000033; color: #ffffff; }

.about-page__explore-icon { font-size: 1rem; }

.about-page__hero-desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #000033;
    line-height: 1.7;
    text-align: right;
    max-width: 880px;
    margin: 0;
}

.about-page__hero-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
}

.about-page__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-page__who {
    background: #f0f1f5;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.about-page__who-tag {
    display: block;
    color: #86A0BF;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.about-page__who-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 860px;
}

    .about-page__who-body p {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 32px;
        color: #000033;
        line-height: 40px;
        letter-spacing: -1px;
        margin: 0;
    }

.about-page__mv {
    background-color: #e8eaf0;
    background-image: repeating-linear-gradient( to bottom, transparent, transparent 3px, #c8cfe0 3px, #c8cfe0 4px );
    padding: 3rem 0;
}

.about-page__mv-tabs-box {
    display: inline-flex;
    border: 1px solid #000033;
    border-radius: 8px;
    background: #f8f9fb;
    overflow: hidden;
    margin-bottom: 0.6rem;
    max-width: 100%;
}

.about-page__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.about-page__tab {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 1.2rem;
    border: none;
    border-right: 1px solid #c8cfe0;
    background: transparent;
    color: #4a5a8a;
    cursor: pointer;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.about-page__tab--active {
    background: #000033;
    color: #ffffff;
}

.about-page__tab:last-child {
    border-right: none;
}

/*.about-page__tab-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}*/

/*.about-page__tab:not(.about-page__tab--active) .about-page__tab-icon-img {
    filter: brightness(0) invert(0.4);*/ /* grey when inactive */
/*}*/

.about-page__tab-icon { font-size: 1rem; }

.about-page__tab-content {
    border: 1px solid #000033;
    border-radius: 8px;
    padding: 1.2rem 1.4rem;
    background: #f8f9fb;
    max-width: 600px;
}

    .about-page__tab-content p {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 15px;
        color: #000033;
        line-height: 1.65;
        letter-spacing: -0.02em;
        margin: 0;
    }

.about-page__tab-content--hidden { display: none; }

.about-page__desk-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-page__desk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-page__tab-content p + p { margin-top: 1rem; }

.about-page__tab .about-page__tab-icon { display: none; }
.about-page__tab--active .about-page__tab-icon { display: inline; }

.about-page__exp {
    position: relative;
    background: #2e3a4a url('/images/experience&governance-bg.png') center 0%/120% no-repeat;
    padding: 3rem 0 6rem;
}

.about-page__exp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(60, 72, 86, 0.85);
    z-index: 0;
    pointer-events: none;
}

.about-page__exp .container {
    position: relative;
    z-index: 1;
}

.about-page__exp-tag {
    display: block;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em;
    margin-bottom: 2.5rem;
}

.about-page__exp-grid {
    display: grid;
    grid-template-columns: 432px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-page__exp-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-page__stat-card {
    align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    background-color: #3C4856;
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    background-position: 11px 11px;
    text-align: center;
    width: 432px;
}

.about-page__stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: #86A0BF;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: auto;
}

.about-page__stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    color: #F4F4F9;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.about-page__exp-content {
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0;
}

.about-page__exp-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    letter-spacing:-2.5px;
}

.about-page__exp-content p {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-size: 1rem;
    color: #C8D2E2;
    line-height: 1.75;
    margin: 0;
}


    .about-page__exp-content p + p {
        margin-top: 1.2rem;
    }

.about-page__leadership {
    background: #f0f1f5;
    padding: 4rem 0;
}

.about-page__leadership-tag {
    display: block;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.about-page__leadership-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #000033;
    line-height: 72px;
    max-width: 1226px;
    margin: 0 0 2.5rem;
    letter-spacing: -2.5px;
}

.about-page__leadership-desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 764px;
    margin-left: auto;
    margin-bottom: 3rem;
}

    .about-page__leadership-desc p {
        font-family: 'Inter', 'Space Grotesk', sans-serif;
        font-size: 20px;
        color: #000033;
        line-height: 1.75;
        margin: 0;
        letter-spacing: -1%;
    }

.about-page__person {
    display: grid;
    grid-template-columns: 220px 320px 1fr;
    gap: 3rem;
    align-items: start;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.about-page__person-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.about-page__person-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #000033;
    margin: 0;
}

.about-page__person-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.2px;
    text-transform: uppercase;
    line-height: 40px;
    color: #B2C2D6;
}

.about-page__person-photo {
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    padding-top: 15px;
}

.about-page__person-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 300px;
    max-width: 300px;
    object-fit: cover;
    object-position: center top;
    background-color: #3C4856;
    border-radius: 12px;
}

.about-page__person-bio {
    gap: 1rem;
    padding-left: 100px;
    width:900px;
}

    .about-page__person-bio p {
        font-family: 'Inter', 'Space Grotesk', sans-serif;
        font-size: 20px;
        color: #000033;
        line-height: 1.75;
        margin-top: 10px;
    }

.about-page__team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about-page__team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.about-page__team-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 300px;
    max-width: 300px;
    object-fit: cover;
    object-position: center top;
    background-color: #3C4856;
    border-radius: 12px;
}

.about-page__team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000033;
}

.about-page__team-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8898aa;
}

.about-page__contact {
    background: #f0f1f5;
    padding-top: 3.5rem;
    padding-bottom: 0;
}

.about-page__contact-tag {
    display: block;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.about-page__contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.about-page__contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #000033;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-page__contact-desc {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 820px;
    margin-left: auto;
    margin-bottom: 3rem;
    text-align: right;
}

    .about-page__contact-desc p {
        font-family: 'Inter', 'Space Grotesk', sans-serif;
        font-size: 20px;
        color: #000033;
        line-height: 1.75;
        margin: 0;
    }

.about-page__contact-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.about-page__contact-img {
    width: 100%;
    height: 545px;
    object-fit: cover;
    object-position: center;
    display: block;
    transform-origin: center;
}

/* =============================================
   SOLUTIONS PAGE
   ============================================= */
.solutions-page__hero {
    background: #f0f1f5;
    padding-top: calc(72px + 3.5rem);
    padding-bottom: 0;
}

.solutions-page__hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    color: #000033;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.solutions-page__hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 3rem;
}

.solutions-page__hero-desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #000033;
    line-height: 1.7;
    text-align: right;
    max-width: 600px;
    margin: 0;
    margin-left: auto;
}

.solutions-page__hero-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
}

.solutions-page__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solutions-page__approach {
    background: #f0f1f5;
    padding: 4rem 0 5rem;
}

.solutions-page__approach-tag {
    display: block;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.solutions-page__approach-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    color: #000033;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 1100px;
}

.solutions-page__approach-faded { color: #a8b8cc; }

.solutions-page__areas {
    position: relative;
    background: #2e3a4a url('/images/experience&governance-bg.png') center 0%/120% no-repeat;
    padding: 3rem 0 6rem;
}

    .solutions-page__areas::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(60, 72, 86, 0.85);
        z-index: 0;
        pointer-events: none;
    }


    .solutions-page__areas .container {
        position: relative;
        z-index: 1;
    }

.solutions-page__areas-tag {
    display: block;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.solutions-page__areas-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #C8D2E2;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 0 2.5rem;
}

.solutions-page__areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.solutions-page__area-card {
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    gap: 2rem;
}

.solutions-page__area-card--slate { background: #7a8faa; }
.solutions-page__area-card--navy  { background: #000033; }
.solutions-page__area-card--blue  { background: #0000CC; }
.solutions-page__area-card--light { background: #dce3ed; }

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

.solutions-page__area-icon {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.7);
    line-height: 1;
}

.solutions-page__area-icon--dark { color: #000033; }

.solutions-page__area-num {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,1);
    flex-shrink: 0;
    background: transparent;
}

.solutions-page__area-num--dark {
    border-color: rgba(0,0,0,1);
    color: rgba(0,0,0,1);
}

.solutions-page__area-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solutions-page__area-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -1px;
}

.solutions-page__area-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #F4F4F9;
    line-height: 1.7;
    margin: 0;
}

.solutions-page__area-title--dark { color: #000033; }
.solutions-page__area-desc--dark {
    color: #000033;
}

.solutions-page__area-icon-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
}

.solutions-page__area-icon-img--dark { filter: brightness(0) opacity(0.6); }

.solutions-page__framework {
    background: #f0f1f5;
    padding: 4rem 0;
}

.solutions-page__framework-tag {
    display: block;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.solutions-page__framework-intro {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 760px;
    margin-bottom: 2.5rem;
}

    .solutions-page__framework-intro p {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 20px;
        color: #000033;
        line-height: 1.75;
        margin: 0;
    }

.solutions-page__fw-item { padding: 2rem 0; }

.solutions-page__fw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.solutions-page__fw-heading {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.solutions-page__fw-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #a8b8cc;
    line-height: 1;
    min-width: 4rem;
}

.solutions-page__fw-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #000033;
    margin: 0;
    line-height: 1.15;
}

.solutions-page__fw-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    color: #000033;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}
.solutions-page__fw-toggle:hover { color: var(--blue-accent); }

.solutions-page__fw-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.solutions-page__fw-item.open .solutions-page__fw-body {
    grid-template-rows: 1fr;
    padding-bottom: 2rem;
}

.solutions-page__fw-body-inner {
    overflow: hidden;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-top: 0;
    align-items: start;
}

.solutions-page__fw-item.open .solutions-page__fw-body-inner { padding-top: 2rem; }

.solutions-page__fw-image {
    border-radius: 8px;
    overflow: hidden;
}

.solutions-page__fw-img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    display: block;
}

.solutions-page__fw-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

    .solutions-page__fw-content p {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 20px;
        color: #000033;
        line-height: 1.75;
        margin: 0;
    }

.solutions-page__stack {
    position: relative;
    background-color: #d8e0ec;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cline x1='10' y1='10' x2='26' y2='10' stroke='rgba(199, 209, 224)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18' y1='2' x2='18' y2='18' stroke='rgba(199, 209, 224)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='40' y1='40' x2='56' y2='40' stroke='rgba(199, 209, 224)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='48' y1='32' x2='48' y2='48' stroke='rgba(199, 209, 224)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 60px 60px;
    padding: 4rem 0 5rem;
}

.solutions-page__stack-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.solutions-page__stack-dot {
    position: relative;
    top: -3px; /* nudge up until visually centered */
    font-size: 0.8em;
}


.solutions-page__stack-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #000033;
    background: #ffffff;
}

.solutions-page__stack-tag {
    display: block;
    color: rgba(0,0,51,0.45);
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.solutions-page__stack-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #000033;
    line-height: 72px;
    letter-spacing: -2.5px;
    margin: 0 0 2.5rem;
}

.solutions-page__stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.solutions-page__stack-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.2px;
    text-transform: uppercase;
    color: #000033;
    border: 1.5px solid rgba(0,0,51,0.3);
    border-radius: 6px;
    padding: 1.12rem 2.24rem;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solutions-page__closing {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.solutions-page__closing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.solutions-page__closing-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: 3rem;
    background: rgba(0,0,0,0.15);
}

.solutions-page__closing-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.solutions-page__programs {
    background: #f0f1f5;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.solutions-page__programs-bg {
    background-image: url('/images/blueprint.jpg');
    background-repeat: no-repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    right: 5%;
    height: 100%;
    width: 55%;
    pointer-events: none;
}

.solutions-page__programs-watermark {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    opacity: 0.18;
}

.solutions-page__programs-tag {
    display: block;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.solutions-page__programs-desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #000033;
    line-height: 28px;
    max-width: 775px;
    letter-spacing: -1%;
    margin: 0 0 2.5rem;
}

.solutions-page__program-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    gap: 2rem;
}

.solutions-page__program-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.solutions-page__program-slash {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    color: #a8b8cc;
    line-height: 1;
    flex-shrink: 0;
}

.solutions-page__program-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #000033;
    margin: 0;
    line-height: 1.2;
}

.solutions-page__program-tags {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.solutions-page__program-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #0000CC;
    border: 1px solid #B2C2D6;
    border-radius: 20px;
    padding: 0.7rem 1.2rem;
    background: transparent;
    white-space: nowrap;
}

.solutions-page__programs-divider {
    border: none;
    border-top: 1px solid #c8cfe0;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solutions-page__cta {
    background-color: #3c4856;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cline x1='10' y1='10' x2='26' y2='10' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18' y1='2' x2='18' y2='18' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='40' y1='40' x2='56' y2='40' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='48' y1='32' x2='48' y2='48' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 60px 60px;
    padding: 5rem 0 6rem;
}

.solutions-page__cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    max-width: 1049px;
}

.solutions-page__cta-desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 28px;
    max-width: 726px;
    margin: 0 0 2.5rem;
}

/* =============================================
   PARTNERS PAGE
   ============================================= */

/* Hero */
.partners-page__hero {
    background: #f0f1f5;
    padding-top: calc(72px + 3.5rem);
    padding-bottom: 0;
}

.partners-page__hero .container {
    padding-bottom: 0;
}

.partners-page__hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    color: #000033;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
    display: block;
}

.partners-page__hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 3rem;
}

.partners-page__hero-desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #000033;
    line-height: 28px;
    text-align: right;
    max-width: 580px;
    margin: 0;
    margin-left: auto;
}

.partners-page__hero-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    border-radius: 8px;
}

.partners-page__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Partnership section */
.partners-page__partnership {
    background: #f0f1f5;
    padding: 4rem 0 3rem;
}

.partners-page__partnership-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000033;
    line-height: 40px;
    max-width: 970px;
    margin-top: 50px;
}

/* JGI section */
.partners-page__jgi {
    display: flex;
    flex-direction: column;
    background: #3c4856;
    padding: 4rem 0 0;
}

.partners-page__jgi-logo {
    height: 48px;
    margin: 2rem 0 1.5rem;
    margin-left: 0;
    display: block;
}

.partners-page__jgi-body {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 100%;
}

.partners-page__jgi .container {
    max-width: 100%;
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-left: 0;
    margin-right: 0;
}

.partners-page__jgi-title {
    font-family: 'Space Grotesk', sans-serif;
    max-width: 888px;
    font-weight: 400;
    margin-left: 0;
    line-height: 72px;
    font-size: 64px;
    color: #F4F4F9
}

.partners-page__jgi-desc {
    max-width: 774px;
    margin-left: auto; /* pushes it to the right */
    margin-right: 0;
    text-align: right;
}

    .partners-page__jgi-desc p {
        font-family: 'Inter', 'Space Grotesk', sans-serif;
        font-size: 20px;
        color: #F4F4F9;
        font-weight: 400;
        line-height: 28px;
        text-align: right;
        margin: 0;
        margin-bottom: 30px;
    }

.partners-page__jgi-image {
    width: 100%;
    margin-top: 3rem;
    overflow: hidden;
}

.partners-page__jgi-img {
    width: 100%;
    height: auto; /* show full image, no cropping */
    display: block;
    object-fit: unset; /* override any cover/fill that was cutting it off */
}

/* Global Defence Expertise */
.partners-page__expertise {
    background: #f0f1f5;
    padding: 4rem 0;
}

.partners-page__expertise-desc {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000033;
    line-height: 28px;
    max-width: 800px;
    margin: 2rem 0 2rem;
}

.partners-page__expertise-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.partners-page__expertise-tag::before {
    content: '/ ';
    color: #86A0BF;
}

.partners-page__expertise-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    color: #000033;
    background: #DEE3ED;
    border-radius: 6px;
    padding: 1rem 1.2rem;
}

/* Strategic Value */
.partners-page__strategic {
    background: #f0f1f5;
    padding: 4rem 0 5rem;
}

.partners-page__strategic-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    color: #000033;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 3rem 0 2.5rem;
    max-width: 900px;
}

.partners-page__strategic-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.partners-page__strategic-card {
    border-radius: 8px;
    padding: 1.8rem;
    min-height: 332px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partners-page__strategic-card--slate { background: #7a8faa; }
.partners-page__strategic-card--navy  { background: #000033; }
.partners-page__strategic-card--blue  { background: #0000CC; }

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

.partners-page__strategic-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.85);
}

.partners-page__strategic-num {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    flex-shrink: 0;
}

.partners-page__strategic-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #F4F4F9;
    line-height: 40px;
    margin: 0;
}

.partners-page__strategic-footer {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: #000033;
    line-height: 28px;
    text-align: right;
    max-width: 750px;
    margin-left: auto;
}

/* Partners CTA */
.partners-page__cta {
    background-color: #3c4856;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cline x1='10' y1='10' x2='26' y2='10' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='18' y1='2' x2='18' y2='18' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='40' y1='40' x2='56' y2='40' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='48' y1='32' x2='48' y2='48' stroke='rgba(75, 90, 107)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 60px 60px;
    padding: 5rem 0 6rem;
}

.partners-page__cta-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #F4F4F9;
    line-height: 48px;
    max-width: 1000px;
    margin: 0 0 2.5rem;
}

.partners-page__cta-text strong {
    color: #ffffff;
    font-weight: 700;
}


/* =============================================
   HAMBURGER & MOBILE MENU
   ============================================= */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 12px;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Mobile menu panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #000033;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    transition: right 0.3s ease;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    cursor: pointer;
    align-self: flex-end;
    padding: 0;
    margin-bottom: 2.5rem;
    transition: color 0.2s;
}

.mobile-menu__close:hover { color: #ffffff; }

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}

.mobile-menu__link:hover { color: #ffffff; }

.mobile-menu__cta {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 22px;
}

/* Backdrop */
.mobile-menu__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.mobile-menu__backdrop.open {
    display: block;
}

/* Show hamburger, hide desktop nav on mobile */
@media (max-width: 768px) {
    .navbar__hamburger { display: flex; }
    .navbar__links { display: none; }
    .navbar__cta { display: none; }
}

@media (max-width: 768px) {
    .footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__copy,
    .footer__scroll-top {
        position: static; /* remove absolute positioning */
        transform: none;
    }
}

@media (max-width: 768px) {
    .solutions-page__hero-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .about-page__explore-btn {
        width: fit-content; /* prevents full width */
    }
}


@media (max-width: 768px) {
    .partners-page__hero-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .solutions-page__areas-grid {
        display: grid;
        grid-template-columns: 1fr; /* 👈 SAME as expertise */
        gap: 0.75rem;
    }

    .solutions-page__area-card {
        width: 100%;
        min-height: 180px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-page__tabs {
        display: flex;
        gap: 8px;
    }

    .about-page__tab {
        flex: 1;
        white-space: nowrap;
        font-size: 22px; /* shrink text */
        padding: 10px 8px; /* reduce padding */
    }
}

@media (max-width: 768px) {
    .about-page__exp-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-page__exp-stats {
        width: 100%;
    }

    .about-page__exp-content {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .about-page__exp-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about-page__stat-card {
        padding: 1.5rem;
    }

    .about-page__stat-num {
        font-size: 60px; /* reduce if overflowing */
        line-height: 1;
    }

    .about-page__stat-label {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .about-page__exp-grid,
    .about-page__exp-stats,
    .about-page__exp-content {
        margin: 0;
    }
}

/* Mobile adjustments for leadership section */
@media (max-width: 768px) {
    .about-page__person {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem; /* optional spacing */
    }

    .about-page__person-photo {
        width: 80%; /* smaller on mobile */
        max-width: 250px;
        height: auto;
        padding-top: 0;
    }

    .about-page__person-img {
        width: 100%;
        max-height: none;
        aspect-ratio: auto; /* allow image to scale naturally */
    }

    .about-page__person-bio {
        width: 100%;
        padding-left: 0; /* remove desktop offset */
        text-align: center; /* center content on mobile */
    }

    .about-page__person-name {
        font-size: 28px; /* smaller on mobile */
        line-height: 34px;
    }

    .about-page__person-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0.5rem;
    }

    .about-page__person-bio p {
        font-size: 16px;
        line-height: 1.6;
    }
}