/*
Theme Name: GRDO India
Description: Custom WordPress theme for GRDO India.
Version: 1.0.0
Text Domain: grdo-india
*/

/* =========================================
   GRDO INDIA — DESIGN TOKENS
   ========================================= */

:root {

    /* ---------- Colors ---------- */

    --grdo-primary: #123B5D;
    --grdo-primary-dark: #0B293F;

    --grdo-green: #2F6B4F;
    --grdo-saffron: #D99A2B;

    --grdo-text: #17202A;
    --grdo-text-muted: #5F6B76;

    --grdo-background: #F7F8F5;
    --grdo-white: #FFFFFF;
    --grdo-border: #DDE2E5;


    /* ---------- Typography ---------- */

    --grdo-font-body: "Inter", Arial, Helvetica, sans-serif;
    --grdo-font-display: "Manrope", Arial, Helvetica, sans-serif;


    /* ---------- Layout ---------- */

    --grdo-container: 1280px;

    --grdo-page-padding: 20px;


    /* ---------- Spacing ---------- */

    --grdo-space-1: 4px;
    --grdo-space-2: 8px;
    --grdo-space-3: 12px;
    --grdo-space-4: 16px;
    --grdo-space-5: 24px;
    --grdo-space-6: 32px;
    --grdo-space-7: 48px;
    --grdo-space-8: 64px;
    --grdo-space-9: 80px;
    --grdo-space-10: 96px;


    /* ---------- Borders & Shape ---------- */

    --grdo-radius-small: 6px;
    --grdo-radius-medium: 12px;
    --grdo-radius-large: 20px;


    /* ---------- Effects ---------- */

    --grdo-shadow-small: 0 4px 16px rgba(18, 59, 93, 0.08);
    --grdo-shadow-medium: 0 12px 32px rgba(18, 59, 93, 0.12);


    /* ---------- Transitions ---------- */

    --grdo-transition: 180ms ease;
}


/* =========================================
   GLOBAL RESET
   ========================================= */

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background: var(--grdo-background);
    color: var(--grdo-text);
    font-family: var(--grdo-font-body);
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   TYPOGRAPHY
   ========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--grdo-font-display);
    line-height: 1.15;
    color: var(--grdo-text);
}

p {
    margin-top: 0;
}


/* =========================================
   LAYOUT
   ========================================= */

.site-main {
    width: 100%;
}

.grdo-placeholder__inner,
.site-header__inner,
.site-footer__inner {
    width: min(
        calc(100% - (var(--grdo-page-padding) * 2)),
        var(--grdo-container)
    );

    margin-inline: auto;
}


/* =========================================
   PLACEHOLDER CONTENT
   ========================================= */

.grdo-placeholder {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-block: var(--grdo-space-10);
}

.grdo-placeholder__eyebrow {
    margin-bottom: var(--grdo-space-3);
    color: var(--grdo-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.grdo-placeholder h1 {
    max-width: 800px;
    margin-bottom: var(--grdo-space-5);
    font-size: clamp(40px, 8vw, 72px);
}

.grdo-placeholder p {
    max-width: 650px;
    color: var(--grdo-text-muted);
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    background: var(--grdo-white);
    border-bottom: 1px solid var(--grdo-border);
}

.site-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--grdo-space-5);
}

.site-header__brand {
    color: var(--grdo-primary);
    font-family: var(--grdo-font-display);
    font-size: 22px;
    font-weight: 800;
}

.site-navigation ul {
    display: flex;
    align-items: center;
    gap: var(--grdo-space-5);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation a {
    color: var(--grdo-text);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--grdo-transition);
}

.site-navigation a:hover {
    color: var(--grdo-primary);
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    padding-block: var(--grdo-space-7);
    background: var(--grdo-primary-dark);
    color: var(--grdo-white);
}

.site-footer__inner {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}


/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

@media (min-width: 768px) {

    :root {
        --grdo-page-padding: 32px;
    }

}

@media (min-width: 1024px) {

    :root {
        --grdo-page-padding: 40px;
    }

}

@media (min-width: 1440px) {

    :root {
        --grdo-page-padding: 48px;
    }

}
/* =========================================
   HOMEPAGE HERO
   ========================================= */

.grdo-hero {
    position: relative;
    overflow: hidden;
    padding-block: 72px 80px;
    background: var(--grdo-background);
}

