/*
 * GIXTOH Consolidated — AUTUM Clients
 * Dedicated clients and trajectory page
 */

:root {
    --gix-blue: #002060;
    --gix-blue-deep: #00163f;
    --gix-blue-night: #06142c;
    --gix-green: #3f8b2c;
    --gix-black: #080b11;
    --gix-ink: #171b22;
    --gix-gray: #59616d;
    --gix-line: #cbd0d8;
    --gix-surface: #f2f4f6;
    --gix-white: #ffffff;
    --gix-shell: 1240px;
    --gix-header-height: 100px;
    --gix-font: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--gix-header-height);
}

body.gix-clients-page {
    margin: 0;
    min-width: 320px;
    color: var(--gix-black);
    background: var(--gix-white);
    font-family: var(--gix-font);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.gix-menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

::selection {
    color: var(--gix-white);
    background: var(--gix-blue);
}

.gix-shell {
    width: min(calc(100% - 64px), var(--gix-shell));
    margin-inline: auto;
}

.gix-skip-link {
    position: fixed;
    top: -80px;
    left: 24px;
    z-index: 3000;
    padding: 12px 18px;
    color: var(--gix-white);
    background: var(--gix-blue);
    font-weight: 700;
    transition: top 160ms ease;
}

.gix-skip-link:focus {
    top: 16px;
}

.gix-kicker {
    margin: 0 0 16px;
    color: var(--gix-blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.gix-kicker--light {
    color: var(--gix-white);
}

/* Header */

.gix-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    height: var(--gix-header-height);
    color: var(--gix-black);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e6e8ec;
    box-shadow: 0 8px 24px rgba(0, 25, 72, 0.06);
    backdrop-filter: blur(12px);
}

.gix-header__inner {
    width: min(calc(100% - 64px), 1780px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 72px);
}

.gix-header__brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.gix-header__brand img {
    width: clamp(190px, 14vw, 250px);
    height: auto;
    object-fit: contain;
}

.gix-header__nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
}

.gix-header__nav a {
    position: relative;
    padding: 12px 0;
    font-size: 0.93rem;
    font-weight: 600;
    white-space: nowrap;
}

.gix-header__nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.gix-header__nav a:hover::after,
.gix-header__nav a:focus-visible::after,
.gix-header__nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.gix-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gix-header__socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gix-header__socials a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
}

.gix-header__socials img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.gix-search-trigger {
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--gix-blue);
    place-items: center;
    border: 1px solid #d8deeb;
    border-radius: 50%;
}

.gix-search-trigger span {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.gix-search-trigger span::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -5px;
    width: 9px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
}

.gix-menu-trigger {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
}

.gix-menu-trigger span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 7px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.gix-menu-trigger[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.gix-menu-trigger[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.gix-mobile-nav {
    position: fixed;
    inset: var(--gix-header-height) 0 0;
    z-index: 1190;
    padding: 42px 32px;
    color: var(--gix-black);
    background: var(--gix-white);
    overflow-y: auto;
}

.gix-mobile-nav a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--gix-line);
    font-size: clamp(1.55rem, 6vw, 2.2rem);
    font-weight: 600;
}

.gix-mobile-nav a[aria-current="page"] {
    color: var(--gix-blue);
}

.gix-search-panel {
    position: relative;
    z-index: 1000;
    padding: calc(var(--gix-header-height) + 52px) 32px 52px;
    color: var(--gix-white);
    background: var(--gix-blue-deep);
}

.gix-search-panel form {
    width: min(100%, 860px);
    margin-inline: auto;
}

.gix-search-panel label {
    display: block;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
}

.gix-search-panel form div {
    display: grid;
    grid-template-columns: 1fr auto;
}

.gix-search-panel input,
.gix-search-panel button {
    min-height: 58px;
    border: 0;
}

.gix-search-panel input {
    min-width: 0;
    padding: 0 18px;
}

.gix-search-panel button {
    padding: 0 28px;
    color: var(--gix-white);
    background: var(--gix-green);
    font-weight: 600;
}

/* Hero */

.gxc-hero {
    padding: calc(var(--gix-header-height) + clamp(80px, 8vw, 126px)) 0 0;
    background: var(--gix-white);
}

.gxc-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.62fr);
    gap: clamp(72px, 10vw, 154px);
    align-items: start;
}