.grdo-hero__inner {
    width: min(
        calc(100% - (var(--grdo-page-padding) * 2)),
        var(--grdo-container)
    );

    margin-inline: auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.grdo-hero__content {
    max-width: 720px;
}

.grdo-hero__eyebrow {
    margin-bottom: 16px;
    color: var(--grdo-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.grdo-hero__title {
    margin-bottom: 24px;
    color: var(--grdo-text);
    font-size: clamp(48px, 10vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-hero__description {
    max-width: 620px;
    margin-bottom: 32px;
    color: var(--grdo-text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.grdo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.grdo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--grdo-radius-small);
    font-size: 14px;
    font-weight: 700;
    transition:
        transform var(--grdo-transition),
        background-color var(--grdo-transition),
        color var(--grdo-transition),
        border-color var(--grdo-transition);
}

.grdo-button:hover {
    transform: translateY(-2px);
}

.grdo-button--primary {
    background: var(--grdo-primary);
    color: var(--grdo-white);
}

.grdo-button--primary:hover {
    background: var(--grdo-primary-dark);
}

.grdo-button--secondary {
    border-color: var(--grdo-border);
    background: var(--grdo-white);
    color: var(--grdo-primary);
}

.grdo-button--secondary:hover {
    border-color: var(--grdo-primary);
}

.grdo-hero__visual {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grdo-hero__visual-card {
    width: min(100%, 420px);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-large);
    background: var(--grdo-white);
    box-shadow: var(--grdo-shadow-medium);
    text-align: center;
}

.grdo-hero__visual-label {
    margin-bottom: 24px;
    color: var(--grdo-text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.grdo-hero__visual-core {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grdo-primary);
    color: var(--grdo-white);
    font-family: var(--grdo-font-display);
    font-size: 25px;
    font-weight: 800;
}

.grdo-hero__visual-line {
    width: 1px;
    height: 42px;
    background: var(--grdo-border);
}

.grdo-hero__visual-card p {
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 13px;
    font-weight: 600;
}

.grdo-hero__visual-card p span {
    margin-inline: 5px;
    color: var(--grdo-saffron);
}


/* ---------- Hero: Larger Screens ---------- */

@media (min-width: 900px) {

    .grdo-hero {
        min-height: calc(100vh - 72px);
        display: flex;
        align-items: center;
        padding-block: 80px;
    }

    .grdo-hero__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 72px;
    }

    .grdo-hero__visual {
        min-height: 480px;
    }

    .grdo-hero__visual-card {
        min-height: 420px;
    }

}


/* ---------- Hero: Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-hero {
        padding-block: 56px 64px;
    }

    .grdo-hero__title {
        font-size: clamp(44px, 15vw, 62px);
    }

    .grdo-hero__description {
        font-size: 16px;
    }

    .grdo-hero__actions {
        flex-direction: column;
    }

    .grdo-button {
        width: 100%;
    }

    .grdo-hero__visual {
        min-height: 280px;
    }

    .grdo-hero__visual-card {
        min-height: 280px;
        padding: 24px;
    }

}
/* =========================================
   GRDO ECOSYSTEM
   ========================================= */

.grdo-ecosystem {
    padding-block: 88px;
    background: var(--grdo-white);
}

.grdo-container {
    width: min(
        calc(100% - (var(--grdo-page-padding) * 2)),
        var(--grdo-container)
    );

    margin-inline: auto;
}

.grdo-section-intro {
    max-width: 720px;
    margin-bottom: 64px;
}

.grdo-section-eyebrow {
    margin-bottom: 16px;
    color: var(--grdo-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.grdo-section-intro h2 {
    margin-bottom: 24px;
    color: var(--grdo-text);
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.grdo-section-intro > p:last-child {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--grdo-text-muted);
    font-size: 17px;
    line-height: 1.7;
}


/* ---------- Ecosystem Visual ---------- */

.grdo-ecosystem__visual {
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: center;
    padding: 56px;
    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-large);
    background: var(--grdo-background);
}


/* ---------- Central GRDO ---------- */

.grdo-ecosystem__center {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    border-radius: 50%;
    background: var(--grdo-primary);
    color: var(--grdo-white);
    text-align: center;
    box-shadow: var(--grdo-shadow-medium);
}

.grdo-ecosystem__center span {
    font-family: var(--grdo-font-display);
    font-size: 34px;
    font-weight: 800;
}

.grdo-ecosystem__center small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    letter-spacing: 0.04em;
}


/* ---------- Initiative Items ---------- */

.grdo-ecosystem__connections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.grdo-ecosystem__item {
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-white);
    transition:
        transform var(--grdo-transition),
        box-shadow var(--grdo-transition),
        border-color var(--grdo-transition);
}

.grdo-ecosystem__item:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 59, 93, 0.25);
    box-shadow: var(--grdo-shadow-small);
}

.grdo-ecosystem__number {
    display: block;
    margin-bottom: 28px;
    color: var(--grdo-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-ecosystem__item h3 {
    margin-bottom: 12px;
    color: var(--grdo-text);
    font-size: 20px;
    line-height: 1.2;
}

.grdo-ecosystem__item p {
    margin-bottom: 20px;
    color: var(--grdo-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.grdo-ecosystem__item a {
    color: var(--grdo-primary);
    font-size: 13px;
    font-weight: 800;
}


/* ---------- Ecosystem Footer ---------- */

.grdo-ecosystem__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--grdo-border);
}

.grdo-ecosystem__footer span {
    color: var(--grdo-text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-ecosystem__footer a {
    color: var(--grdo-primary);
    font-size: 14px;
    font-weight: 800;
}


/* ---------- Mobile ---------- */

@media (max-width: 899px) {

    .grdo-ecosystem {
        padding-block: 64px;
    }

    .grdo-section-intro {
        margin-bottom: 40px;
    }

    .grdo-ecosystem__visual {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px 20px;
    }

    .grdo-ecosystem__connections {
        grid-template-columns: 1fr;
    }

    .grdo-ecosystem__item {
        min-height: auto;
    }

    .grdo-ecosystem__footer {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-ecosystem__center {
        width: 150px;
        height: 150px;
    }

    .grdo-ecosystem__center span {
        font-size: 28px;
    }

}
/* =========================================
   WHAT WE DO
   ========================================= */

.grdo-what-we-do {
    padding-block: 96px;
    background: var(--grdo-background);
}

.grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 56px;
}

.grdo-section-heading h2 {
    margin: 0;
    color: var(--grdo-text);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.grdo-section-heading > p {
    max-width: 500px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.75;
}


/* ---------- Work Grid ---------- */

.grdo-work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.grdo-work-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-white);
    transition:
        transform var(--grdo-transition),
        box-shadow var(--grdo-transition),
        border-color var(--grdo-transition);
}

.grdo-work-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 59, 93, 0.25);
    box-shadow: var(--grdo-shadow-small);
}

.grdo-work-card--large {
    grid-row: span 2;
    min-height: 796px;
    background: var(--grdo-primary);
    color: var(--grdo-white);
}

.grdo-work-card--wide {
    grid-column: span 1;
}

.grdo-work-card__number {
    color: var(--grdo-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-work-card--large .grdo-work-card__number {
    color: var(--grdo-saffron);
}

.grdo-work-card__category {
    margin-bottom: 14px;
    color: var(--grdo-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.grdo-work-card--large .grdo-work-card__category {
    color: rgba(255, 255, 255, 0.68);
}

.grdo-work-card h3 {
    max-width: 520px;
    margin-bottom: 18px;
    color: var(--grdo-text);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.grdo-work-card--large h3 {
    color: var(--grdo-white);
    font-size: clamp(34px, 4vw, 52px);
}

.grdo-work-card > div > p:last-child {
    max-width: 500px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.grdo-work-card--large > div > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.grdo-work-card > a {
    color: var(--grdo-primary);
    font-size: 13px;
    font-weight: 800;
}

.grdo-work-card--large > a {
    color: var(--grdo-white);
}


/* ---------- Mobile ---------- */

@media (max-width: 899px) {

    .grdo-what-we-do {
        padding-block: 72px;
    }

    .grdo-section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .grdo-work-grid {
        grid-template-columns: 1fr;
    }

    .grdo-work-card,
    .grdo-work-card--large,
    .grdo-work-card--wide {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }

    .grdo-work-card--large {
        min-height: 380px;
    }

    .grdo-work-card > div {
        margin-block: 28px;
    }

    .grdo-work-card--large > div {
        margin-block: 36px;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-work-card {
        min-height: 320px;
        padding: 24px;
    }

    .grdo-work-card--large {
        min-height: 400px;
    }

}
/* =========================================
   SERVICES / CAPABILITIES
   ========================================= */

.grdo-services {
    padding-block: 96px;
    background: var(--grdo-white);
}

.grdo-services__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 56px;
}

.grdo-services__heading h2 {
    margin: 0;
    color: var(--grdo-text);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.grdo-services__heading > p {
    max-width: 500px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.75;
}


/* ---------- Service List ---------- */

.grdo-services__list {
    border-top: 1px solid var(--grdo-border);
}

.grdo-service {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    gap: 32px;
    align-items: center;
    padding: 32px 8px;
    border-bottom: 1px solid var(--grdo-border);
    transition:
        padding var(--grdo-transition),
        background-color var(--grdo-transition);
}

.grdo-service:hover {
    padding-inline: 20px;
    background: var(--grdo-background);
}

.grdo-service__number {
    color: var(--grdo-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-service__content {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
    gap: 40px;
    align-items: center;
}

.grdo-service__content h3 {
    margin: 0;
    color: var(--grdo-text);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.grdo-service__content p {
    max-width: 560px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.grdo-service__arrow {
    color: var(--grdo-primary);
    font-size: 24px;
    font-weight: 400;
    text-align: right;
}


/* ---------- Mobile ---------- */

@media (max-width: 899px) {

    .grdo-services {
        padding-block: 72px;
    }

    .grdo-services__heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .grdo-service {
        grid-template-columns: 40px 1fr 24px;
        gap: 16px;
        padding: 24px 0;
    }

    .grdo-service:hover {
        padding-inline: 8px;
    }

    .grdo-service__content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .grdo-service__content p {
        font-size: 14px;
    }

    .grdo-service__arrow {
        font-size: 20px;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-service {
        grid-template-columns: 30px 1fr;
        gap: 14px;
    }

    .grdo-service__arrow {
        display: none;
    }

}
/* =========================================
   IMPACT / INITIATIVES
   ========================================= */

.grdo-impact {
    padding-block: 96px;
    background: var(--grdo-background);
}

.grdo-impact__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 56px;
}

.grdo-impact__heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--grdo-text);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.grdo-impact__heading > p {
    max-width: 500px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.75;
}


/* ---------- Impact Grid ---------- */

.grdo-impact__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
}

.grdo-impact__card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-white);
    transition:
        transform var(--grdo-transition),
        box-shadow var(--grdo-transition),
        border-color var(--grdo-transition);
}

.grdo-impact__card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 59, 93, 0.25);
    box-shadow: var(--grdo-shadow-small);
}

.grdo-impact__card--featured {
    grid-row: span 2;
    min-height: 876px;
    background: var(--grdo-primary);
}

.grdo-impact__number {
    color: var(--grdo-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-impact__content {
    max-width: 620px;
}

.grdo-impact__category {
    margin-bottom: 14px;
    color: var(--grdo-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.grdo-impact__card--featured .grdo-impact__category {
    color: rgba(255, 255, 255, 0.68);
}

.grdo-impact__card h3 {
    max-width: 600px;
    margin-bottom: 18px;
    color: var(--grdo-text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.grdo-impact__card--featured h3 {
    color: var(--grdo-white);
    font-size: clamp(38px, 4vw, 56px);
}

.grdo-impact__card p:not(.grdo-impact__category) {
    max-width: 560px;
    margin-bottom: 28px;
    color: var(--grdo-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.grdo-impact__card--featured p:not(.grdo-impact__category) {
    color: rgba(255, 255, 255, 0.74);
}

.grdo-impact__card a {
    color: var(--grdo-primary);
    font-size: 13px;
    font-weight: 800;
}

.grdo-impact__card--featured a {
    color: var(--grdo-white);
}


/* ---------- Mobile ---------- */

@media (max-width: 899px) {

    .grdo-impact {
        padding-block: 72px;
    }

    .grdo-impact__heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .grdo-impact__grid {
        grid-template-columns: 1fr;
    }

    .grdo-impact__card,
    .grdo-impact__card--featured {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }

    .grdo-impact__card {
        min-height: 360px;
    }

    .grdo-impact__card--featured {
        min-height: 460px;
    }

    .grdo-impact__content {
        margin-top: 48px;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-impact {
        padding-block: 64px;
    }

    .grdo-impact__card {
        min-height: 340px;
        padding: 24px;
    }

    .grdo-impact__card--featured {
        min-height: 440px;
    }

    .grdo-impact__card h3 {
        font-size: 28px;
    }

    .grdo-impact__card--featured h3 {
        font-size: 36px;
    }

}
/* =========================================
   ABOUT GRDO / OUR STORY
   ========================================= */

.grdo-about {
    padding-block: 120px;
    background: var(--grdo-white);
}

.grdo-about__top {
    max-width: 900px;
    margin-bottom: 80px;
}

.grdo-about__top h2 {
    max-width: 850px;
    margin: 0;
    color: var(--grdo-text);
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-about__body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
    gap: 100px;
    padding-top: 48px;
    border-top: 1px solid var(--grdo-border);
}

.grdo-about__statement p {
    max-width: 760px;
    margin: 0;
    color: var(--grdo-text);
    font-family: var(--grdo-font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.grdo-about__content {
    max-width: 520px;
}

.grdo-about__content p {
    margin-bottom: 24px;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-about__content a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--grdo-primary);
    font-size: 14px;
    font-weight: 800;
}

.grdo-about__principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 96px;
    padding-top: 32px;
    border-top: 1px solid var(--grdo-border);
}

.grdo-about__principle {
    padding-right: 32px;
}

.grdo-about__principle + .grdo-about__principle {
    padding-left: 32px;
    border-left: 1px solid var(--grdo-border);
}

.grdo-about__principle span {
    display: block;
    margin-bottom: 28px;
    color: var(--grdo-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-about__principle h3 {
    margin-bottom: 12px;
    color: var(--grdo-text);
    font-size: 26px;
    line-height: 1.15;
}

.grdo-about__principle p {
    max-width: 300px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* ---------- Mobile ---------- */

@media (max-width: 899px) {

    .grdo-about {
        padding-block: 80px;
    }

    .grdo-about__top {
        margin-bottom: 56px;
    }

    .grdo-about__body {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 36px;
    }

    .grdo-about__statement p {
        font-size: 30px;
    }

    .grdo-about__principles {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 64px;
    }

    .grdo-about__principle {
        padding: 28px 0;
    }

    .grdo-about__principle + .grdo-about__principle {
        padding: 28px 0;
        border-top: 1px solid var(--grdo-border);
        border-left: 0;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-about {
        padding-block: 64px;
    }

    .grdo-about__top h2 {
        font-size: 40px;
        line-height: 1;
    }

    .grdo-about__statement p {
        font-size: 25px;
        line-height: 1.2;
    }

    .grdo-about__content p {
        font-size: 15px;
    }

}
/* =========================================
   FINAL CTA / PARTNERSHIPS
   ========================================= */

.grdo-cta {
    padding-block: 96px;
    background: var(--grdo-background);
}

.grdo-cta__panel {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 80px;
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-primary);
}

.grdo-cta__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.grdo-cta__eyebrow {
    color: var(--grdo-green);
}

.grdo-cta h2 {
    max-width: 720px;
    margin: 20px 0 28px;
    color: var(--grdo-white);
    font-size: clamp(48px, 6.4vw, 80px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.grdo-cta__text {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.grdo-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.grdo-cta__button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 14px 22px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color var(--grdo-transition),
        border-color var(--grdo-transition),
        color var(--grdo-transition),
        transform var(--grdo-transition);
}

.grdo-cta__button:hover {
    transform: translateY(-2px);
}

.grdo-cta__button--primary {
    background: var(--grdo-saffron);
    border-color: var(--grdo-saffron);
    color: var(--grdo-primary);
}

.grdo-cta__button--primary:hover {
    background: var(--grdo-white);
    border-color: var(--grdo-white);
    color: var(--grdo-primary);
}

.grdo-cta__button--primary span {
    font-size: 18px;
    line-height: 1;
}

.grdo-cta__button--secondary {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--grdo-white);
}

.grdo-cta__button--secondary:hover {
    border-color: var(--grdo-white);
    background: var(--grdo-white);
    color: var(--grdo-primary);
}

.grdo-cta__mark {
    position: absolute;
    right: -76px;
    bottom: -112px;
    width: 410px;
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.grdo-cta__mark::before,
.grdo-cta__mark::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.grdo-cta__mark::before {
    width: 300px;
    height: 300px;
}

.grdo-cta__mark::after {
    width: 190px;
    height: 190px;
}

.grdo-cta__mark span {
    color: rgba(255, 255, 255, 0.16);
    font-family: var(--grdo-font-display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.05em;
}


/* ---------- Mobile ---------- */

@media (max-width: 899px) {

    .grdo-cta {
        padding-block: 72px;
    }

    .grdo-cta__panel {
        min-height: 0;
        padding: 64px 48px;
    }

    .grdo-cta__mark {
        right: -120px;
        bottom: -170px;
        width: 340px;
        height: 340px;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-cta {
        padding-block: 64px;
    }

    .grdo-cta__panel {
        padding: 48px 24px;
    }

    .grdo-cta h2 {
        margin-top: 16px;
        font-size: 46px;
        line-height: 0.98;
    }

    .grdo-cta__text {
        font-size: 15px;
        line-height: 1.7;
    }

    .grdo-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .grdo-cta__button {
        width: 100%;
    }

    .grdo-cta__mark {
        right: -144px;
        bottom: -185px;
        width: 300px;
        height: 300px;
    }

    .grdo-cta__mark::before {
        width: 220px;
        height: 220px;
    }

    .grdo-cta__mark::after {
        width: 140px;
        height: 140px;
    }

}
/* =========================================
   FOOTER
   ========================================= */

.grdo-footer {
    padding-top: 88px;
    background: var(--grdo-primary);
    color: var(--grdo-white);
}

.grdo-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 80px;
    padding-bottom: 72px;
}

.grdo-footer__brand > a {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--grdo-white);
    font-family: var(--grdo-font-display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.035em;
    text-decoration: none;
}

.grdo-footer__brand p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.75;
}

.grdo-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.grdo-footer__links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.grdo-footer__label {
    margin: 0 0 10px;
    color: var(--grdo-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.grdo-footer__links a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color var(--grdo-transition);
}

.grdo-footer__links a:hover {
    color: var(--grdo-saffron);
}

.grdo-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.grdo-footer__bottom p,
.grdo-footer__bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-decoration: none;
}

.grdo-footer__bottom a {
    color: var(--grdo-white);
    font-weight: 700;
}

.grdo-footer__bottom a:hover {
    color: var(--grdo-saffron);
}


/* ---------- Mobile ---------- */

@media (max-width: 899px) {

    .grdo-footer {
        padding-top: 64px;
    }

    .grdo-footer__top {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-bottom: 56px;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .grdo-footer {
        padding-top: 56px;
    }

    .grdo-footer__brand > a {
        font-size: 27px;
    }

    .grdo-footer__links {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .grdo-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

}
/* =========================================
   HEADER NAVIGATION
   ========================================= */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--grdo-white);
    border-bottom: 1px solid var(--grdo-border);
}

.site-header__inner {
    width: min(
        calc(100% - (var(--grdo-page-padding) * 2)),
        var(--grdo-container)
    );

    min-height: 76px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-header__brand {
    flex-shrink: 0;

    color: var(--grdo-primary);
    font-family: var(--grdo-font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-header__brand:hover {
    color: var(--grdo-primary-dark);
}


/* ---------- Desktop Navigation ---------- */

.site-navigation {
    display: block;
}

.site-navigation__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site-navigation__list li {
    margin: 0;
    padding: 0;
}

.site-navigation__list a {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 44px;

    color: var(--grdo-text);
    font-size: 14px;
    font-weight: 700;

    transition:
        color var(--grdo-transition),
        opacity var(--grdo-transition);
}

.site-navigation__list a:hover {
    color: var(--grdo-primary);
}


/* ---------- Header CTA ---------- */

.site-navigation__list .menu-item:last-child a {
    padding: 10px 16px;

    border: 1px solid var(--grdo-primary);
    border-radius: var(--grdo-radius-small);

    background: var(--grdo-primary);
    color: var(--grdo-white);

    transition:
        background-color var(--grdo-transition),
        border-color var(--grdo-transition),
        transform var(--grdo-transition);
}

.site-navigation__list .menu-item:last-child a:hover {
    background: var(--grdo-primary-dark);
    border-color: var(--grdo-primary-dark);
    color: var(--grdo-white);
    transform: translateY(-1px);
}


/* ---------- Mobile Menu Button ---------- */

.site-header__menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin: 0;
    padding: 0;

    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-small);

    background: var(--grdo-white);

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.site-header__menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--grdo-primary);

    transition:
        transform var(--grdo-transition),
        opacity var(--grdo-transition);
}


/* =========================================
   MOBILE NAVIGATION
   ========================================= */

@media (max-width: 899px) {

    .site-header__inner {
        min-height: 68px;
    }

    .site-header__menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .site-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        background: var(--grdo-white);
        border-bottom: 1px solid var(--grdo-border);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity 180ms ease,
            visibility 180ms ease,
            transform 180ms ease;
    }

    .site-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .site-navigation__list {
        width: min(
            calc(100% - (var(--grdo-page-padding) * 2)),
            var(--grdo-container)
        );

        margin-inline: auto;

        padding: 12px 0 24px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-navigation__list li {
        border-bottom: 1px solid var(--grdo-border);
    }

    .site-navigation__list li:last-child {
        border-bottom: 0;
        padding-top: 12px;
    }

    .site-navigation__list a {
        width: 100%;
        min-height: 52px;

        justify-content: flex-start;

        font-size: 16px;
    }

    .site-navigation__list .menu-item:last-child a {
        justify-content: center;
        min-height: 48px;
    }


    /* ---------- Hamburger Animation ---------- */

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }

}


/* ---------- Small Phones ---------- */

@media (max-width: 480px) {

    .site-header__inner {
        min-height: 64px;
    }

    .site-header__brand {
        font-size: 20px;
    }

    .site-header__menu-toggle {
        width: 42px;
        height: 42px;
    }

}
/* =========================================
   HEADER NAVIGATION
   ========================================= */

.site-header {
    position: relative;
    z-index: 1000;
}

.site-header__inner {
    position: relative;
}

.site-navigation__list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation__list li {
    margin: 0;
    padding: 0;
}

.site-navigation__list a {
    display: inline-flex;
    align-items: center;
    color: var(--grdo-text);
    font-size: 14px;
    font-weight: 600;
    transition:
        color var(--grdo-transition),
        opacity var(--grdo-transition);
}

.site-navigation__list a:hover {
    color: var(--grdo-primary);
}


/* =========================================
   MOBILE MENU BUTTON
   ========================================= */

.site-header__menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-header__menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--grdo-text);
    transition:
        transform var(--grdo-transition),
        opacity var(--grdo-transition);
}


/* =========================================
   MOBILE NAVIGATION
   ========================================= */

@media (max-width: 899px) {

    .site-header__inner {
        min-height: 68px;
    }

    .site-header__menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .site-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        padding: 20px var(--grdo-page-padding) 28px;

        background: var(--grdo-white);
        border-top: 1px solid var(--grdo-border);
        border-bottom: 1px solid var(--grdo-border);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity var(--grdo-transition),
            visibility var(--grdo-transition),
            transform var(--grdo-transition);
    }

    .site-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-navigation__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-navigation__list li {
        border-bottom: 1px solid var(--grdo-border);
    }

    .site-navigation__list li:last-child {
        border-bottom: 0;
    }

    .site-navigation__list a {
        display: flex;
        width: 100%;
        min-height: 52px;
        align-items: center;
        font-size: 16px;
    }

    /* Hamburger → X */

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 480px) {

    .site-navigation {
        padding-inline: 20px;
    }

    .site-navigation__list a {
        min-height: 50px;
        font-size: 15px;
    }

}
/* =========================================
   ABOUT GRDO PAGE
   ========================================= */

.grdo-about-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================
   ABOUT — HERO
   ========================================= */

.grdo-about-hero {
    padding-block: 120px 128px;
    background: var(--grdo-background);
}

.grdo-about-hero .grdo-container {
    max-width: var(--grdo-container);
}

.grdo-about-hero .grdo-section-eyebrow {
    margin-bottom: 24px;
}

.grdo-about-hero h1 {
    max-width: 980px;
    margin: 0;
    color: var(--grdo-text);
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}


/* =========================================
   ABOUT — INTRODUCTION
   ========================================= */

.grdo-about-intro {
    padding-block: 112px;
    background: var(--grdo-white);
}

.grdo-about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
    gap: 96px;
    align-items: start;
}

.grdo-about-intro__statement h2 {
    max-width: 780px;
    margin: 0;
    color: var(--grdo-text);
    font-family: var(--grdo-font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.grdo-about-intro__content {
    max-width: 520px;
}

.grdo-about-intro__content p {
    margin-bottom: 24px;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-about-intro__content p:last-of-type {
    margin-bottom: 28px;
}

.grdo-text-link {
    display: inline-flex;
    align-items: center;
    color: var(--grdo-primary);
    font-size: 14px;
    font-weight: 800;
    transition:
        color var(--grdo-transition),
        transform var(--grdo-transition);
}

.grdo-text-link:hover {
    color: var(--grdo-primary-dark);
    transform: translateX(4px);
}


/* =========================================
   ABOUT — APPROACH
   ========================================= */

.grdo-about-approach {
    padding-block: 112px;
    background: var(--grdo-background);
}

.grdo-about-approach .grdo-section-heading {
    margin-bottom: 64px;
}

.grdo-about-approach__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.grdo-about-approach__card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-white);
    transition:
        transform var(--grdo-transition),
        box-shadow var(--grdo-transition),
        border-color var(--grdo-transition);
}

.grdo-about-approach__card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 59, 93, 0.25);
    box-shadow: var(--grdo-shadow-small);
}

.grdo-about-approach__number {
    display: block;
    margin-bottom: auto;
    color: var(--grdo-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-about-approach__card h3 {
    margin-bottom: 16px;
    color: var(--grdo-text);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.grdo-about-approach__card p {
    max-width: 420px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   ABOUT — EXPERIENCE
   ========================================= */

.grdo-about-experience {
    padding-block: 112px;
    background: var(--grdo-white);
}

.grdo-about-experience__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    gap: 96px;
    align-items: start;
}

.grdo-about-experience__grid > div:first-child h2 {
    max-width: 700px;
    margin: 0;
    color: var(--grdo-text);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.grdo-about-experience__content {
    max-width: 540px;
}

.grdo-about-experience__content p {
    margin-bottom: 24px;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-about-experience__content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   ABOUT — CTA
   ========================================= */

.grdo-about-cta {
    padding-block: 96px;
    background: var(--grdo-background);
}

.grdo-about-cta__inner {
    position: relative;
    overflow: hidden;
    padding: 80px;
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-primary);
}

.grdo-about-cta__inner::after {
    position: absolute;
    right: -140px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.grdo-about-cta__inner::before {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.grdo-about-cta__inner > * {
    position: relative;
    z-index: 1;
}

.grdo-about-cta__inner .grdo-section-eyebrow {
    color: var(--grdo-saffron);
}

.grdo-about-cta__inner h2 {
    max-width: 760px;
    margin: 20px 0 24px;
    color: var(--grdo-white);
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-about-cta__inner > p:not(.grdo-section-eyebrow) {
    max-width: 580px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.grdo-about-cta .grdo-button--primary {
    background: var(--grdo-saffron);
    border-color: var(--grdo-saffron);
    color: var(--grdo-primary);
}

.grdo-about-cta .grdo-button--primary:hover {
    background: var(--grdo-white);
    border-color: var(--grdo-white);
    color: var(--grdo-primary);
}


/* =========================================
   ABOUT — TABLET
   ========================================= */

@media (max-width: 899px) {

    .grdo-about-hero {
        padding-block: 88px 96px;
    }

    .grdo-about-hero h1 {
        font-size: clamp(48px, 10vw, 76px);
    }

    .grdo-about-intro {
        padding-block: 80px;
    }

    .grdo-about-intro__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .grdo-about-intro__statement h2 {
        max-width: 760px;
    }

    .grdo-about-intro__content {
        max-width: 680px;
    }

    .grdo-about-approach {
        padding-block: 80px;
    }

    .grdo-about-approach .grdo-section-heading {
        margin-bottom: 40px;
    }

    .grdo-about-approach__grid {
        grid-template-columns: 1fr;
    }

    .grdo-about-approach__card {
        min-height: auto;
    }

    .grdo-about-experience {
        padding-block: 80px;
    }

    .grdo-about-experience__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .grdo-about-experience__content {
        max-width: 680px;
    }

    .grdo-about-cta {
        padding-block: 72px;
    }

    .grdo-about-cta__inner {
        padding: 64px 48px;
    }
}


/* =========================================
   ABOUT — MOBILE
   ========================================= */

@media (max-width: 480px) {

    .grdo-about-hero {
        padding-block: 64px 72px;
    }

    .grdo-about-hero .grdo-section-eyebrow {
        margin-bottom: 18px;
    }

    .grdo-about-hero h1 {
        font-size: 46px;
        line-height: 1;
    }

    .grdo-about-intro {
        padding-block: 64px;
    }

    .grdo-about-intro__grid {
        gap: 36px;
    }

    .grdo-about-intro__statement h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .grdo-about-intro__content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .grdo-about-approach {
        padding-block: 64px;
    }

    .grdo-about-approach__card {
        padding: 24px;
    }

    .grdo-about-approach__number {
        margin-bottom: 72px;
    }

    .grdo-about-approach__card h3 {
        font-size: 28px;
    }

    .grdo-about-approach__card p {
        font-size: 14px;
    }

    .grdo-about-experience {
        padding-block: 64px;
    }

    .grdo-about-experience__grid {
        gap: 36px;
    }

    .grdo-about-experience__grid > div:first-child h2 {
        font-size: 38px;
    }

    .grdo-about-experience__content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .grdo-about-cta {
        padding-block: 56px;
    }

    .grdo-about-cta__inner {
        padding: 48px 24px;
    }

    .grdo-about-cta__inner h2 {
        margin-top: 16px;
        font-size: 44px;
    }

    .grdo-about-cta__inner > p:not(.grdo-section-eyebrow) {
        font-size: 15px;
        line-height: 1.7;
    }

    .grdo-about-cta .grdo-button {
        width: 100%;
    }
}
/* =========================================================
   GRDO ABOUT PAGE
   FINAL PAGE-SPECIFIC LAYOUT
   ========================================================= */


/* =========================================================
   SHARED ABOUT PAGE CONTAINER
   ========================================================= */

.grdo-about-page {
    overflow: hidden;
}

.grdo-about-page .grdo-container {
    width: min(
        calc(100% - (var(--grdo-page-padding) * 2)),
        var(--grdo-container)
    );

    margin-inline: auto;
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.grdo-about-hero {
    padding-block: 112px 128px;
    background: var(--grdo-background);
}

.grdo-about-hero .grdo-section-eyebrow {
    margin-bottom: 22px;
}

.grdo-about-hero h1 {
    max-width: 920px;
    margin: 0;

    color: var(--grdo-text);

    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}


/* =========================================================
   ABOUT INTRODUCTION
   ========================================================= */

.grdo-about-intro {
    padding-block: 112px;
    background: var(--grdo-white);
}

.grdo-about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    gap: 100px;
    align-items: start;
}

.grdo-about-intro__statement h2 {
    max-width: 820px;
    margin: 0;

    color: var(--grdo-text);

    font-family: var(--grdo-font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.grdo-about-intro__content {
    max-width: 540px;
}

.grdo-about-intro__content p {
    margin-bottom: 24px;

    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-about-intro__content p:last-of-type {
    margin-bottom: 28px;
}

.grdo-text-link {
    display: inline-flex;

    color: var(--grdo-primary);
    font-size: 14px;
    font-weight: 800;

    transition:
        color var(--grdo-transition),
        transform var(--grdo-transition);
}

.grdo-text-link:hover {
    color: var(--grdo-primary-dark);
    transform: translateX(3px);
}


/* =========================================================
   OUR APPROACH
   ========================================================= */

.grdo-about-approach {
    padding-block: 112px;
    background: var(--grdo-background);
}

.grdo-about-approach .grdo-section-heading {
    margin-bottom: 64px;
}

.grdo-about-approach__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.grdo-about-approach__card {
    min-height: 360px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 32px;

    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-medium);

    background: var(--grdo-white);

    transition:
        transform var(--grdo-transition),
        box-shadow var(--grdo-transition),
        border-color var(--grdo-transition);
}

.grdo-about-approach__card:hover {
    transform: translateY(-5px);

    border-color: rgba(18, 59, 93, 0.25);

    box-shadow: var(--grdo-shadow-small);
}

.grdo-about-approach__number {
    display: block;

    margin-bottom: 118px;

    color: var(--grdo-saffron);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-about-approach__card h3 {
    margin: 0 0 16px;

    color: var(--grdo-text);

    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.grdo-about-approach__card p {
    max-width: 430px;
    margin: 0;

    color: var(--grdo-text-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   EXPERIENCE / RESEARCH / ACTION
   ========================================================= */

.grdo-about-experience {
    padding-block: 112px;
    background: var(--grdo-white);
}

.grdo-about-experience .grdo-container {
    display: flex;
    flex-direction: column;
}


/* ---------------------------------------------------------
   EACH EXPERIENCE ROW
   --------------------------------------------------------- */

.grdo-about-experience__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 100px;

    padding-top: 72px;
    padding-bottom: 72px;

    border-top: 1px solid var(--grdo-border);
}


/* First row starts immediately */

.grdo-about-experience__grid:first-child {
    padding-top: 0;
    border-top: 0;
}


/* Last row does not need bottom spacing */

.grdo-about-experience__grid:last-child {
    padding-bottom: 0;
}


/* ---------------------------------------------------------
   LEFT SIDE
   --------------------------------------------------------- */

.grdo-about-experience__grid > div:first-child {
    max-width: 760px;
}

.grdo-about-experience__grid h2 {
    max-width: 760px;

    margin: 0;

    color: var(--grdo-text);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}


/* ---------------------------------------------------------
   RIGHT SIDE
   --------------------------------------------------------- */

.grdo-about-experience__content {
    max-width: 560px;
}

.grdo-about-experience__content p {
    margin: 0 0 28px;

    color: var(--grdo-text-muted);

    font-size: 16px;
    line-height: 1.8;
}

.grdo-about-experience__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .grdo-about-experience {
        padding-block: 90px;
    }

    .grdo-about-experience__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
        gap: 60px;

        padding-top: 60px;
        padding-bottom: 60px;
    }

    .grdo-about-experience__grid:first-child {
        padding-top: 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .grdo-about-experience {
        padding-block: 72px;
    }

    .grdo-about-experience__grid {
        grid-template-columns: 1fr;
        gap: 28px;

        padding-top: 48px;
        padding-bottom: 48px;
    }

    .grdo-about-experience__grid:first-child {
        padding-top: 0;
    }

    .grdo-about-experience__grid h2 {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1;
    }

    .grdo-about-experience__content {
        max-width: 100%;
    }

}

/* =========================================================
   GRDO ECOSYSTEM
   ========================================================= */

.grdo-about-ecosystem {
    padding-block: 112px;
    background: var(--grdo-background);
}

.grdo-about-ecosystem .grdo-section-heading {
    margin-bottom: 64px;
}

.grdo-about-ecosystem__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.grdo-about-ecosystem__card {
    min-height: 360px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 32px;

    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-medium);

    background: var(--grdo-white);

    transition:
        transform var(--grdo-transition),
        box-shadow var(--grdo-transition),
        border-color var(--grdo-transition);
}

.grdo-about-ecosystem__card:hover {
    transform: translateY(-5px);

    border-color: rgba(18, 59, 93, 0.25);

    box-shadow: var(--grdo-shadow-small);
}

.grdo-about-ecosystem__number {
    display: block;

    margin-bottom: 118px;

    color: var(--grdo-saffron);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-about-ecosystem__card h3 {
    margin: 0 0 16px;

    color: var(--grdo-text);

    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.grdo-about-ecosystem__card p {
    max-width: 440px;
    margin: 0;

    color: var(--grdo-text-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ABOUT CTA
   ========================================================= */

.grdo-about-cta {
    padding-block: 96px;
    background: var(--grdo-background);
}

.grdo-about-cta__inner {
    position: relative;
    overflow: hidden;

    min-height: 540px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 80px;

    border-radius: var(--grdo-radius-medium);

    background: var(--grdo-primary);
}

.grdo-about-cta__inner::after {
    position: absolute;

    right: -120px;
    bottom: -170px;

    width: 380px;
    height: 380px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    content: "";
}

.grdo-about-cta__inner::before {
    position: absolute;

    right: -60px;
    bottom: -110px;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;

    content: "";
}

.grdo-about-cta__inner .grdo-section-eyebrow {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: var(--grdo-saffron);
}

.grdo-about-cta__inner h2 {
    position: relative;
    z-index: 2;

    max-width: 780px;

    margin: 0 0 28px;

    color: var(--grdo-white);

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.grdo-about-cta__inner > p:not(.grdo-section-eyebrow) {
    position: relative;
    z-index: 2;

    max-width: 600px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.75;
}

.grdo-about-cta__inner .grdo-button {
    position: relative;
    z-index: 2;

    margin-top: 36px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 899px) {

    .grdo-about-hero {
        padding-block: 80px 88px;
    }

    .grdo-about-intro,
    .grdo-about-approach,
    .grdo-about-experience,
    .grdo-about-ecosystem {
        padding-block: 80px;
    }

    .grdo-about-intro__grid,
    .grdo-about-experience__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .grdo-about-approach__grid,
    .grdo-about-ecosystem__grid {
        grid-template-columns: 1fr;
    }

    .grdo-about-approach__card,
    .grdo-about-ecosystem__card {
        min-height: 300px;
    }

    .grdo-about-approach__number,
    .grdo-about-ecosystem__number {
        margin-bottom: 80px;
    }

    .grdo-about-experience__grid {
        padding-block: 52px;
    }

    .grdo-about-cta {
        padding-block: 72px;
    }

    .grdo-about-cta__inner {
        min-height: 0;
        padding: 64px 48px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .grdo-about-hero {
        padding-block: 64px 72px;
    }

    .grdo-about-hero h1 {
        font-size: 46px;
        line-height: 1;
    }

    .grdo-about-intro,
    .grdo-about-approach,
    .grdo-about-experience,
    .grdo-about-ecosystem {
        padding-block: 64px;
    }

    .grdo-about-intro__statement h2 {
        font-size: 29px;
        line-height: 1.15;
    }

    .grdo-about-approach__card,
    .grdo-about-ecosystem__card {
        min-height: 280px;
        padding: 24px;
    }

    .grdo-about-approach__number,
    .grdo-about-ecosystem__number {
        margin-bottom: 64px;
    }

    .grdo-about-approach__card h3,
    .grdo-about-ecosystem__card h3 {
        font-size: 29px;
    }

    .grdo-about-experience__grid {
        gap: 32px;
        padding-block: 44px;
    }

    .grdo-about-experience__grid h2 {
        font-size: 40px;
        line-height: 1;
    }

    .grdo-about-experience__content p {
        font-size: 15px;
    }

    .grdo-about-cta {
        padding-block: 64px;
    }

    .grdo-about-cta__inner {
        padding: 48px 24px;
    }

    .grdo-about-cta__inner h2 {
        font-size: 46px;
    }

    .grdo-about-cta__inner > p:not(.grdo-section-eyebrow) {
        font-size: 15px;
    }

    .grdo-about-cta__inner .grdo-button {
        width: 100%;
    }
}
/* =========================================================
   GRDO ABOUT PAGE — FINAL CARD SPACING OVERRIDE
   ========================================================= */

/* ---------------------------------------------------------
   APPROACH + ECOSYSTEM CARDS
   --------------------------------------------------------- */

.grdo-about-approach__card,
.grdo-about-ecosystem__grid .grdo-about-approach__card {
    min-height: 0 !important;
    height: auto !important;

    padding: 38px 34px 34px !important;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* Number */

.grdo-about-approach__number {
    display: block;
    margin-bottom: 0 !important;
}


/* Heading */

.grdo-about-approach__card h3 {
    margin-top: 115px !important;
    margin-bottom: 14px !important;
}


/* Description */

.grdo-about-approach__card p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* ---------------------------------------------------------
   APPROACH GRID
   --------------------------------------------------------- */

.grdo-about-approach__grid {
    align-items: stretch;
}

.grdo-about-approach__grid .grdo-about-approach__card {
    min-height: 390px !important;
}


/* ---------------------------------------------------------
   ECOSYSTEM GRID
   --------------------------------------------------------- */

.grdo-about-ecosystem__grid {
    align-items: stretch;
}

.grdo-about-ecosystem__grid .grdo-about-approach__card {
    min-height: 390px !important;
}


/* ---------------------------------------------------------
   EXPERIENCE / RESEARCH / ACTION
   --------------------------------------------------------- */

.grdo-about-experience__grid {
    padding-top: 0;
    padding-bottom: 0;
}

.grdo-about-experience__grid + .grdo-about-experience__grid {
    margin-top: 0;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1024px) {

    .grdo-about-approach__grid .grdo-about-approach__card,
    .grdo-about-ecosystem__grid .grdo-about-approach__card {
        min-height: 350px !important;
    }

    .grdo-about-approach__card h3 {
        margin-top: 90px !important;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .grdo-about-approach__grid,
    .grdo-about-ecosystem__grid {
        grid-template-columns: 1fr !important;
    }

    .grdo-about-approach__grid .grdo-about-approach__card,
    .grdo-about-ecosystem__grid .grdo-about-approach__card {
        min-height: 0 !important;
        padding: 30px 26px 28px !important;
    }

    .grdo-about-approach__card h3 {
        margin-top: 70px !important;
        margin-bottom: 12px !important;
    }
}
/* =========================================================
   WHAT WE DO PAGE
   ========================================================= */

.grdo-what-we-do-page {
    background: var(--grdo-white);
}


/* =========================================================
   WHAT WE DO HERO
   ========================================================= */

.grdo-what-we-do-hero {
    padding-block: 112px 128px;
    background: var(--grdo-white);
}

.grdo-what-we-do-hero .grdo-container {
    display: flex;
    flex-direction: column;
}

.grdo-what-we-do-hero h1 {
    max-width: 980px;
    margin: 24px 0 0;

    color: var(--grdo-text);

    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.grdo-what-we-do-intro {
    padding-block: 112px;
    background: var(--grdo-soft);
}

.grdo-what-we-do-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 100px;
}

.grdo-what-we-do-intro__statement {
    max-width: 760px;
}

.grdo-what-we-do-intro__statement h2 {
    margin: 0;

    color: var(--grdo-text);

    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-what-we-do-intro__content {
    max-width: 560px;
    padding-top: 4px;
}

.grdo-what-we-do-intro__content p {
    margin: 0 0 28px;

    color: var(--grdo-text-muted);

    font-size: 16px;
    line-height: 1.8;
}

.grdo-what-we-do-intro__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   DETAIL SECTIONS
   ========================================================= */

.grdo-what-we-do-detail {
    padding-block: 0;
    background: var(--grdo-white);
}

.grdo-what-we-do-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 100px;

    padding-block: 96px;

    border-top: 1px solid var(--grdo-border);
}

.grdo-what-we-do-detail:first-of-type
.grdo-what-we-do-detail__grid {
    border-top: 0;
}

.grdo-what-we-do-detail__grid > div:first-child {
    max-width: 760px;
}

.grdo-what-we-do-detail__grid h2 {
    max-width: 760px;
    margin: 20px 0 0;

    color: var(--grdo-text);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-what-we-do-detail__content {
    max-width: 560px;
}

.grdo-what-we-do-detail__content p {
    margin: 0 0 28px;

    color: var(--grdo-text-muted);

    font-size: 16px;
    line-height: 1.8;
}

.grdo-what-we-do-detail__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HOW WE WORK
   ========================================================= */

.grdo-what-we-do-process {
    padding-block: 112px;
    background: var(--grdo-soft);
}

.grdo-what-we-do-process .grdo-section-heading {
    margin-bottom: 64px;
}

.grdo-what-we-do-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.grdo-what-we-do-process__card {
    display: flex;
    flex-direction: column;

    min-height: 360px;
    padding: 36px 32px;

    background: var(--grdo-white);

    border: 1px solid var(--grdo-border);
    border-radius: 12px;
}

.grdo-what-we-do-process__number {
    display: block;

    color: var(--grdo-accent);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.grdo-what-we-do-process__card h3 {
    margin: auto 0 18px;

    color: var(--grdo-text);

    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.grdo-what-we-do-process__card p {
    margin: 0;

    color: var(--grdo-text-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.grdo-what-we-do-cta {
    padding-block: 112px;
    background: var(--grdo-white);
}

.grdo-what-we-do-cta__inner {
    position: relative;
    overflow: hidden;

    padding: 88px;

    background: var(--grdo-navy);

    border-radius: 14px;
}

.grdo-what-we-do-cta__inner::after {
    content: "";

    position: absolute;
    right: -100px;
    bottom: -180px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    box-shadow:
        0 0 0 64px rgba(255, 255, 255, 0.04),
        0 0 0 128px rgba(255, 255, 255, 0.025);

    pointer-events: none;
}

.grdo-what-we-do-cta__inner .grdo-section-eyebrow {
    position: relative;
    z-index: 1;
}

.grdo-what-we-do-cta__inner h2 {
    position: relative;
    z-index: 1;

    max-width: 800px;
    margin: 24px 0 24px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.grdo-what-we-do-cta__inner > p:not(.grdo-section-eyebrow) {
    position: relative;
    z-index: 1;

    max-width: 620px;
    margin: 0 0 36px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.7;
}

.grdo-what-we-do-cta__inner .grdo-button {
    position: relative;
    z-index: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .grdo-what-we-do-hero {
        padding-block: 88px 100px;
    }

    .grdo-what-we-do-hero h1 {
        font-size: clamp(48px, 8vw, 72px);
    }

    .grdo-what-we-do-intro__grid,
    .grdo-what-we-do-detail__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .grdo-what-we-do-intro {
        padding-block: 88px;
    }

    .grdo-what-we-do-detail__grid {
        padding-block: 80px;
    }

    .grdo-what-we-do-process {
        padding-block: 88px;
    }

    .grdo-what-we-do-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grdo-what-we-do-cta {
        padding-block: 88px;
    }

    .grdo-what-we-do-cta__inner {
        padding: 64px 56px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .grdo-what-we-do-hero {
        padding-block: 64px 76px;
    }

    .grdo-what-we-do-hero h1 {
        max-width: 100%;
        margin-top: 18px;

        font-size: clamp(42px, 12vw, 58px);
        line-height: 0.98;
    }


    .grdo-what-we-do-intro {
        padding-block: 72px;
    }

    .grdo-what-we-do-intro__grid {
        gap: 40px;
    }

    .grdo-what-we-do-intro__statement h2 {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1;
    }


    .grdo-what-we-do-detail__grid {
        gap: 40px;
        padding-block: 68px;
    }

    .grdo-what-we-do-detail__grid h2 {
        margin-top: 16px;

        font-size: clamp(38px, 10vw, 52px);
        line-height: 0.98;
    }

    .grdo-what-we-do-detail__content p {
        margin-bottom: 24px;
    }


    .grdo-what-we-do-process {
        padding-block: 72px;
    }

    .grdo-what-we-do-process .grdo-section-heading {
        margin-bottom: 44px;
    }

    .grdo-what-we-do-process__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .grdo-what-we-do-process__card {
        min-height: 300px;
        padding: 30px 26px;
    }

    .grdo-what-we-do-process__card h3 {
        font-size: 28px;
    }


    .grdo-what-we-do-cta {
        padding-block: 72px;
    }

    .grdo-what-we-do-cta__inner {
        padding: 52px 28px;
        border-radius: 12px;
    }

    .grdo-what-we-do-cta__inner h2 {
        margin-top: 20px;

        font-size: clamp(42px, 11vw, 56px);
    }

    .grdo-what-we-do-cta__inner > p:not(.grdo-section-eyebrow) {
        font-size: 16px;
    }

}
/* =========================================================
   WHAT WE DO — CTA
   ========================================================= */

.grdo-what-we-do-cta {
    padding-block: 112px;
    background: #f5f6f4;
}

.grdo-what-we-do-cta__inner {
    position: relative;
    overflow: hidden;

    padding: 96px;
    background: #174568;
    border-radius: 16px;
}

.grdo-what-we-do-cta__inner::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -180px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.grdo-what-we-do-cta__inner::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: -140px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;

    pointer-events: none;
}

.grdo-what-we-do-cta__inner .grdo-section-eyebrow {
    position: relative;
    z-index: 2;

    margin: 0 0 28px;

    color: #e6a21a;
}

.grdo-what-we-do-cta__inner h2 {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 0 28px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-what-we-do-cta__inner > p:not(.grdo-section-eyebrow) {
    position: relative;
    z-index: 2;

    max-width: 620px;
    margin: 0 0 40px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.75;
}

.grdo-what-we-do-cta__inner .grdo-button {
    position: relative;
    z-index: 2;
}


/* =========================================================
   WHAT WE DO — CTA RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .grdo-what-we-do-cta {
        padding-block: 80px;
    }

    .grdo-what-we-do-cta__inner {
        padding: 64px 48px;
    }

}


@media (max-width: 600px) {

    .grdo-what-we-do-cta {
        padding-block: 56px;
    }

    .grdo-what-we-do-cta__inner {
        padding: 48px 28px;
        border-radius: 12px;
    }

    .grdo-what-we-do-cta__inner h2 {
        font-size: clamp(40px, 11vw, 54px);
    }

    .grdo-what-we-do-cta__inner > p:not(.grdo-section-eyebrow) {
        font-size: 16px;
        line-height: 1.65;
    }

}
/* =========================================================
   ECOSYSTEM PAGE
   ========================================================= */

.grdo-ecosystem-page {
    background: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.grdo-ecosystem-page__hero {
    padding-block: 112px 120px;
    background: #f5f6f4;
}

.grdo-ecosystem-page__hero h1 {
    max-width: 1050px;
    margin: 0;

    color: #17212b;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.grdo-ecosystem-page__intro {
    padding-block: 120px;
    background: #ffffff;
}

.grdo-ecosystem-page__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: 100px;
    align-items: start;
}

.grdo-ecosystem-page__intro-grid h2 {
    max-width: 760px;
    margin: 0;

    color: #17212b;
    font-size: clamp(46px, 5.2vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-ecosystem-page__content {
    max-width: 560px;
}

.grdo-ecosystem-page__content p {
    margin: 0 0 28px;

    color: #59708a;
    font-size: 16px;
    line-height: 1.8;
}

.grdo-ecosystem-page__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HOW IT CONNECTS
   ========================================================= */

.grdo-ecosystem-page__connect {
    padding-block: 112px;
    background: #f5f6f4;
}

.grdo-ecosystem-page__connect .grdo-section-heading {
    margin-bottom: 64px;
}

.grdo-ecosystem-page__connect-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.grdo-ecosystem-page__card {
    min-height: 390px;
    padding: 32px;

    display: flex;
    flex-direction: column;

    background: #ffffff;
    border: 1px solid #dce2e6;
    border-radius: 14px;
}

.grdo-ecosystem-page__card > span {
    color: #e6a21a;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.grdo-ecosystem-page__card h3 {
    margin: auto 0 18px;

    color: #17212b;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.grdo-ecosystem-page__card p {
    margin: 0;

    color: #59708a;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ECOSYSTEM MODEL
   ========================================================= */

.grdo-ecosystem-page__model {
    padding-block: 120px;
    background: #ffffff;
}

.grdo-ecosystem-page__model .grdo-section-heading {
    margin-bottom: 72px;
}


/* Diagram */

.grdo-ecosystem-page__diagram {
    position: relative;

    min-height: 620px;
    padding: 60px;

    background: #f5f6f4;
    border: 1px solid #dce2e6;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.grdo-ecosystem-page__diagram::before {
    content: "";
    position: absolute;

    width: 390px;
    height: 390px;

    border: 1px solid #dce2e6;
    border-radius: 50%;
}

.grdo-ecosystem-page__diagram::after {
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    border: 1px solid #dce2e6;
    border-radius: 50%;
}


/* Center */

.grdo-ecosystem-page__diagram-center {
    position: relative;
    z-index: 3;

    width: 190px;
    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #174568;
    border-radius: 50%;
}

.grdo-ecosystem-page__diagram-center strong {
    color: #ffffff;

    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.grdo-ecosystem-page__diagram-center span {
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    letter-spacing: 0.04em;
}


/* Diagram items */

.grdo-ecosystem-page__diagram-item {
    position: absolute;
    z-index: 4;

    width: 190px;
    min-height: 125px;
    padding: 22px;

    background: #ffffff;
    border: 1px solid #dce2e6;
    border-radius: 12px;

    box-shadow: 0 8px 30px rgba(23, 33, 43, 0.05);
}

.grdo-ecosystem-page__diagram-item span {
    display: block;
    margin-bottom: 10px;

    color: #e6a21a;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.grdo-ecosystem-page__diagram-item strong {
    display: block;

    color: #17212b;

    font-size: 18px;
    line-height: 1.1;
}

.grdo-ecosystem-page__diagram-item small {
    display: block;
    margin-top: 6px;

    color: #59708a;

    font-size: 12px;
    line-height: 1.4;
}

.grdo-ecosystem-page__diagram-item--one {
    top: 48px;
    left: 50%;

    transform: translateX(-50%);
}

.grdo-ecosystem-page__diagram-item--two {
    right: 48px;
    top: 50%;

    transform: translateY(-50%);
}

.grdo-ecosystem-page__diagram-item--three {
    bottom: 48px;
    left: 50%;

    transform: translateX(-50%);
}

.grdo-ecosystem-page__diagram-item--four {
    left: 48px;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   CURRENT INITIATIVES
   ========================================================= */

.grdo-ecosystem-page__initiatives {
    padding-block: 112px;
    background: #f5f6f4;
}

.grdo-ecosystem-page__initiatives .grdo-section-heading {
    margin-bottom: 64px;
}

.grdo-ecosystem-page__initiative-list {
    border-top: 1px solid #dce2e6;
}

.grdo-ecosystem-page__initiative {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 48px;

    padding-block: 56px;

    border-bottom: 1px solid #dce2e6;
}

.grdo-ecosystem-page__initiative-number {
    color: #e6a21a;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.grdo-ecosystem-page__initiative .grdo-section-eyebrow {
    margin-bottom: 18px;
}

.grdo-ecosystem-page__initiative h3 {
    margin: 0 0 18px;

    color: #17212b;

    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.grdo-ecosystem-page__initiative p:not(.grdo-section-eyebrow) {
    max-width: 680px;
    margin: 0;

    color: #59708a;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HOW INITIATIVES GROW
   ========================================================= */

.grdo-ecosystem-page__growth {
    padding-block: 120px;
    background: #ffffff;
}

.grdo-ecosystem-page__growth .grdo-section-heading {
    margin-bottom: 64px;
}

.grdo-ecosystem-page__growth-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.grdo-ecosystem-page__growth-grid article {
    min-height: 310px;
    padding: 30px;

    display: flex;
    flex-direction: column;

    border: 1px solid #dce2e6;
    border-radius: 14px;
}

.grdo-ecosystem-page__growth-grid span {
    color: #e6a21a;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.grdo-ecosystem-page__growth-grid h3 {
    margin: auto 0 16px;

    color: #17212b;

    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.grdo-ecosystem-page__growth-grid p {
    margin: 0;

    color: #59708a;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   PARTNERSHIP
   ========================================================= */

.grdo-ecosystem-page__partnership {
    padding-block: 120px;
    background: #f5f6f4;
}

.grdo-ecosystem-page__partnership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 100px;
}

.grdo-ecosystem-page__partnership h2 {
    max-width: 720px;
    margin: 0;

    color: #17212b;

    font-size: clamp(46px, 5.2vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}


/* =========================================================
   CTA
   ========================================================= */

.grdo-ecosystem-page__cta {
    padding-block: 112px;
    background: #ffffff;
}

.grdo-ecosystem-page__cta-inner {
    position: relative;
    overflow: hidden;

    padding: 96px;

    background: #174568;
    border-radius: 16px;
}

.grdo-ecosystem-page__cta-inner::before,
.grdo-ecosystem-page__cta-inner::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    pointer-events: none;
}

.grdo-ecosystem-page__cta-inner::before {
    width: 360px;
    height: 360px;

    right: -120px;
    bottom: -180px;
}

.grdo-ecosystem-page__cta-inner::after {
    width: 260px;
    height: 260px;

    right: -70px;
    bottom: -130px;
}

.grdo-ecosystem-page__cta-inner .grdo-section-eyebrow {
    position: relative;
    z-index: 2;

    margin-bottom: 28px;

    color: #e6a21a;
}

.grdo-ecosystem-page__cta-inner h2 {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 0 28px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-ecosystem-page__cta-inner > p:not(.grdo-section-eyebrow) {
    position: relative;
    z-index: 2;

    max-width: 650px;
    margin: 0 0 40px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.75;
}

.grdo-ecosystem-page__cta-inner .grdo-button {
    position: relative;
    z-index: 2;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .grdo-ecosystem-page__connect-grid,
    .grdo-ecosystem-page__growth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grdo-ecosystem-page__intro-grid,
    .grdo-ecosystem-page__partnership-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grdo-ecosystem-page__diagram {
        min-height: 560px;
    }

}


@media (max-width: 700px) {

    .grdo-ecosystem-page__hero {
        padding-block: 80px;
    }

    .grdo-ecosystem-page__intro,
    .grdo-ecosystem-page__model,
    .grdo-ecosystem-page__growth,
    .grdo-ecosystem-page__partnership {
        padding-block: 80px;
    }

    .grdo-ecosystem-page__connect,
    .grdo-ecosystem-page__initiatives,
    .grdo-ecosystem-page__cta {
        padding-block: 72px;
    }

    .grdo-ecosystem-page__connect-grid,
    .grdo-ecosystem-page__growth-grid {
        grid-template-columns: 1fr;
    }

    .grdo-ecosystem-page__card {
        min-height: 300px;
    }

    .grdo-ecosystem-page__initiative {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-block: 40px;
    }

    .grdo-ecosystem-page__diagram {
        min-height: auto;
        padding: 40px 20px;

        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .grdo-ecosystem-page__diagram::before,
    .grdo-ecosystem-page__diagram::after {
        display: none;
    }

    .grdo-ecosystem-page__diagram-center {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .grdo-ecosystem-page__diagram-item {
        position: static;

        width: 100%;
        min-height: auto;

        transform: none;
    }

    .grdo-ecosystem-page__cta-inner {
        padding: 56px 28px;
    }

    .grdo-ecosystem-page__cta-inner h2 {
        font-size: clamp(40px, 11vw, 54px);
    }

}
/* =========================================================
   GRDO INDIA — CAPABILITIES PAGE
   ========================================================= */

.grdo-capabilities-page {
    background: #f7f8f6;
    color: #172331;
}


/* =========================================================
   CAPABILITIES HERO
   ========================================================= */

.grdo-capabilities-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 150px 0 130px;
    background: #f7f8f6;
}

.grdo-capabilities-hero .grdo-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.grdo-capabilities-hero h1 {
    max-width: 1050px;
    margin: 28px 0 0;
    font-size: clamp(64px, 7vw, 118px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 700;
}


/* =========================================================
   INTRO
   ========================================================= */

.grdo-capabilities-intro {
    padding: 150px 0;
    background: #ffffff;
}

.grdo-capabilities-intro .grdo-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.grdo-capabilities-intro .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
    gap: 100px;
    align-items: start;
}

.grdo-capabilities-intro h2 {
    margin: 24px 0 0;
    max-width: 760px;
    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.grdo-capabilities-intro .grdo-section-heading > div:last-child {
    padding-top: 55px;
}

.grdo-capabilities-intro .grdo-section-heading > div:last-child p {
    max-width: 540px;
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.75;
    color: #58708a;
}


/* =========================================================
   CAPABILITY BLOCKS
   ========================================================= */

.grdo-capability-block {
    padding: 145px 0;
    background: #ffffff;
    border-top: 1px solid #dce2e6;
}

.grdo-capability-block--muted {
    background: #f4f6f5;
}

.grdo-capability-block .grdo-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.grdo-capability-block__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 110px;
    align-items: start;
}

.grdo-capability-block__number {
    display: block;
    margin-bottom: 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e8a100;
}

.grdo-capability-block .grdo-section-eyebrow {
    margin-bottom: 25px;
}

.grdo-capability-block h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 5vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.grdo-capability-block__grid > div:last-child {
    padding-top: 70px;
}

.grdo-capability-block__grid > div:last-child p {
    max-width: 560px;
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.75;
    color: #58708a;
}


/* =========================================================
   CAPABILITIES MODEL
   ========================================================= */

.grdo-capabilities-model {
    padding: 160px 0;
    background: #f7f8f6;
}

.grdo-capabilities-model .grdo-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.grdo-capabilities-model .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 100px;
    align-items: start;
    margin-bottom: 90px;
}

.grdo-capabilities-model h2 {
    margin: 25px 0 0;
    max-width: 800px;
    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.97;
    letter-spacing: -0.05em;
}

.grdo-capabilities-model .grdo-section-heading > p {
    max-width: 560px;
    padding-top: 58px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #58708a;
}


/* =========================================================
   FLOW CARDS
   ========================================================= */

.grdo-capabilities-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.grdo-capabilities-flow article {
    min-height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #ffffff;
    border: 1px solid #dce2e6;
    border-radius: 16px;
}

.grdo-capabilities-flow article > span {
    align-self: flex-start;
    margin-bottom: auto;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e8a100;
}

.grdo-capabilities-flow h3 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.grdo-capabilities-flow p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #58708a;
}


/* =========================================================
   CTA
   ========================================================= */

.grdo-capabilities-cta {
    padding: 90px 0;
    background: #f7f8f6;
}

.grdo-capabilities-cta .grdo-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.grdo-capabilities-cta__inner {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    padding: 110px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #174d73;
    border-radius: 0 0 20px 20px;
}

.grdo-capabilities-cta__inner::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    bottom: -340px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(255,255,255,0.035),
        0 0 0 130px rgba(255,255,255,0.025);
    pointer-events: none;
}

.grdo-capabilities-cta .grdo-section-eyebrow {
    position: relative;
    z-index: 2;
    color: #f0a400;
}

.grdo-capabilities-cta h2 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 25px 0 28px;
    color: #ffffff;
    font-size: clamp(52px, 6vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.grdo-capabilities-cta__inner > p:not(.grdo-section-eyebrow) {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 0 40px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.7;
}

.grdo-capabilities-cta .grdo-button {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .grdo-capabilities-hero {
        min-height: auto;
        padding: 110px 0 100px;
    }

    .grdo-capabilities-hero .grdo-container,
    .grdo-capabilities-intro .grdo-container,
    .grdo-capability-block .grdo-container,
    .grdo-capabilities-model .grdo-container,
    .grdo-capabilities-cta .grdo-container {
        width: min(100% - 40px, 680px);
    }

    .grdo-capabilities-hero h1 {
        font-size: clamp(54px, 11vw, 82px);
    }

    .grdo-capabilities-intro,
    .grdo-capability-block,
    .grdo-capabilities-model {
        padding: 100px 0;
    }

    .grdo-capabilities-intro .grdo-section-heading,
    .grdo-capability-block__grid,
    .grdo-capabilities-model .grdo-section-heading {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .grdo-capabilities-intro .grdo-section-heading > div:last-child,
    .grdo-capability-block__grid > div:last-child,
    .grdo-capabilities-model .grdo-section-heading > p {
        padding-top: 0;
    }

    .grdo-capabilities-intro h2,
    .grdo-capabilities-model h2 {
        font-size: clamp(48px, 9vw, 72px);
    }

    .grdo-capability-block h2 {
        font-size: clamp(46px, 9vw, 70px);
    }

    .grdo-capabilities-flow {
        grid-template-columns: 1fr 1fr;
    }

    .grdo-capabilities-cta {
        padding: 40px 0;
    }

    .grdo-capabilities-cta__inner {
        min-height: 500px;
        padding: 75px 55px;
    }

}


@media (max-width: 600px) {

    .grdo-capabilities-hero {
        padding: 90px 0 80px;
    }

    .grdo-capabilities-hero h1 {
        font-size: clamp(46px, 13vw, 64px);
    }

    .grdo-capabilities-intro,
    .grdo-capability-block,
    .grdo-capabilities-model {
        padding: 80px 0;
    }

    .grdo-capabilities-intro h2,
    .grdo-capabilities-model h2,
    .grdo-capability-block h2 {
        font-size: 46px;
    }

    .grdo-capabilities-flow {
        grid-template-columns: 1fr;
    }

    .grdo-capabilities-flow article {
        min-height: 270px;
    }

    .grdo-capabilities-cta {
        padding: 20px 0;
    }

    .grdo-capabilities-cta .grdo-container {
        width: 100%;
    }

    .grdo-capabilities-cta__inner {
        min-height: 520px;
        padding: 65px 30px;
        border-radius: 0;
    }

    .grdo-capabilities-cta h2 {
        font-size: 48px;
    }

}
/* =========================================================
   GRDO INDIA — IMPACT PAGE
   ========================================================= */

.grdo-impact-page {
    background: var(--grdo-background);
}


/* =========================================================
   IMPACT HERO
   ========================================================= */

.grdo-impact-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding-block: 150px 130px;
    background: var(--grdo-background);
}

.grdo-impact-hero h1 {
    max-width: 1050px;
    margin: 28px 0 0;
    color: var(--grdo-text);
    font-size: clamp(64px, 7vw, 116px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}


/* =========================================================
   IMPACT INTRO
   ========================================================= */

.grdo-impact-intro {
    padding-block: 150px;
    background: var(--grdo-white);
}

.grdo-impact-intro .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    gap: 100px;
    align-items: start;
}

.grdo-impact-intro h2 {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.grdo-impact-intro .grdo-section-heading > div:last-child {
    padding-top: 55px;
}

.grdo-impact-intro .grdo-section-heading > div:last-child p {
    max-width: 560px;
    margin: 0 0 30px;
    color: var(--grdo-text-muted);
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   IMPACT AREAS
   ========================================================= */

.grdo-impact-areas {
    background: var(--grdo-white);
}

.grdo-impact-area {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 70px;
    padding-block: 110px;
    border-top: 1px solid var(--grdo-border);
}

.grdo-impact-area:last-child {
    border-bottom: 1px solid var(--grdo-border);
}

.grdo-impact-area__number {
    padding-top: 5px;
    color: var(--grdo-saffron);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-impact-area__content {
    max-width: 900px;
}

.grdo-impact-area__content .grdo-section-eyebrow {
    margin-bottom: 24px;
}

.grdo-impact-area__content h2 {
    max-width: 850px;
    margin: 0 0 36px;
    color: var(--grdo-text);
    font-size: clamp(44px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.grdo-impact-area__content p:not(.grdo-section-eyebrow) {
    max-width: 650px;
    margin: 0 0 24px;
    color: var(--grdo-text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.grdo-impact-area__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   IMPACT MODEL
   ========================================================= */

.grdo-impact-model {
    padding-block: 160px;
    background: var(--grdo-background);
}

.grdo-impact-model .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 100px;
    align-items: start;
    margin-bottom: 90px;
}

.grdo-impact-model h2 {
    margin: 24px 0 0;
    max-width: 800px;
    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.97;
    letter-spacing: -0.05em;
}

.grdo-impact-model .grdo-section-heading > p {
    max-width: 560px;
    padding-top: 58px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   IMPACT FLOW
   ========================================================= */

.grdo-impact-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.grdo-impact-flow article {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border: 1px solid var(--grdo-border);
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-white);
}

.grdo-impact-flow article > span {
    align-self: flex-start;
    margin-bottom: auto;
    color: var(--grdo-saffron);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.grdo-impact-flow h3 {
    margin: 0 0 15px;
    color: var(--grdo-text);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.grdo-impact-flow p {
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   LONG-TERM PERSPECTIVE
   ========================================================= */

.grdo-impact-long-term {
    padding-block: 150px;
    background: var(--grdo-white);
}

.grdo-impact-long-term .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 100px;
    align-items: start;
}

.grdo-impact-long-term h2 {
    max-width: 800px;
    margin: 24px 0 0;
    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.97;
    letter-spacing: -0.05em;
}

.grdo-impact-long-term .grdo-section-heading > div:last-child {
    padding-top: 58px;
}

.grdo-impact-long-term .grdo-section-heading > div:last-child p {
    max-width: 560px;
    margin: 0 0 30px;
    color: var(--grdo-text-muted);
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   CTA
   ========================================================= */

.grdo-impact-cta {
    padding-block: 90px;
    background: var(--grdo-background);
}

.grdo-impact-cta__inner {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px;
    border-radius: var(--grdo-radius-medium);
    background: var(--grdo-primary);
}

.grdo-impact-cta__inner::after {
    position: absolute;
    right: -170px;
    bottom: -330px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(255, 255, 255, 0.035),
        0 0 0 130px rgba(255, 255, 255, 0.025);
    content: "";
    pointer-events: none;
}

.grdo-impact-cta .grdo-section-eyebrow {
    position: relative;
    z-index: 2;
    color: var(--grdo-saffron);
}

.grdo-impact-cta h2 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 25px 0 28px;
    color: var(--grdo-white);
    font-size: clamp(52px, 6vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.grdo-impact-cta__inner > p:not(.grdo-section-eyebrow) {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.7;
}

.grdo-impact-cta .grdo-button {
    position: relative;
    z-index: 2;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 899px) {

    .grdo-impact-hero {
        min-height: auto;
        padding-block: 110px 100px;
    }

    .grdo-impact-hero h1 {
        font-size: clamp(54px, 11vw, 82px);
    }

    .grdo-impact-intro,
    .grdo-impact-model,
    .grdo-impact-long-term {
        padding-block: 100px;
    }

    .grdo-impact-intro .grdo-section-heading,
    .grdo-impact-model .grdo-section-heading,
    .grdo-impact-long-term .grdo-section-heading {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .grdo-impact-intro .grdo-section-heading > div:last-child,
    .grdo-impact-model .grdo-section-heading > p,
    .grdo-impact-long-term .grdo-section-heading > div:last-child {
        padding-top: 0;
    }

    .grdo-impact-intro h2,
    .grdo-impact-model h2,
    .grdo-impact-long-term h2 {
        font-size: clamp(48px, 9vw, 72px);
    }

    .grdo-impact-area {
        grid-template-columns: 55px minmax(0, 1fr);
        gap: 35px;
        padding-block: 80px;
    }

    .grdo-impact-area__content h2 {
        font-size: clamp(44px, 8vw, 68px);
    }

    .grdo-impact-flow {
        grid-template-columns: 1fr 1fr;
    }

    .grdo-impact-cta {
        padding-block: 50px;
    }

    .grdo-impact-cta__inner {
        min-height: 500px;
        padding: 75px 55px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

    .grdo-impact-hero {
        padding-block: 85px 75px;
    }

    .grdo-impact-hero h1 {
        font-size: clamp(46px, 13vw, 64px);
    }

    .grdo-impact-intro,
    .grdo-impact-model,
    .grdo-impact-long-term {
        padding-block: 75px;
    }

    .grdo-impact-intro h2,
    .grdo-impact-model h2,
    .grdo-impact-long-term h2 {
        font-size: 46px;
    }

    .grdo-impact-area {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-block: 65px;
    }

    .grdo-impact-area__content h2 {
        font-size: 44px;
    }

    .grdo-impact-area__content p:not(.grdo-section-eyebrow) {
        font-size: 16px;
    }

    .grdo-impact-flow {
        grid-template-columns: 1fr;
    }

    .grdo-impact-flow article {
        min-height: 270px;
    }

    .grdo-impact-cta {
        padding-block: 20px;
    }

    .grdo-impact-cta__inner {
        min-height: 520px;
        padding: 65px 30px;
        border-radius: 0;
    }

    .grdo-impact-cta h2 {
        font-size: 48px;
    }

}
/* =========================================================
   PARTNER WITH GRDO PAGE
   ========================================================= */

.grdo-partner-page {
    background: var(--grdo-white);
}


/* HERO */

.grdo-partner-hero {
    background: var(--grdo-primary);
    color: var(--grdo-white);
}

.grdo-partner-hero h1 {
    max-width: 900px;
}


/* INTRO */

.grdo-partner-intro {
    padding-block: 120px;
    background: var(--grdo-white);
}

.grdo-partner-intro .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
    gap: 100px;
    align-items: start;
}

.grdo-partner-intro h2 {
    max-width: 800px;
}

.grdo-partner-intro .grdo-section-heading > div:last-child {
    max-width: 560px;
}

.grdo-partner-intro .grdo-section-heading > div:last-child p {
    margin: 0 0 28px;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-partner-intro .grdo-section-heading > div:last-child p:last-child {
    margin-bottom: 0;
}


/* PARTNERSHIP TYPES */

.grdo-partner-types {
    padding-block: 112px;
    background: var(--grdo-background);
}

.grdo-partner-type {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 80px;
    padding-block: 72px;
    border-top: 1px solid var(--grdo-border);
}

.grdo-partner-type:first-child {
    padding-top: 0;
    border-top: 0;
}

.grdo-partner-type:last-child {
    padding-bottom: 0;
}

.grdo-partner-type__number {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--grdo-saffron);
    letter-spacing: 0.08em;
}

.grdo-partner-type__content {
    max-width: 850px;
}

.grdo-partner-type__content h2 {
    margin: 0 0 28px;
    color: var(--grdo-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.grdo-partner-type__content > p:last-child {
    max-width: 680px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* COLLABORATION PROCESS */

.grdo-partner-process {
    padding-block: 120px;
    background: var(--grdo-white);
}

.grdo-partner-process .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
    gap: 100px;
    align-items: start;
}

.grdo-partner-process .grdo-section-heading > p {
    max-width: 560px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-partner-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    border-top: 1px solid var(--grdo-border);
    border-bottom: 1px solid var(--grdo-border);
}

.grdo-partner-flow article {
    min-height: 280px;
    padding: 40px 32px;
    border-right: 1px solid var(--grdo-border);
}

.grdo-partner-flow article:last-child {
    border-right: 0;
}

.grdo-partner-flow span {
    display: block;
    margin-bottom: 54px;
    color: var(--grdo-saffron);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.grdo-partner-flow h3 {
    margin: 0 0 16px;
    color: var(--grdo-text);
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.grdo-partner-flow p {
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* SHARED APPROACH */

.grdo-partner-value {
    padding-block: 120px;
    background: var(--grdo-background);
}

.grdo-partner-value .grdo-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
    gap: 100px;
    align-items: start;
}

.grdo-partner-value .grdo-section-heading > div:last-child {
    max-width: 560px;
}

.grdo-partner-value .grdo-section-heading > div:last-child p {
    margin: 0 0 28px;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-partner-value__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    border-top: 1px solid var(--grdo-border);
    border-bottom: 1px solid var(--grdo-border);
}

.grdo-partner-value__grid article {
    padding: 40px 32px;
    min-height: 220px;
    border-right: 1px solid var(--grdo-border);
}

.grdo-partner-value__grid article:last-child {
    border-right: 0;
}

.grdo-partner-value__grid span {
    display: block;
    margin-bottom: 40px;
    color: var(--grdo-saffron);
    font-size: 14px;
    font-weight: 700;
}

.grdo-partner-value__grid h3 {
    margin: 0 0 12px;
    color: var(--grdo-text);
    font-family: "Manrope", sans-serif;
    font-size: 23px;
}

.grdo-partner-value__grid p {
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* CTA */

.grdo-partner-cta {
    padding-block: 112px;
    background: var(--grdo-primary-dark);
}

.grdo-partner-cta__inner {
    max-width: 900px;
}

.grdo-partner-cta .grdo-section-eyebrow {
    color: var(--grdo-saffron);
}

.grdo-partner-cta h2 {
    max-width: 850px;
    margin: 0 0 28px;
    color: var(--grdo-white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.grdo-partner-cta p:not(.grdo-section-eyebrow) {
    max-width: 620px;
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}


/* TABLET */

@media (max-width: 900px) {

    .grdo-partner-intro,
    .grdo-partner-process,
    .grdo-partner-value {
        padding-block: 90px;
    }

    .grdo-partner-intro .grdo-section-heading,
    .grdo-partner-process .grdo-section-heading,
    .grdo-partner-value .grdo-section-heading {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .grdo-partner-type {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 40px;
    }

    .grdo-partner-flow,
    .grdo-partner-value__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grdo-partner-flow article:nth-child(2) {
        border-right: 0;
    }

    .grdo-partner-flow article:nth-child(-n+2) {
        border-bottom: 1px solid var(--grdo-border);
    }

    .grdo-partner-value__grid article:nth-child(2) {
        border-right: 0;
    }

    .grdo-partner-value__grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--grdo-border);
    }
}


/* MOBILE */

@media (max-width: 640px) {

    .grdo-partner-intro,
    .grdo-partner-process,
    .grdo-partner-value {
        padding-block: 72px;
    }

    .grdo-partner-types {
        padding-block: 72px;
    }

    .grdo-partner-type {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-block: 52px;
    }

    .grdo-partner-type__content h2 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .grdo-partner-flow,
    .grdo-partner-value__grid {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .grdo-partner-flow article,
    .grdo-partner-value__grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--grdo-border);
    }

    .grdo-partner-flow article:last-child,
    .grdo-partner-value__grid article:last-child {
        border-bottom: 0;
    }

    .grdo-partner-flow article:nth-child(2),
    .grdo-partner-value__grid article:nth-child(2) {
        border-right: 0;
    }

    .grdo-partner-flow article:nth-child(-n+2),
    .grdo-partner-value__grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--grdo-border);
    }

    .grdo-partner-cta {
        padding-block: 80px;
    }

    .grdo-partner-cta h2 {
        font-size: clamp(40px, 10vw, 56px);
    }
}
/* Partner Page — Hero Contrast Fix */

.grdo-partner-hero h1 {
    color: var(--grdo-white);
}

.grdo-partner-hero .grdo-section-eyebrow {
    color: var(--grdo-saffron);
}

.grdo-partner-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
}

@media (max-width: 640px) {
    .grdo-partner-hero {
        min-height: 360px;
    }
}
/* =========================================================
   GRDO CONTACT SECTION
   ========================================================= */

.grdo-contact {
    padding-block: 120px;
    background: var(--grdo-background);
    border-top: 1px solid var(--grdo-border);
}

.grdo-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
    gap: 100px;
    align-items: start;
}

.grdo-contact__intro {
    max-width: 780px;
}

.grdo-contact__intro h2 {
    margin: 0 0 32px;
    color: var(--grdo-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.grdo-contact__intro > p:last-child {
    max-width: 620px;
    margin: 0;
    color: var(--grdo-text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.grdo-contact__details {
    border-top: 1px solid var(--grdo-border);
}

.grdo-contact__item {
    padding: 30px 0;
    border-bottom: 1px solid var(--grdo-border);
}

.grdo-contact__item span {
    display: block;
    margin-bottom: 12px;
    color: var(--grdo-saffron);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.grdo-contact__item a {
    color: var(--grdo-text);
    font-size: 17px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.grdo-contact__item a:hover {
    color: var(--grdo-green);
}


/* MOBILE */

@media (max-width: 900px) {

    .grdo-contact {
        padding-block: 90px;
    }

    .grdo-contact__grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}


@media (max-width: 640px) {

    .grdo-contact {
        padding-block: 72px;
    }

    .grdo-contact__grid {
        gap: 48px;
    }

    .grdo-contact__intro h2 {
        font-size: clamp(42px, 11vw, 58px);
    }

    .grdo-contact__item {
        padding: 26px 0;
    }
}
/* =========================================================
   GLOBAL FOOTER
   ========================================================= */

.site-footer {
    padding-top: 88px;
    background: var(--grdo-primary-dark);
    color: var(--grdo-white);
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 100px;
    padding-bottom: 72px;
}

.site-footer__brand {
    max-width: 520px;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--grdo-white);
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.site-footer__brand p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.8;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__column > span {
    margin-bottom: 22px;
    color: var(--grdo-saffron);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.site-footer__column a {
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__column a:hover {
    color: var(--grdo-white);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.6;
}


/* TABLET */

@media (max-width: 900px) {

    .site-footer {
        padding-top: 72px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-bottom: 56px;
    }
}


/* MOBILE */

@media (max-width: 640px) {

    .site-footer {
        padding-top: 64px;
    }

    .site-footer__main {
        gap: 48px;
    }

    .site-footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }
}
/* =========================================================
   GRDO HERO — VISUAL ENHANCEMENT
   ========================================================= */

.grdo-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.grdo-hero__ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.grdo-hero__grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(
            rgba(18, 59, 93, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18, 59, 93, 0.035) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 30%,
        black 75%,
        transparent
    );
    opacity: 0.6;
}

.grdo-hero__orb {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(2px);
}

.grdo-hero__orb--one {
    width: 420px;
    height: 420px;
    top: -180px;
    right: 5%;
    background: rgba(47, 107, 79, 0.08);
}

.grdo-hero__orb--two {
    width: 300px;
    height: 300px;
    right: 32%;
    bottom: -170px;
    background: rgba(217, 154, 43, 0.07);
}


/* HERO VISUAL */

.grdo-hero__visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grdo-hero__glass-card {
    position: relative;
    width: min(100%, 560px);
    min-height: 460px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow:
        0 30px 80px rgba(18, 59, 93, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: rotate(1deg);
    animation: grdoHeroFloat 7s ease-in-out infinite;
}

.grdo-hero__glass-top,
.grdo-hero__glass-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.grdo-hero__visual-label,
.grdo-hero__status,
.grdo-hero__glass-bottom {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.grdo-hero__visual-label {
    color: var(--grdo-primary);
}

.grdo-hero__status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--grdo-green);
}

.grdo-hero__status i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: var(--grdo-green);
    box-shadow: 0 0 0 5px rgba(47, 107, 79, 0.08);
}


/* NETWORK */

.grdo-hero__network {
    position: relative;
    min-height: 350px;
    margin-top: 10px;
}

.grdo-hero__visual-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: rgba(18, 59, 93, 0.88);
    color: var(--grdo-white);
    box-shadow:
        0 20px 50px rgba(18, 59, 93, 0.20),
        0 0 0 18px rgba(255, 255, 255, 0.28);
}

.grdo-hero__visual-core strong {
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    letter-spacing: -0.04em;
}

.grdo-hero__visual-core small {
    margin-top: 2px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08em;
}

.grdo-hero__node {
    position: absolute;
    z-index: 4;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--grdo-text);
    box-shadow: 0 10px 25px rgba(18, 59, 93, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.grdo-hero__node--one {
    top: 42px;
    left: 20px;
}

.grdo-hero__node--two {
    top: 70px;
    right: 8px;
}

.grdo-hero__node--three {
    right: 55px;
    bottom: 28px;
}

.grdo-hero__network-line {
    position: absolute;
    z-index: 1;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(
        90deg,
        rgba(18, 59, 93, 0.08),
        rgba(47, 107, 79, 0.35),
        rgba(18, 59, 93, 0.08)
    );
}

.grdo-hero__network-line--one {
    width: 220px;
    top: 105px;
    left: 110px;
    transform: rotate(24deg);
}

.grdo-hero__network-line--two {
    width: 220px;
    top: 125px;
    right: 105px;
    transform: rotate(-22deg);
}

.grdo-hero__network-line--three {
    width: 210px;
    bottom: 105px;
    right: 130px;
    transform: rotate(25deg);
}


/* BOTTOM */

.grdo-hero__glass-bottom {
    justify-content: flex-start;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 59, 93, 0.10);
    color: var(--grdo-text-muted);
}

.grdo-hero__glass-bottom span:nth-child(even) {
    color: var(--grdo-saffron);
}


/* MOTION */

@keyframes grdoHeroFloat {

    0%,
    100% {
        transform: rotate(1deg) translateY(0);
    }

    50% {
        transform: rotate(1deg) translateY(-7px);
    }
}


/* TABLET */

@media (max-width: 1000px) {

    .grdo-hero__inner {
        grid-template-columns: 1fr;
    }

    .grdo-hero__visual {
        min-height: 480px;
        margin-top: 20px;
    }

    .grdo-hero__glass-card {
        max-width: 600px;
    }
}


/* MOBILE */

@media (max-width: 640px) {

    .grdo-hero__visual {
        min-height: 400px;
    }

    .grdo-hero__glass-card {
        min-height: 350px;
        padding: 20px;
        border-radius: 18px;
    }

    .grdo-hero__network {
        min-height: 270px;
    }

    .grdo-hero__visual-core {
        width: 110px;
        height: 110px;
    }

    .grdo-hero__visual-core strong {
        font-size: 24px;
    }

    .grdo-hero__node {
        padding: 8px 10px;
        font-size: 8px;
    }

    .grdo-hero__node--one {
        top: 25px;
        left: 0;
    }

    .grdo-hero__node--two {
        top: 48px;
        right: 0;
    }

    .grdo-hero__node--three {
        right: 15px;
        bottom: 15px;
    }

    .grdo-hero__glass-bottom {
        font-size: 9px;
    }

    .grdo-hero__grid {
        background-size: 50px 50px;
    }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .grdo-hero__glass-card, {
        animation: none;
    }

}/* =========================================================
   GRDO ECOSYSTEM — INTERACTIVE VISUAL
   ========================================================= */

.grdo-ecosystem {
    position: relative;
    overflow: hidden;
    background: var(--grdo-background);
}

.grdo-ecosystem__interactive {
    position: relative;
    min-height: 620px;
    margin-top: 72px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(47, 107, 79, 0.08),
            transparent 32%
        ),
        rgba(255, 255, 255, 0.42);
    box-shadow:
        0 25px 70px rgba(18, 59, 93, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* ---------------------------------------------------------
   CONNECTION LINES
   --------------------------------------------------------- */

.grdo-ecosystem__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.grdo-ecosystem__line {
    fill: none;
    stroke: rgba(18, 59, 93, 0.13);
    stroke-width: 1.5;
    stroke-dasharray: 5 8;
    transition:
        stroke 0.35s ease,
        stroke-width 0.35s ease,
        opacity 0.35s ease;
    animation: grdoEcosystemLineFlow 12s linear infinite;
}

.grdo-ecosystem__line.is-active {
    stroke: var(--grdo-green);
    stroke-width: 2.5;
    opacity: 1;
}


/* ---------------------------------------------------------
   CENTRAL NODE
   --------------------------------------------------------- */

.grdo-ecosystem__center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.grdo-ecosystem__center-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(47, 107, 79, 0.20);
    border-radius: 50%;
    animation: grdoEcosystemPulse 5s ease-in-out infinite;
}

.grdo-ecosystem__center-ring::before,
.grdo-ecosystem__center-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(18, 59, 93, 0.08);
}

.grdo-ecosystem__center-ring::before {
    inset: 16px;
}

.grdo-ecosystem__center-ring::after {
    inset: 32px;
}

.grdo-ecosystem__center-core {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(18, 59, 93, 0.90);
    color: var(--grdo-white);
    box-shadow:
        0 20px 45px rgba(18, 59, 93, 0.18),
        0 0 0 10px rgba(255, 255, 255, 0.32);
}

.grdo-ecosystem__center-core strong {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.grdo-ecosystem__center-core small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.grdo-ecosystem__center-label {
    position: absolute;
    top: calc(100% + 22px);
    white-space: nowrap;
    color: var(--grdo-text-muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   INITIATIVE CARDS
   --------------------------------------------------------- */

.grdo-ecosystem__nodes {
    position: absolute;
    inset: 0;
}

.grdo-ecosystem__item {
    position: absolute;
    z-index: 6;
    width: 290px;
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.60);
    box-shadow:
        0 15px 40px rgba(18, 59, 93, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: default;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.grdo-ecosystem__item--one {
    top: 70px;
    left: 7%;
}

.grdo-ecosystem__item--two {
    top: 72px;
    right: 7%;
}

.grdo-ecosystem__item--three {
    right: 7%;
    bottom: 55px;
}

.grdo-ecosystem__item:hover,
.grdo-ecosystem__item:focus,
.grdo-ecosystem__item.is-active {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(47, 107, 79, 0.25);
    box-shadow:
        0 22px 55px rgba(18, 59, 93, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-7px);
    outline: none;
}


/* CARD CONTENT */

.grdo-ecosystem__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.grdo-ecosystem__number {
    color: var(--grdo-saffron);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.grdo-ecosystem__dot {
    width: 8px;
    height: 8px;
    border: 2px solid var(--grdo-green);
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s ease;
}

.grdo-ecosystem__item.is-active .grdo-ecosystem__dot,
.grdo-ecosystem__item:hover .grdo-ecosystem__dot {
    background: var(--grdo-green);
}

.grdo-ecosystem__item h3 {
    margin: 0 0 12px;
    color: var(--grdo-text);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.grdo-ecosystem__item p {
    max-width: 230px;
    margin: 0 0 20px;
    color: var(--grdo-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.grdo-ecosystem__item a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--grdo-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.grdo-ecosystem__item a span {
    transition: transform 0.25s ease;
}

.grdo-ecosystem__item:hover a span,
.grdo-ecosystem__item.is-active a span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   INTERACTION HINT
   --------------------------------------------------------- */

.grdo-ecosystem__hint {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grdo-text-muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
}

.grdo-ecosystem__hint span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grdo-green);
    animation: grdoEcosystemHint 2s ease-in-out infinite;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.grdo-ecosystem__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 34px;
}

.grdo-ecosystem__footer > span {
    color: var(--grdo-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.grdo-ecosystem__footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--grdo-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.grdo-ecosystem__footer a span {
    transition: transform 0.25s ease;
}

.grdo-ecosystem__footer a:hover span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   ANIMATIONS
   --------------------------------------------------------- */

@keyframes grdoEcosystemLineFlow {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -120;
    }
}

@keyframes grdoEcosystemPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes grdoEcosystemHint {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .grdo-ecosystem__interactive {
        min-height: 680px;
    }

    .grdo-ecosystem__item {
        width: 250px;
    }

    .grdo-ecosystem__item--one {
        left: 4%;
    }

    .grdo-ecosystem__item--two,
    .grdo-ecosystem__item--three {
        right: 4%;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .grdo-ecosystem__interactive {
        min-height: auto;
        padding: 28px 20px;
        border-radius: 20px;
        background:
            radial-gradient(
                circle at 50% 12%,
                rgba(47, 107, 79, 0.08),
                transparent 30%
            ),
            rgba(255, 255, 255, 0.45);
    }

    .grdo-ecosystem__lines {
        display: none;
    }

    .grdo-ecosystem__center {
        position: relative;
        top: auto;
        left: auto;
        width: 150px;
        height: 150px;
        margin: 0 auto 60px;
        transform: none;
    }

    .grdo-ecosystem__center-core {
        width: 100px;
        height: 100px;
    }

    .grdo-ecosystem__center-core strong {
        font-size: 24px;
    }

    .grdo-ecosystem__center-label {
        top: calc(100% + 15px);
    }

    .grdo-ecosystem__nodes {
        position: relative;
        inset: auto;
        display: grid;
        gap: 14px;
    }

    .grdo-ecosystem__item,
    .grdo-ecosystem__item--one,
    .grdo-ecosystem__item--two,
    .grdo-ecosystem__item--three {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        min-height: auto;
        padding: 22px;
    }

    .grdo-ecosystem__item:hover,
    .grdo-ecosystem__item:focus,
    .grdo-ecosystem__item.is-active {
        transform: translateY(-3px);
    }

    .grdo-ecosystem__hint {
        display: none;
    }

    .grdo-ecosystem__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .grdo-ecosystem__footer > span {
        line-height: 1.6;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .grdo-ecosystem__line,
    .grdo-ecosystem__center-ring,
    .grdo-ecosystem__hint span {
        animation: none;
    }

    .grdo-ecosystem__item {
        transition: none;
    }
}
/* =========================================================
   ECOSYSTEM — CARD OVERLAP FIX
   ========================================================= */

@media (min-width: 701px) {

    .grdo-ecosystem__item {
        box-sizing: border-box;
        height: 230px;
        min-height: 230px;
    }

    .grdo-ecosystem__item--one {
        top: 55px;
        left: 7%;
    }

    .grdo-ecosystem__item--two {
        top: 55px;
        right: 7%;
    }

    .grdo-ecosystem__item--three {
        top: auto;
        right: 7%;
        bottom: 45px;
    }

}
/* =========================================================
   ECOSYSTEM — CENTRAL LABEL FIX
   ========================================================= */

.grdo-ecosystem__center-label {
    top: calc(100% + 18px) !important;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    margin: 0;
    color: var(--grdo-text-muted) !important;
    font-family: "Inter", sans-serif;
    font-size: 11px !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
/* =========================================================
   GRDO ECOSYSTEM — FINAL COMPOSITION REFINEMENT
   ========================================================= */

@media (min-width: 701px) {

    /* Give every card enough room without forcing content out */
    .grdo-ecosystem__item {
        box-sizing: border-box;
        height: auto;
        min-height: 215px;
        display: flex;
        flex-direction: column;
    }

    /* Keep the CTA inside the card */
    .grdo-ecosystem__item a {
        margin-top: auto;
    }

    /* Better triangular composition */
    .grdo-ecosystem__item--one {
        top: 55px;
        left: 6%;
    }

    .grdo-ecosystem__item--two {
        top: 55px;
        right: 6%;
    }

    .grdo-ecosystem__item--three {
        top: auto;
        right: auto;
        bottom: 45px;
        left: 18%;
    }

    /* Softer, more visible connection lines */
    .grdo-ecosystem__line {
        stroke: rgba(18, 59, 93, 0.18);
        stroke-width: 1.8;
    }

    .grdo-ecosystem__line.is-active {
        stroke: var(--grdo-green);
        stroke-width: 2.8;
    }

    /* Refined glass */
    .grdo-ecosystem__item {
        background: rgba(255, 255, 255, 0.54);
        border-color: rgba(255, 255, 255, 0.78);
    }

    .grdo-ecosystem__item:hover,
    .grdo-ecosystem__item:focus,
    .grdo-ecosystem__item.is-active {
        background: rgba(255, 255, 255, 0.76);
    }

    /* More restrained central ring */
    .grdo-ecosystem__center-ring {
        opacity: 0.65;
    }

    /* Accessible but designed focus state */
    .grdo-ecosystem__item:focus {
        outline: none;
        box-shadow:
            0 22px 55px rgba(18, 59, 93, 0.12),
            0 0 0 3px rgba(47, 107, 79, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
}


/* =========================================================
   MOBILE — KEEP CARDS NATURAL
   ========================================================= */

@media (max-width: 700px) {

    .grdo-ecosystem__item {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .grdo-ecosystem__item a {
        margin-top: 4px;
    }

    .grdo-ecosystem__item:focus {
        outline: none;
        box-shadow:
            0 16px 35px rgba(18, 59, 93, 0.10),
            0 0 0 3px rgba(47, 107, 79, 0.15);
    }
}
/* =========================================================
   GRDO ECOSYSTEM — DESKTOP GEOMETRY FIX
   ========================================================= */

@media (min-width: 701px) {

    .grdo-ecosystem__interactive {
        min-height: 720px;
    }

    .grdo-ecosystem__item {
        width: 290px;
        height: 235px;
        min-height: 235px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .grdo-ecosystem__item a {
        margin-top: auto;
    }

    /* Top-left */
    .grdo-ecosystem__item--one {
        top: 55px;
        left: 6%;
    }

    /* Top-right */
    .grdo-ecosystem__item--two {
        top: 55px;
        right: 6%;
    }

    /* Bottom-left — completely separated */
    .grdo-ecosystem__item--three {
        top: auto;
        right: auto;
        bottom: 45px;
        left: 6%;
    }

    /* Central node */
    .grdo-ecosystem__center {
        top: 48%;
    }

    /* Make the lines slightly more visible */
    .grdo-ecosystem__line {
        stroke: rgba(18, 59, 93, 0.20);
        stroke-width: 1.8;
    }

    .grdo-ecosystem__line.is-active {
        stroke: var(--grdo-green);
        stroke-width: 2.8;
    }

}
@media (min-width: 701px) {

    .grdo-ecosystem__item--three {
        left: 50%;
        right: auto;
        bottom: 38px;
        transform: translateX(-50%);
    }

    .grdo-ecosystem__item--three:hover,
    .grdo-ecosystem__item--three:focus,
    .grdo-ecosystem__item--three.is-active {
        transform: translateX(-50%) translateY(-7px);
    }

}
/* =========================================================
   GRDO ECOSYSTEM — FINAL DESKTOP LAYOUT
   ========================================================= */

@media (min-width: 701px) {

    .grdo-ecosystem__interactive {
        min-height: 720px;
    }

    .grdo-ecosystem__item {
        width: 290px;
        min-height: 215px;
        height: 215px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .grdo-ecosystem__item a {
        margin-top: auto;
    }

    /* 01 — upper left */
    .grdo-ecosystem__item--one {
        top: 55px !important;
        left: 6% !important;
        right: auto !important;
        bottom: auto !important;
        transform: none;
    }

    /* 02 — upper right */
    .grdo-ecosystem__item--two {
        top: 55px !important;
        right: 6% !important;
        left: auto !important;
        bottom: auto !important;
        transform: none;
    }

    /* 03 — bottom centre */
    .grdo-ecosystem__item--three {
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        bottom: 42px !important;
        transform: translateX(-50%);
    }

    .grdo-ecosystem__item--three:hover,
    .grdo-ecosystem__item--three:focus,
    .grdo-ecosystem__item--three.is-active {
        transform: translateX(-50%) translateY(-7px);
    }

    /* Central GRDO */
    .grdo-ecosystem__center {
        top: 43% !important;
        left: 50% !important;
    }

    /* Connection lines */
    .grdo-ecosystem__line {
        stroke: rgba(18, 59, 93, 0.18);
        stroke-width: 1.8;
    }

    .grdo-ecosystem__line.is-active {
        stroke: var(--grdo-green);
        stroke-width: 2.8;
    }

    /* Designed keyboard focus */
    .grdo-ecosystem__item:focus {
        outline: none;
        box-shadow:
            0 22px 55px rgba(18, 59, 93, 0.12),
            0 0 0 3px rgba(47, 107, 79, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
}
/* =========================================================
   ECOSYSTEM — KEEP LINKS INSIDE CARDS
   ========================================================= */

@media (min-width: 701px) {

    .grdo-ecosystem__item {
        position: absolute;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .grdo-ecosystem__item a {
        position: static !important;
        inset: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;

        display: inline-flex;
        align-items: center;

        width: fit-content;
        margin-top: auto !important;

        padding: 0 !important;

        transform: none;
    }

    .grdo-ecosystem__item a:hover {
        transform: translateX(4px);
    }

}
@media (min-width: 701px) {

    .grdo-ecosystem__item {
        min-height: 235px;
        height: 235px;
        padding: 28px;
    }

}
/* =========================================================
   GRDO ECOSYSTEM — DEFINITIVE CARD LINK FIX
   ========================================================= */

.grdo-ecosystem__item {
    position: absolute !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    height: 235px !important;
    min-height: 235px !important;
    padding: 28px !important;
}

/* Force every initiative link to belong to its card */
.grdo-ecosystem__item > a {
    position: absolute !important;

    top: auto !important;
    right: auto !important;
    bottom: 25px !important;
    left: 28px !important;

    display: inline-flex !important;
    width: max-content !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
}

/* Small interaction */
.grdo-ecosystem__item > a:hover {
    transform: translateX(4px) !important;
}

/* Make sure card text has enough room above the link */
.grdo-ecosystem__item p {
    margin-bottom: 45px;
}