.gxc-hero h1 {
    max-width: 870px;
    margin: 0;
    color: var(--gix-black);
    font-size: clamp(3.1rem, 5vw, 5.65rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.02;
    text-wrap: balance;
}

.gxc-hero__copy {
    padding-top: 28px;
    color: var(--gix-black);
    border-top: 1px solid var(--gix-black);
}

.gxc-hero__copy p {
    margin: 0;
    line-height: 1.8;
}

.gxc-hero__copy p + p {
    margin-top: 25px;
}

.gxc-hero__copy .gxc-hero__lead {
    font-size: clamp(1.2rem, 1.55vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
}

.gxc-hero__record {
    margin-top: clamp(72px, 8vw, 116px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--gix-black);
    border-bottom: 1px solid var(--gix-line);
}

.gxc-hero__record div {
    min-height: 156px;
    padding: 30px 28px 28px 0;
    border-right: 1px solid var(--gix-line);
}

.gxc-hero__record div + div {
    padding-left: 28px;
}

.gxc-hero__record div:last-child {
    border-right: 0;
}

.gxc-hero__record strong {
    display: block;
    color: var(--gix-black);
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.gxc-hero__record span {
    display: block;
    margin-top: 36px;
    color: #464d58;
    font-size: 0.86rem;
    font-weight: 500;
}

/* Organizations */

.gxc-organizations {
    padding: clamp(92px, 9vw, 150px) 0 clamp(82px, 8vw, 132px);
    background: var(--gix-surface);
}

.gxc-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.44fr);
    gap: clamp(70px, 9vw, 140px);
    align-items: end;
}

.gxc-section-head h2 {
    max-width: 850px;
    margin: 0;
    color: var(--gix-black);
    font-size: clamp(2.55rem, 4vw, 4.65rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-wrap: balance;
}

.gxc-section-head > p {
    margin: 0;
    padding-top: 23px;
    color: #3f4651;
    border-top: 1px solid var(--gix-black);
    line-height: 1.8;
}

.gxc-organization-group {
    margin-top: clamp(68px, 7vw, 108px);
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(44px, 6vw, 92px);
    align-items: start;
}

.gxc-organization-group + .gxc-organization-group {
    margin-top: clamp(78px, 8vw, 124px);
    padding-top: clamp(58px, 6vw, 90px);
    border-top: 1px solid var(--gix-black);
}

.gxc-organization-group__label {
    position: sticky;
    top: calc(var(--gix-header-height) + 32px);
}

.gxc-organization-group__label p {
    margin: 0 0 18px;
    color: var(--gix-blue);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.gxc-organization-group__label h3 {
    margin: 0;
    color: var(--gix-black);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gxc-public-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--gix-line);
    border-left: 1px solid var(--gix-line);
}

.gxc-logo {
    margin: 0;
    overflow: hidden;
}

.gxc-logo--public {
    min-height: 310px;
    padding: 48px 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gix-white);
    border-right: 1px solid var(--gix-line);
    border-bottom: 1px solid var(--gix-line);
}

.gxc-logo--public img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.gxc-logo--public figcaption {
    padding-top: 25px;
    color: #3e4550;
    border-top: 1px solid #e0e3e8;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
}

.gxc-private-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--gix-line);
    border-left: 1px solid var(--gix-line);
}

.gxc-logo--private {
    min-height: 230px;
    display: grid;
    grid-template-rows: 170px auto;
    background: var(--gix-white);
    border-right: 1px solid var(--gix-line);
    border-bottom: 1px solid var(--gix-line);
}

.gxc-logo__image {
    padding: 34px 28px;
    display: grid;
    place-items: center;
}

.gxc-logo__image img {
    width: 100%;
    height: 96px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.78;
    transition: filter 180ms ease, opacity 180ms ease;
}

.gxc-logo--dark .gxc-logo__image {
    background: var(--gix-blue-deep);
}

.gxc-logo--dark .gxc-logo__image img {
    filter: none;
    opacity: 1;
}

.gxc-logo--private:hover .gxc-logo__image img {
    filter: grayscale(0);
    opacity: 1;
}

.gxc-logo--private figcaption {
    padding: 18px 22px;
    color: #3e4550;
    border-top: 1px solid #e0e3e8;
    font-size: 0.79rem;
    font-weight: 500;
    line-height: 1.35;
}

.gxc-legal-note {
    max-width: 1040px;
    margin: clamp(46px, 5vw, 72px) 0 0 auto;
    padding-top: 22px;
    color: #5b6370;
    border-top: 1px solid var(--gix-line);
    font-size: 0.78rem;
    line-height: 1.75;
}

/* Participation */

.gxc-participation {
    padding: clamp(92px, 9vw, 150px) 0;
    color: var(--gix-white);
    background: var(--gix-blue-night);
}

.gxc-participation__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: clamp(66px, 8vw, 124px);
    align-items: end;
}

.gxc-participation__head .gix-kicker {
    grid-column: 1 / -1;
    margin-bottom: -42px;
}

.gxc-participation__head h2 {
    max-width: 850px;
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(2.7rem, 4.5vw, 5.1rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.04;
    text-wrap: balance;
}

.gxc-participation__head > p {
    margin: 0;
    padding-top: 23px;
    color: rgba(255, 255, 255, 0.78);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.gxc-participation__grid {
    margin-top: clamp(64px, 7vw, 100px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.gxc-participation__grid article {
    min-height: 300px;
    padding: 30px 28px 36px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.gxc-participation__grid article + article {
    padding-left: 28px;
}

.gxc-participation__grid article:last-child {
    border-right: 0;
}

.gxc-participation__grid span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.gxc-participation__grid h3 {
    margin: 70px 0 0;
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.gxc-participation__grid p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Sectors */

.gxc-sectors {
    padding: clamp(82px, 8vw, 128px) 0;
    background: var(--gix-white);
}

.gxc-sectors__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
    gap: clamp(74px, 9vw, 144px);
    align-items: end;
}

.gxc-sectors h2 {
    max-width: 680px;
    margin: 0;
    color: var(--gix-black);
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.06;
    text-wrap: balance;
}

.gxc-sectors__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--gix-black);
}

.gxc-sectors__list span {
    min-height: 74px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gix-line);
    font-weight: 500;
}

.gxc-sectors__list span:nth-child(odd) {
    border-right: 1px solid var(--gix-line);
}

.gxc-sectors__list span:nth-child(even) {
    padding-left: 28px;
}

/* Contact */

.gxc-contact {
    padding: clamp(88px, 8vw, 136px) 0;
    color: var(--gix-white);
    background: var(--gix-blue);
}

.gxc-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.46fr);
    gap: clamp(72px, 10vw, 160px);
    align-items: end;
}

.gxc-contact h2 {
    max-width: 850px;
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(2.8rem, 4.8vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

.gxc-contact__grid > div:last-child {
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.64);
}

.gxc-contact__grid > div:last-child p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

.gxc-contact__grid a {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-weight: 600;
}

.gxc-contact__grid a span {
    transition: transform 160ms ease;
}

.gxc-contact__grid a:hover span,
.gxc-contact__grid a:focus-visible span {
    transform: translateX(5px);
}

/* Footer */

.gix-footer {
    color: var(--gix-black);
    background: var(--gix-white);
    border-top: 1px solid var(--gix-line);
}

.gix-footer__main {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.65fr));
    gap: clamp(40px, 6vw, 90px);
    padding: 80px 0 70px;
}

.gix-footer__brand img {
    width: min(100%, 300px);
    height: auto;
}

.gix-footer__brand p {
    max-width: 350px;
    margin: 26px 0 0;
    color: #4b525f;
    line-height: 1.75;
}

.gix-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.gix-footer__links h2 {
    margin: 0 0 12px;
    color: var(--gix-blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gix-footer__links a {
    color: #333a45;
    font-size: 0.88rem;
}

.gix-footer__links a:hover,
.gix-footer__links a:focus-visible {
    color: var(--gix-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.gix-footer__bottom {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid var(--gix-line);
    font-size: 0.76rem;
}

.gix-footer__bottom p {
    margin: 0;
}

/* Responsive */

@media (max-width: 1280px) {
    :root {
        --gix-header-height: 90px;
    }

    .gix-header__inner {
        width: min(calc(100% - 40px), 1780px);
        gap: 28px;
    }

    .gix-header__nav {
        gap: 18px;
    }

    .gix-header__nav a {
        font-size: 0.84rem;
    }

    .gix-header__socials {
        gap: 11px;
    }

    .gix-header__socials a {
        width: 26px;
    }

    .gix-search-trigger {
        width: 52px;
        height: 52px;
    }

    .gxc-organization-group {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 46px;
    }

    .gxc-private-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .gix-header__socials {
        display: none;
    }

    .gxc-public-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gxc-participation__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gxc-participation__grid article:nth-child(2) {
        border-right: 0;
    }

    .gxc-participation__grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    }

    .gxc-participation__grid article:nth-child(3) {
        padding-left: 0;
    }

    .gix-footer__main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gix-footer__brand {
        grid-column: 1 / -1;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--gix-line);
    }
}

@media (max-width: 980px) {
    .gix-header__nav {
        display: none;
    }

    .gix-menu-trigger {
        display: block;
    }

    .gix-header__brand img {
        width: 210px;
    }

    .gxc-hero__grid,
    .gxc-section-head,
    .gxc-participation__head,
    .gxc-sectors__grid,
    .gxc-contact__grid {
        grid-template-columns: 1fr;
    }

    .gxc-hero__grid,
    .gxc-section-head,
    .gxc-participation__head,
    .gxc-contact__grid {
        gap: 52px;
    }

    .gxc-hero__copy,
    .gxc-section-head > p,
    .gxc-participation__head > p,
    .gxc-contact__grid > div:last-child {
        max-width: 740px;
    }

    .gxc-organization-group {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gxc-organization-group__label {
        position: static;
        display: grid;
        grid-template-columns: 48px 1fr;
        align-items: start;
    }

    .gxc-organization-group__label p {
        margin: 4px 0 0;
    }

    .gxc-private-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gxc-participation__head .gix-kicker {
        grid-column: auto;
        margin-bottom: 0;
    }

    .gxc-sectors__grid {
        gap: 58px;
    }
}

@media (max-width: 760px) {
    :root {
        --gix-header-height: 78px;
    }

    .gix-shell {
        width: min(calc(100% - 36px), var(--gix-shell));
    }

    .gix-header__inner {
        width: calc(100% - 28px);
        gap: 12px;
    }

    .gix-header__brand img {
        width: 170px;
    }

    .gix-search-trigger,
    .gix-menu-trigger {
        width: 44px;
        height: 44px;
    }

    .gxc-hero h1 {
        font-size: clamp(2.8rem, 12.5vw, 4.4rem);
        letter-spacing: -0.04em;
    }

    .gxc-hero__record {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gxc-hero__record div:nth-child(2) {
        border-right: 0;
    }

    .gxc-hero__record div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--gix-line);
    }

    .gxc-hero__record div:nth-child(3) {
        padding-left: 0;
    }

    .gxc-public-grid,
    .gxc-private-grid {
        grid-template-columns: 1fr;
    }

    .gxc-logo--public {
        min-height: 260px;
    }

    .gxc-logo--private {
        min-height: 210px;
    }

    .gxc-participation__grid {
        grid-template-columns: 1fr;
    }

    .gxc-participation__grid article,
    .gxc-participation__grid article + article,
    .gxc-participation__grid article:nth-child(3) {
        min-height: 0;
        padding: 28px 0 34px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    }

    .gxc-participation__grid article:last-child {
        border-bottom: 0;
    }

    .gxc-participation__grid h3 {
        margin-top: 36px;
    }

    .gxc-sectors__list {
        grid-template-columns: 1fr;
    }

    .gxc-sectors__list span,
    .gxc-sectors__list span:nth-child(odd),
    .gxc-sectors__list span:nth-child(even) {
        min-height: 62px;
        padding: 0;
        border-right: 0;
    }

    .gix-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gix-footer__brand {
        grid-column: 1 / -1;
    }

    .gix-footer__links:last-child {
        grid-column: 1 / -1;
        padding-top: 34px;
        border-top: 1px solid var(--gix-line);
    }

    .gix-footer__bottom {
        padding: 24px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .gix-header__brand img {
        width: 142px;
    }

    .gix-header__actions {
        gap: 5px;
    }

    .gix-search-trigger,
    .gix-menu-trigger {
        width: 40px;
        height: 40px;
    }

    .gix-search-trigger span {
        width: 17px;
        height: 17px;
    }

    .gix-search-panel form div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gxc-hero__record div,
    .gxc-hero__record div + div,
    .gxc-hero__record div:nth-child(3) {
        min-height: 138px;
        padding: 24px 16px 24px 0;
    }

    .gxc-hero__record div:nth-child(even) {
        padding-left: 16px;
    }

    .gxc-hero__record span {
        margin-top: 25px;
    }

    .gxc-section-head h2,
    .gxc-sectors h2 {
        font-size: clamp(2.25rem, 10vw, 3.4rem);
    }

    .gxc-participation__head h2,
    .gxc-contact h2 {
        font-size: clamp(2.5rem, 12vw, 3.9rem);
    }

    .gix-footer__main {
        grid-template-columns: 1fr;
    }

    .gix-footer__brand,
    .gix-footer__links:last-child {
        grid-column: auto;
    }

    .gix-footer__links {
        padding-top: 28px;
        border-top: 1px solid var(--gix-line);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
